Show / Hide Table of Contents

Class BfdStatusPacketCounts

Inheritance
System.Object
BfdStatusPacketCounts
Implements
IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.Compute.v1.Data
Assembly: Google.Apis.Compute.v1.dll
Syntax
public class BfdStatusPacketCounts : IDirectResponseSchema

Properties

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

NumRx

Number of packets received since the beginning of the current BFD session.

Declaration
[JsonProperty("numRx")]
public virtual long? NumRx { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

NumRxRejected

Number of packets received that were rejected because of errors since the beginning of the current BFD session.

Declaration
[JsonProperty("numRxRejected")]
public virtual long? NumRxRejected { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

NumRxSuccessful

Number of packets received that were successfully processed since the beginning of the current BFD session.

Declaration
[JsonProperty("numRxSuccessful")]
public virtual long? NumRxSuccessful { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

NumTx

Number of packets transmitted since the beginning of the current BFD session.

Declaration
[JsonProperty("numTx")]
public virtual long? NumTx { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

Implements

IDirectResponseSchema
In This Article
Back to top