Skip to content

Commit

Permalink
Updated assets for go models and clients
Browse files Browse the repository at this point in the history
Signed-off-by: Sagar <[email protected]>
  • Loading branch information
sagarpsalvi committed May 7, 2024
1 parent d460a04 commit 6098906
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions go/models/bot_config_client_behavior.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@ package models
// swagger:model BotConfigClientBehavior
type BotConfigClientBehavior struct {

// Minimum percentage of bad requests for the client behavior component to identify as a bot. Field introduced in 30.2.1. Allowed in Enterprise edition with any value, Enterprise with Cloud Services edition.
// Minimum percentage of bad requests for the client behavior component to identify as a bot. Allowed values are 1-100. Field introduced in 30.2.1. Allowed in Enterprise edition with any value, Enterprise with Cloud Services edition.
BadRequestPercent *uint32 `json:"bad_request_percent,omitempty"`

// Whether client behavior based Bot detection is enabled. Field introduced in 30.2.1. Allowed in Enterprise edition with any value, Enterprise with Cloud Services edition.
Enabled *bool `json:"enabled,omitempty"`

// Minimum requests for the client behavior component to make a decision. Field introduced in 30.2.1. Allowed in Enterprise edition with any value, Enterprise with Cloud Services edition.
// Minimum requests for the client behavior component to make a decision. Allowed values are 2-1000. Field introduced in 30.2.1. Allowed in Enterprise edition with any value, Enterprise with Cloud Services edition.
MinimumRequests *uint64 `json:"minimum_requests,omitempty"`

// Minimum requests with a referer for the client behavior component to not identify as a bot. Field introduced in 30.2.1. Allowed in Enterprise edition with any value, Enterprise with Cloud Services edition.
// Minimum requests with a referer header for the client behavior component to not identify as a bot. Setting this to zero means the component never identifies a client as bot based on missing referer headers. Allowed values are 0-100. Field introduced in 30.2.1. Allowed in Enterprise edition with any value, Enterprise with Cloud Services edition.
MinimumRequestsWithReferer *uint64 `json:"minimum_requests_with_referer,omitempty"`
}

0 comments on commit 6098906

Please sign in to comment.