Show / Hide Table of Contents

Class WafTrafficDatum

A time series of traffic data for the Web Application Firewall configured for a policy.

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

Properties

CompartmentId

Declaration
[JsonProperty(PropertyName = "compartmentId")]
public string CompartmentId { get; set; }
Property Value
Type Description
string

The compartment OCID of the data.

TenancyId

Declaration
[JsonProperty(PropertyName = "tenancyId")]
public string TenancyId { get; set; }
Property Value
Type Description
string

The tenancy OCID of the data.

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 the 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.

TrafficInBytes

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

Traffic in bytes.

WaasPolicyId

Declaration
[JsonProperty(PropertyName = "waasPolicyId")]
public string WaasPolicyId { get; set; }
Property Value
Type Description
string

The policy OCID of the data.

In this article
Back to top