Class GkePlatformDetails (4.4.0)

public sealed class GkePlatformDetails

Google Container (Kubernetes) Engine details.

Inheritance

object > GkePlatformDetails

Namespace

Google.Api.Gax

Assembly

Google.Api.Gax.dll

Constructors

GkePlatformDetails(string, string, string, string, string, string, string, string, string, string, string)

public GkePlatformDetails(string metadataJson, string projectId, string clusterName, string location, string hostName, string instanceId, string zone, string namespaceId, string podId, string containerName, string clusterLocation)

Construct details of Google Container (Kubernetes) Engine

Parameters
NameDescription
metadataJsonstring

The full JSON string retrieved from the metadata server. Must not be null.

projectIdstring

The project ID. Must not be null.

clusterNamestring

The cluster name. Must not be null.

locationstring

The location. Must not be null.

hostNamestring

The instance host name. Must not be null.

instanceIdstring

The GCE instance ID. Must not be null.

zonestring

The zone. Must not be null.

namespaceIdstring

The kubernetes namespace ID. Must not be null.

podIdstring

The kubernetes pod ID. Must not be null.

containerNamestring

The container name. Must not be null.

clusterLocationstring

The location of the cluster. Must not be null.

Properties

ClusterLocation

public string ClusterLocation { get; }

The location of the cluster. May be different from node / pod location.

Property Value
TypeDescription
string

ClusterName

public string ClusterName { get; }

The cluster name, which is visible in the Google Cloud Platform Console.

Property Value
TypeDescription
string

ContainerName

public string ContainerName { get; }

The name of the container.

Property Value
TypeDescription
string

HostName

public string HostName { get; }

The hostname of this instance.

Property Value
TypeDescription
string

InstanceId

public string InstanceId { get; }

The GCE instance this container is running in.

Property Value
TypeDescription
string

Location

public string Location { get; }

The cluster location, which is visible in the Google Cloud Platform Console. This is equivalent to the value of the

<zone-name>
part in Zone

Property Value
TypeDescription
string

MetadataJson

public string MetadataJson { get; }

The full JSON string retrieved from the metadata server.

Property Value
TypeDescription
string

NamespaceId

public string NamespaceId { get; }

The cluster namespace the container is running in.

Property Value
TypeDescription
string

PodId

public string PodId { get; }

The pos the container is running in.

Property Value
TypeDescription
string

ProjectId

public string ProjectId { get; }

The Project ID associated with your application, which is visible in the Google Cloud Platform Console.

Property Value
TypeDescription
string

Zone

public string Zone { get; }

The GCE zone in which the instance is running. This is in the format

projects/<project-number>/zones/<zone-name>
.

Property Value
TypeDescription
string

Methods

ToString()

public override string ToString()
Returns
TypeDescription
string
Overrides

TryLoad(string, KubernetesData)

public static GkePlatformDetails TryLoad(string metadataJson, GkePlatformDetails.KubernetesData kubernetesData)

Builds a GkePlatformDetails from the given metadata and kubernetes data. The metadata is normally retrieved from the GCE metadata server. The kubernetes data is normally retrieved using the kubernetes API. This method attempts to return as much information as it is present on metadataJson and kubernetesData but will return Empty for GkePlatformDetails properties whose corresponding information is corrupt or missing in metadataJson or kubernetesData.

Parameters
NameDescription
metadataJsonstring

JSON metadata, normally retrieved from the GCE metadata server. Must not be null.

kubernetesDataGkePlatformDetailsKubernetesData

Kubernetes data, normally retrieved using the kubernetes API. Must not be null.

Returns
TypeDescription
GkePlatformDetails

A populated GkePlatformDetails if the metadata represents and GKE instance; null otherwise.