Show / Hide Table of Contents

Class RequestRateLimitingRule

Rule that represents RequestRateLimitingConfigurations. Only actions of the following types are allowed to be referenced in this rule:

  • CHECK
  • RETURN_HTTP_RESPONSE
Inheritance
object
WebAppFirewallPolicyRule
RequestRateLimitingRule
Inherited Members
WebAppFirewallPolicyRule.Name
WebAppFirewallPolicyRule.ConditionLanguage
WebAppFirewallPolicyRule.Condition
WebAppFirewallPolicyRule.ActionName
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.WafService.Models
Assembly: OCI.DotNetSDK.Waf.dll
Syntax
public class RequestRateLimitingRule : WebAppFirewallPolicyRule

Properties

Configurations

Declaration
[Required(ErrorMessage = "Configurations is required.")]
[JsonProperty(PropertyName = "configurations")]
public List<RequestRateLimitingConfiguration> Configurations { get; set; }
Property Value
Type Description
List<RequestRateLimitingConfiguration>

Rate Limiting Configurations. Each configuration counts requests towards its own requestsLimit.

Remarks

Required

In this article
Back to top