Class: Google::Apis::ComputeAlpha::SecurityPolicyRuleRateLimitOptions
- Inherits:
-
Object
- Object
- Google::Apis::ComputeAlpha::SecurityPolicyRuleRateLimitOptions
- Defined in:
- generated/google/apis/compute_alpha/classes.rb,
generated/google/apis/compute_alpha/representations.rb,
generated/google/apis/compute_alpha/representations.rb
Instance Attribute Summary collapse
-
#block_duration ⇒ Fixnum
Can only be specifed if the action for the rule is "rate_based_blacklist" If specified, determines the time (in seconds) the traffic will continue to be blocked by the rate limit after the rate falls below the threshold.
-
#conform_action ⇒ String
Action to take when requests are under the given threshold.
-
#enforce_on_key ⇒ String
Determines the key to enforce the threshold_rps limit on.
-
#exceed_action ⇒ String
When a request is denied, returns the HTTP response code specified.
-
#threshold_rps ⇒ Fixnum
Rate in requests per second at which to begin ratelimiting.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SecurityPolicyRuleRateLimitOptions
constructor
A new instance of SecurityPolicyRuleRateLimitOptions.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ SecurityPolicyRuleRateLimitOptions
Returns a new instance of SecurityPolicyRuleRateLimitOptions.
30558 30559 30560 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 30558 def initialize(**args) update!(**args) end |
Instance Attribute Details
#block_duration ⇒ Fixnum
Can only be specifed if the action for the rule is "rate_based_blacklist" If
specified, determines the time (in seconds) the traffic will continue to be
blocked by the rate limit after the rate falls below the threshold. The
default value is 0 seconds.
Corresponds to the JSON property blockDuration
30531 30532 30533 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 30531 def block_duration @block_duration end |
#conform_action ⇒ String
Action to take when requests are under the given threshold. When requests are
throttled, this is also the action for all requests which are not dropped.
Valid options are "allow", "fairshare", and "drop_overload".
Corresponds to the JSON property conformAction
30538 30539 30540 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 30538 def conform_action @conform_action end |
#enforce_on_key ⇒ String
Determines the key to enforce the threshold_rps limit on. If key is "IP", each
IP has this limit enforced separately, whereas "ALL_IPs" means a single limit
is applied to all requests matching this rule.
Corresponds to the JSON property enforceOnKey
30545 30546 30547 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 30545 def enforce_on_key @enforce_on_key end |
#exceed_action ⇒ String
When a request is denied, returns the HTTP response code specified. Valid
options are "deny()" where valid values for status are 403, 404, 429, and 502.
Corresponds to the JSON property exceedAction
30551 30552 30553 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 30551 def exceed_action @exceed_action end |
#threshold_rps ⇒ Fixnum
Rate in requests per second at which to begin ratelimiting.
Corresponds to the JSON property thresholdRps
30556 30557 30558 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 30556 def threshold_rps @threshold_rps end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
30563 30564 30565 30566 30567 30568 30569 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 30563 def update!(**args) @block_duration = args[:block_duration] if args.key?(:block_duration) @conform_action = args[:conform_action] if args.key?(:conform_action) @enforce_on_key = args[:enforce_on_key] if args.key?(:enforce_on_key) @exceed_action = args[:exceed_action] if args.key?(:exceed_action) @threshold_rps = args[:threshold_rps] if args.key?(:threshold_rps) end |