Show / Hide Table of Contents

Class OmkDetail

Details to reference an existing Oracle Managed Kubernetes environment.

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

Properties

ClusterId

Declaration
[Required(ErrorMessage = "ClusterId is required.")]
[JsonProperty(PropertyName = "clusterId")]
public string ClusterId { get; set; }
Property Value
Type Description
string

OCID of cluster assigned to OMK cluster-namespace.

Remarks

Required

ClusterNamespaceId

Declaration
[Required(ErrorMessage = "ClusterNamespaceId is required.")]
[JsonProperty(PropertyName = "clusterNamespaceId")]
public string ClusterNamespaceId { get; set; }
Property Value
Type Description
string

OCID of existing OMK cluster-namespace.

Remarks

Required

InstanceId

Declaration
[Required(ErrorMessage = "InstanceId is required.")]
[JsonProperty(PropertyName = "instanceId")]
public string InstanceId { get; set; }
Property Value
Type Description
string

Unique identifier for an omk instance.

Remarks

Required

NamespaceName

Declaration
[Required(ErrorMessage = "NamespaceName is required.")]
[JsonProperty(PropertyName = "namespaceName")]
public string NamespaceName { get; set; }
Property Value
Type Description
string

Kubernetes namespace-name of OMK cluster-namespace.

Remarks

Required

In this article
Back to top