Show / Hide Table of Contents

Class CreateClusterKubeconfigContentDetails

The properties that define a request to create a cluster kubeconfig.

Inheritance
object
CreateClusterKubeconfigContentDetails
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 CreateClusterKubeconfigContentDetails

Properties

Endpoint

Declaration
[JsonProperty(PropertyName = "endpoint")]
[JsonConverter(typeof(StringEnumConverter))]
public CreateClusterKubeconfigContentDetails.EndpointEnum? Endpoint { get; set; }
Property Value
Type Description
CreateClusterKubeconfigContentDetails.EndpointEnum?

The endpoint to target. A cluster may have multiple endpoints exposed but the kubeconfig can only target one at a time.

Expiration

Declaration
[JsonProperty(PropertyName = "expiration")]
public int? Expiration { get; set; }
Property Value
Type Description
int?

Deprecated. This field is no longer used.

TokenVersion

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

The version of the kubeconfig token. Supported value 2.0.0

In this article
Back to top