Show / Hide Table of Contents

Class PacketIntervals

Next free: 7

Inheritance
System.Object
PacketIntervals
Implements
Google.Apis.Requests.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 PacketIntervals : IDirectResponseSchema

Properties

AvgMs

Average observed inter-packet interval in milliseconds.

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

Duration

From how long ago in the past these intervals were observed.

Declaration
[JsonProperty("duration")]
public virtual string Duration { get; set; }
Property Value
Type Description
System.String

ETag

The ETag of the item.

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

MaxMs

Maximum observed inter-packet interval in milliseconds.

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

MinMs

Minimum observed inter-packet interval in milliseconds.

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

NumIntervals

Number of inter-packet intervals from which these statistics were derived.

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

Type

The type of packets for which inter-packet intervals were computed.

Declaration
[JsonProperty("type")]
public virtual string Type { get; set; }
Property Value
Type Description
System.String

Implements

Google.Apis.Requests.IDirectResponseSchema
In This Article
Back to top