Show / Hide Table of Contents

Class NodePoolPlacementConfigDetails

The location where a node pool will place nodes.

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

Properties

AvailabilityDomain

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

The availability domain in which to place nodes. Example: Uocm:PHX-AD-1

Remarks

Required

CapacityReservationId

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

The OCID of the compute capacity reservation in which to place the compute instance.

FaultDomains

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

A list of fault domains in which to place nodes.

PreemptibleNodeConfig

Declaration
[JsonProperty(PropertyName = "preemptibleNodeConfig")]
public PreemptibleNodeConfigDetails PreemptibleNodeConfig { get; set; }
Property Value
Type Description
PreemptibleNodeConfigDetails

SubnetId

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

The OCID of the subnet in which to place nodes.

Remarks

Required

In this article
Back to top