Show / Hide Table of Contents

Class CreateClusterEndpointConfigDetails

The properties that define the network configuration for the Cluster endpoint.

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

Properties

IsPublicIpEnabled

Declaration
[JsonProperty(PropertyName = "isPublicIpEnabled")]
public bool? IsPublicIpEnabled { get; set; }
Property Value
Type Description
bool?

Whether the cluster should be assigned a public IP address. Defaults to false. If set to true on a private subnet, the cluster provisioning will fail.

NsgIds

Declaration
[JsonProperty(PropertyName = "nsgIds")]
public List<string> NsgIds { get; set; }
Property Value
Type Description
List<string>

A list of the OCIDs of the network security groups (NSGs) to apply to the cluster endpoint. For more information about NSGs, see {@link NetworkSecurityGroup}.

SubnetId

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

The OCID of the regional subnet in which to place the Cluster endpoint.

In this article
Back to top