Show / Hide Table of Contents

Class RequestRateLimitingConfiguration

Rate limiting configuration.

Inheritance
object
RequestRateLimitingConfiguration
Inherited Members
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 RequestRateLimitingConfiguration

Properties

ActionDurationInSeconds

Declaration
[JsonProperty(PropertyName = "actionDurationInSeconds")]
public int? ActionDurationInSeconds { get; set; }
Property Value
Type Description
int?

Duration of block action application in seconds when requestsLimit is reached. Optional and can be 0 (no block duration).

PeriodInSeconds

Declaration
[Required(ErrorMessage = "PeriodInSeconds is required.")]
[JsonProperty(PropertyName = "periodInSeconds")]
public int? PeriodInSeconds { get; set; }
Property Value
Type Description
int?

Evaluation period in seconds.

Remarks

Required

RequestsLimit

Declaration
[Required(ErrorMessage = "RequestsLimit is required.")]
[JsonProperty(PropertyName = "requestsLimit")]
public int? RequestsLimit { get; set; }
Property Value
Type Description
int?

Requests allowed per evaluation period.

Remarks

Required

In this article
Back to top