Show / Hide Table of Contents

Class WafRequest

A time series of request counts handled by the Web Application Firewall, including blocked requests.

Inheritance
object
WafRequest
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 WafRequest

Properties

Count

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

The total number of requests received in this time period.

TimeObserved

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

The date and time the traffic was observed, rounded down to the start of a range, and 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 this data covers.

In this article
Back to top