Show / Hide Table of Contents

Class WafBlockedRequest

Inheritance
object
WafBlockedRequest
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.WaasService.Models
Assembly: OCI.DotNetSDK.Waas.dll
Syntax
public class WafBlockedRequest

Properties

Count

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

The count of blocked requests.

TimeObserved

Declaration
[JsonProperty(PropertyName = "timeObserved")]
public DateTime? TimeObserved { get; set; }
Property Value
Type Description
DateTime?

The date and time the blocked requests were observed, expressed in RFC 3339 timestamp format.

TimeRangeInSeconds

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

The number of seconds the data covers.

WafFeature

Declaration
[JsonProperty(PropertyName = "wafFeature")]
[JsonConverter(typeof(ResponseEnumConverter))]
public WafBlockedRequest.WafFeatureEnum? WafFeature { get; set; }
Property Value
Type Description
WafBlockedRequest.WafFeatureEnum?

The specific Web Application Firewall feature that blocked the requests, such as JavaScript Challenge or Access Control.

In this article
Back to top