Show / Hide Table of Contents

Class WafMeterDatum

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

Properties

CompartmentId

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

The compartment OCID of the data.

IsBotEnabled

Declaration
[JsonProperty(PropertyName = "isBotEnabled")]
public bool? IsBotEnabled { get; set; }
Property Value
Type Description
bool?

True if bot manager is enabled.

IsOciOrigin

Declaration
[JsonProperty(PropertyName = "isOciOrigin")]
public bool? IsOciOrigin { get; set; }
Property Value
Type Description
bool?

True if origin (endpoint) is an OCI resource. False if external.

RequestCount

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

The number of incoming requests.

TagSlug

Declaration
[JsonProperty(PropertyName = "tagSlug")]
public byte[] TagSlug { get; set; }
Property Value
Type Description
byte[]

The tag slug for the specified waasPolicyId.

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

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