Class: OCI::Waas::Models::HumanInteractionChallenge
- Inherits:
-
Object
- Object
- OCI::Waas::Models::HumanInteractionChallenge
- Defined in:
- lib/oci/waas/models/human_interaction_challenge.rb
Overview
The human interaction challenge settings. The human interaction challenge checks various event listeners in the user’s browser to determine if there is a human user making a request.
Constant Summary collapse
- ACTION_ENUM =
rubocop:disable Metrics/LineLength
[ ACTION_DETECT = 'DETECT'.freeze, ACTION_BLOCK = 'BLOCK'.freeze, ACTION_UNKNOWN_ENUM_VALUE = 'UNKNOWN_ENUM_VALUE'.freeze ].freeze
Instance Attribute Summary collapse
-
#action ⇒ String
The action to take against requests from detected bots.
-
#action_expiration_in_seconds ⇒ Integer
The number of seconds between challenges for the same IP address.
- #challenge_settings ⇒ OCI::Waas::Models::BlockChallengeSettings
-
#failure_threshold ⇒ Integer
The number of failed requests before taking action.
-
#failure_threshold_expiration_in_seconds ⇒ Integer
The number of seconds before the failure threshold resets.
-
#interaction_threshold ⇒ Integer
The number of interactions required to pass the challenge.
-
#is_enabled ⇒ BOOLEAN
[Required] Enables or disables the human interaction challenge Web Application Firewall feature.
-
#recording_period_in_seconds ⇒ Integer
The number of seconds to record the interactions from the user.
-
#set_http_header ⇒ OCI::Waas::Models::Header
Adds an additional HTTP header to requests that fail the challenge before being passed to the origin.
Class Method Summary collapse
-
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
-
.swagger_types ⇒ Object
Attribute type mapping.
Instance Method Summary collapse
-
#==(other) ⇒ Object
Checks equality by comparing each attribute.
-
#build_from_hash(attributes) ⇒ Object
Builds the object from hash.
- #eql?(other) ⇒ Boolean
-
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
-
#initialize(attributes = {}) ⇒ HumanInteractionChallenge
constructor
Initializes the object.
-
#to_hash ⇒ Hash
Returns the object in the form of hash.
-
#to_s ⇒ String
Returns the string representation of the object.
Constructor Details
#initialize(attributes = {}) ⇒ HumanInteractionChallenge
Initializes the object
100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 |
# File 'lib/oci/waas/models/human_interaction_challenge.rb', line 100 def initialize(attributes = {}) return unless attributes.is_a?(Hash) # convert string to symbol for hash key attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v } self.is_enabled = attributes[:'isEnabled'] unless attributes[:'isEnabled'].nil? raise 'You cannot provide both :isEnabled and :is_enabled' if attributes.key?(:'isEnabled') && attributes.key?(:'is_enabled') self.is_enabled = attributes[:'is_enabled'] unless attributes[:'is_enabled'].nil? self.action = attributes[:'action'] if attributes[:'action'] self.failure_threshold = attributes[:'failureThreshold'] if attributes[:'failureThreshold'] raise 'You cannot provide both :failureThreshold and :failure_threshold' if attributes.key?(:'failureThreshold') && attributes.key?(:'failure_threshold') self.failure_threshold = attributes[:'failure_threshold'] if attributes[:'failure_threshold'] self.action_expiration_in_seconds = attributes[:'actionExpirationInSeconds'] if attributes[:'actionExpirationInSeconds'] raise 'You cannot provide both :actionExpirationInSeconds and :action_expiration_in_seconds' if attributes.key?(:'actionExpirationInSeconds') && attributes.key?(:'action_expiration_in_seconds') self.action_expiration_in_seconds = attributes[:'action_expiration_in_seconds'] if attributes[:'action_expiration_in_seconds'] self.failure_threshold_expiration_in_seconds = attributes[:'failureThresholdExpirationInSeconds'] if attributes[:'failureThresholdExpirationInSeconds'] raise 'You cannot provide both :failureThresholdExpirationInSeconds and :failure_threshold_expiration_in_seconds' if attributes.key?(:'failureThresholdExpirationInSeconds') && attributes.key?(:'failure_threshold_expiration_in_seconds') self.failure_threshold_expiration_in_seconds = attributes[:'failure_threshold_expiration_in_seconds'] if attributes[:'failure_threshold_expiration_in_seconds'] self.interaction_threshold = attributes[:'interactionThreshold'] if attributes[:'interactionThreshold'] raise 'You cannot provide both :interactionThreshold and :interaction_threshold' if attributes.key?(:'interactionThreshold') && attributes.key?(:'interaction_threshold') self.interaction_threshold = attributes[:'interaction_threshold'] if attributes[:'interaction_threshold'] self.recording_period_in_seconds = attributes[:'recordingPeriodInSeconds'] if attributes[:'recordingPeriodInSeconds'] raise 'You cannot provide both :recordingPeriodInSeconds and :recording_period_in_seconds' if attributes.key?(:'recordingPeriodInSeconds') && attributes.key?(:'recording_period_in_seconds') self.recording_period_in_seconds = attributes[:'recording_period_in_seconds'] if attributes[:'recording_period_in_seconds'] self.set_http_header = attributes[:'setHttpHeader'] if attributes[:'setHttpHeader'] raise 'You cannot provide both :setHttpHeader and :set_http_header' if attributes.key?(:'setHttpHeader') && attributes.key?(:'set_http_header') self.set_http_header = attributes[:'set_http_header'] if attributes[:'set_http_header'] self.challenge_settings = attributes[:'challengeSettings'] if attributes[:'challengeSettings'] raise 'You cannot provide both :challengeSettings and :challenge_settings' if attributes.key?(:'challengeSettings') && attributes.key?(:'challenge_settings') self.challenge_settings = attributes[:'challenge_settings'] if attributes[:'challenge_settings'] end |
Instance Attribute Details
#action ⇒ String
The action to take against requests from detected bots. If unspecified, defaults to ‘DETECT`.
22 23 24 |
# File 'lib/oci/waas/models/human_interaction_challenge.rb', line 22 def action @action end |
#action_expiration_in_seconds ⇒ Integer
The number of seconds between challenges for the same IP address. If unspecified, defaults to ‘60`.
30 31 32 |
# File 'lib/oci/waas/models/human_interaction_challenge.rb', line 30 def action_expiration_in_seconds @action_expiration_in_seconds end |
#challenge_settings ⇒ OCI::Waas::Models::BlockChallengeSettings
49 50 51 |
# File 'lib/oci/waas/models/human_interaction_challenge.rb', line 49 def challenge_settings @challenge_settings end |
#failure_threshold ⇒ Integer
The number of failed requests before taking action. If unspecified, defaults to ‘10`.
26 27 28 |
# File 'lib/oci/waas/models/human_interaction_challenge.rb', line 26 def failure_threshold @failure_threshold end |
#failure_threshold_expiration_in_seconds ⇒ Integer
The number of seconds before the failure threshold resets. If unspecified, defaults to ‘60`.
34 35 36 |
# File 'lib/oci/waas/models/human_interaction_challenge.rb', line 34 def failure_threshold_expiration_in_seconds @failure_threshold_expiration_in_seconds end |
#interaction_threshold ⇒ Integer
The number of interactions required to pass the challenge. If unspecified, defaults to ‘3`.
38 39 40 |
# File 'lib/oci/waas/models/human_interaction_challenge.rb', line 38 def interaction_threshold @interaction_threshold end |
#is_enabled ⇒ BOOLEAN
[Required] Enables or disables the human interaction challenge Web Application Firewall feature.
18 19 20 |
# File 'lib/oci/waas/models/human_interaction_challenge.rb', line 18 def is_enabled @is_enabled end |
#recording_period_in_seconds ⇒ Integer
The number of seconds to record the interactions from the user. If unspecified, defaults to ‘15`.
42 43 44 |
# File 'lib/oci/waas/models/human_interaction_challenge.rb', line 42 def recording_period_in_seconds @recording_period_in_seconds end |
#set_http_header ⇒ OCI::Waas::Models::Header
Adds an additional HTTP header to requests that fail the challenge before being passed to the origin. Only applicable when the ‘action` is set to `DETECT`.
46 47 48 |
# File 'lib/oci/waas/models/human_interaction_challenge.rb', line 46 def set_http_header @set_http_header end |
Class Method Details
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 |
# File 'lib/oci/waas/models/human_interaction_challenge.rb', line 52 def self.attribute_map { # rubocop:disable Style/SymbolLiteral 'is_enabled': :'isEnabled', 'action': :'action', 'failure_threshold': :'failureThreshold', 'action_expiration_in_seconds': :'actionExpirationInSeconds', 'failure_threshold_expiration_in_seconds': :'failureThresholdExpirationInSeconds', 'interaction_threshold': :'interactionThreshold', 'recording_period_in_seconds': :'recordingPeriodInSeconds', 'set_http_header': :'setHttpHeader', 'challenge_settings': :'challengeSettings' # rubocop:enable Style/SymbolLiteral } end |
.swagger_types ⇒ Object
Attribute type mapping.
69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 |
# File 'lib/oci/waas/models/human_interaction_challenge.rb', line 69 def self.swagger_types { # rubocop:disable Style/SymbolLiteral 'is_enabled': :'BOOLEAN', 'action': :'String', 'failure_threshold': :'Integer', 'action_expiration_in_seconds': :'Integer', 'failure_threshold_expiration_in_seconds': :'Integer', 'interaction_threshold': :'Integer', 'recording_period_in_seconds': :'Integer', 'set_http_header': :'OCI::Waas::Models::Header', 'challenge_settings': :'OCI::Waas::Models::BlockChallengeSettings' # rubocop:enable Style/SymbolLiteral } end |
Instance Method Details
#==(other) ⇒ Object
Checks equality by comparing each attribute.
179 180 181 182 183 184 185 186 187 188 189 190 191 192 |
# File 'lib/oci/waas/models/human_interaction_challenge.rb', line 179 def ==(other) return true if equal?(other) self.class == other.class && is_enabled == other.is_enabled && action == other.action && failure_threshold == other.failure_threshold && action_expiration_in_seconds == other.action_expiration_in_seconds && failure_threshold_expiration_in_seconds == other.failure_threshold_expiration_in_seconds && interaction_threshold == other.interaction_threshold && recording_period_in_seconds == other.recording_period_in_seconds && set_http_header == other.set_http_header && challenge_settings == other.challenge_settings end |
#build_from_hash(attributes) ⇒ Object
Builds the object from hash
217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 |
# File 'lib/oci/waas/models/human_interaction_challenge.rb', line 217 def build_from_hash(attributes) return nil unless attributes.is_a?(Hash) self.class.swagger_types.each_pair do |key, type| if type =~ /^Array<(.*)>/i # check to ensure the input is an array given that the the attribute # is documented as an array but the input is not if attributes[self.class.attribute_map[key]].is_a?(Array) public_method("#{key}=").call( attributes[self.class.attribute_map[key]] .map { |v| OCI::Internal::Util.convert_to_type(Regexp.last_match(1), v) } ) end elsif !attributes[self.class.attribute_map[key]].nil? public_method("#{key}=").call( OCI::Internal::Util.convert_to_type(type, attributes[self.class.attribute_map[key]]) ) end # or else data not found in attributes(hash), not an issue as the data can be optional end self end |
#eql?(other) ⇒ Boolean
197 198 199 |
# File 'lib/oci/waas/models/human_interaction_challenge.rb', line 197 def eql?(other) self == other end |
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
206 207 208 |
# File 'lib/oci/waas/models/human_interaction_challenge.rb', line 206 def hash [is_enabled, action, failure_threshold, action_expiration_in_seconds, failure_threshold_expiration_in_seconds, interaction_threshold, recording_period_in_seconds, set_http_header, challenge_settings].hash end |
#to_hash ⇒ Hash
Returns the object in the form of hash
250 251 252 253 254 255 256 257 258 259 |
# File 'lib/oci/waas/models/human_interaction_challenge.rb', line 250 def to_hash hash = {} self.class.attribute_map.each_pair do |attr, param| value = public_method(attr).call next if value.nil? && !instance_variable_defined?("@#{attr}") hash[param] = _to_hash(value) end hash end |
#to_s ⇒ String
Returns the string representation of the object
244 245 246 |
# File 'lib/oci/waas/models/human_interaction_challenge.rb', line 244 def to_s to_hash.to_s end |