Show / Hide Table of Contents

Class InterconnectDiagnostics

Diagnostics information about interconnect, contains detailed and current technical information about Google's side of the connection.

Inheritance
System.Object
InterconnectDiagnostics
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 InterconnectDiagnostics : IDirectResponseSchema

Properties

ArpCaches

A list of InterconnectDiagnostics.ARPEntry objects, describing individual neighbors currently seen by the Google router in the ARP cache for the Interconnect. This will be empty when the Interconnect is not bundled.

Declaration
[JsonProperty("arpCaches")]
public virtual IList<InterconnectDiagnosticsARPEntry> ArpCaches { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<InterconnectDiagnosticsARPEntry>

ETag

The ETag of the item.

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

Links

A list of InterconnectDiagnostics.LinkStatus objects, describing the status for each link on the Interconnect.

Declaration
[JsonProperty("links")]
public virtual IList<InterconnectDiagnosticsLinkStatus> Links { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<InterconnectDiagnosticsLinkStatus>

MacAddress

The MAC address of the Interconnect's bundle interface.

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

Implements

IDirectResponseSchema
In This Article
Back to top