Class GkeCluster
Information specifying a GKE Cluster.
Implements
Inherited Members
Namespace: Google.Apis.CloudDeploy.v1.Data
Assembly: Google.Apis.CloudDeploy.v1.dll
Syntax
public class GkeCluster : IDirectResponseSchema
Properties
Cluster
Optional. Information specifying a GKE Cluster. Format is
projects/{project_id}/locations/{location_id}/clusters/{cluster_id}.
Declaration
[JsonProperty("cluster")]
public virtual string Cluster { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
DnsEndpoint
Optional. If set, the cluster will be accessed using the DNS endpoint. Note that both dns_endpoint and
internal_ip cannot be set to true.
Declaration
[JsonProperty("dnsEndpoint")]
public virtual bool? DnsEndpoint { get; set; }
Property Value
| Type | Description |
|---|---|
| bool? |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
InternalIp
Optional. If true, cluster is accessed using the private IP address of the control plane endpoint.
Otherwise, the default IP address of the control plane endpoint is used. The default IP address is the
private IP address for clusters with private control-plane endpoints and the public IP address otherwise.
Only specify this option when cluster is a private GKE
cluster. Note that
internal_ip and dns_endpoint cannot both be set to true.
Declaration
[JsonProperty("internalIp")]
public virtual bool? InternalIp { get; set; }
Property Value
| Type | Description |
|---|---|
| bool? |
ProxyUrl
Optional. If set, used to configure a proxy to the Kubernetes server.
Declaration
[JsonProperty("proxyUrl")]
public virtual string ProxyUrl { get; set; }
Property Value
| Type | Description |
|---|---|
| string |