ClusterEndpoints¶
- 
class oci.container_engine.models.ClusterEndpoints(**kwargs)¶
- Bases: - object- The properties that define endpoints for a cluster. - Methods - __init__(**kwargs)- Initializes a new ClusterEndpoints object with values from keyword arguments. - Attributes - ipv6_endpoint- Gets the ipv6_endpoint of this ClusterEndpoints. - kubernetes- Gets the kubernetes of this ClusterEndpoints. - private_endpoint- Gets the private_endpoint of this ClusterEndpoints. - public_endpoint- Gets the public_endpoint of this ClusterEndpoints. - vcn_hostname_endpoint- Gets the vcn_hostname_endpoint of this ClusterEndpoints. - 
__init__(**kwargs)¶
- Initializes a new ClusterEndpoints object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class): - Parameters: - kubernetes (str) – The value to assign to the kubernetes property of this ClusterEndpoints.
- public_endpoint (str) – The value to assign to the public_endpoint property of this ClusterEndpoints.
- private_endpoint (str) – The value to assign to the private_endpoint property of this ClusterEndpoints.
- vcn_hostname_endpoint (str) – The value to assign to the vcn_hostname_endpoint property of this ClusterEndpoints.
- ipv6_endpoint (str) – The value to assign to the ipv6_endpoint property of this ClusterEndpoints.
 
 - 
ipv6_endpoint¶
- Gets the ipv6_endpoint of this ClusterEndpoints. The IPv6 networking Kubernetes API server endpoint. - Returns: - The ipv6_endpoint of this ClusterEndpoints. - Return type: - str 
 - 
kubernetes¶
- Gets the kubernetes of this ClusterEndpoints. The non-native networking Kubernetes API server endpoint. - Returns: - The kubernetes of this ClusterEndpoints. - Return type: - str 
 - 
private_endpoint¶
- Gets the private_endpoint of this ClusterEndpoints. The private native networking Kubernetes API server endpoint. - Returns: - The private_endpoint of this ClusterEndpoints. - Return type: - str 
 - 
public_endpoint¶
- Gets the public_endpoint of this ClusterEndpoints. The public native networking Kubernetes API server endpoint, if one was requested. - Returns: - The public_endpoint of this ClusterEndpoints. - Return type: - str 
 - 
vcn_hostname_endpoint¶
- Gets the vcn_hostname_endpoint of this ClusterEndpoints. The FQDN assigned to the Kubernetes API private endpoint. Example: ‘https://yourVcnHostnameEndpoint’ - Returns: - The vcn_hostname_endpoint of this ClusterEndpoints. - Return type: - str 
 
-