Show / Hide Table of Contents

Class ClusterEndpoints

The properties that define endpoints for a cluster.

Inheritance
object
ClusterEndpoints
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.ContainerengineService.Models
Assembly: OCI.DotNetSDK.Containerengine.dll
Syntax
public class ClusterEndpoints

Properties

Ipv6Endpoint

Declaration
[JsonProperty(PropertyName = "ipv6Endpoint")]
public string Ipv6Endpoint { get; set; }
Property Value
Type Description
string

The IPv6 networking Kubernetes API server endpoint.

Kubernetes

Declaration
[JsonProperty(PropertyName = "kubernetes")]
public string Kubernetes { get; set; }
Property Value
Type Description
string

The non-native networking Kubernetes API server endpoint.

PrivateEndpoint

Declaration
[JsonProperty(PropertyName = "privateEndpoint")]
public string PrivateEndpoint { get; set; }
Property Value
Type Description
string

The private native networking Kubernetes API server endpoint.

PublicEndpoint

Declaration
[JsonProperty(PropertyName = "publicEndpoint")]
public string PublicEndpoint { get; set; }
Property Value
Type Description
string

The public native networking Kubernetes API server endpoint, if one was requested.

VcnHostnameEndpoint

Declaration
[JsonProperty(PropertyName = "vcnHostnameEndpoint")]
public string VcnHostnameEndpoint { get; set; }
Property Value
Type Description
string

The FQDN assigned to the Kubernetes API private endpoint. Example: 'https://yourVcnHostnameEndpoint'

In this article
Back to top