Show / Hide Table of Contents

Class UpdateClusterEndpointConfigDetails

The properties that define a request to update a cluster endpoint config.

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

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 update 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}.

In this article
Back to top