Show / Hide Table of Contents

Class ClusterNetworkPlacementConfigurationDetails

The location for where the instance pools in a cluster network will place instances.

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

Properties

AvailabilityDomain

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

The availability domain to place instances.
Example: Uocm:PHX-AD-1

Remarks

Required

PlacementConstraint

Declaration
[JsonProperty(PropertyName = "placementConstraint")]
[JsonConverter(typeof(ResponseEnumConverter))]
public ClusterNetworkPlacementConfigurationDetails.PlacementConstraintEnum? PlacementConstraint { get; set; }
Property Value
Type Description
ClusterNetworkPlacementConfigurationDetails.PlacementConstraintEnum?

The placement constraint when reserving hosts.

PrimarySubnetId

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

The OCID of the primary subnet to place instances. This field is deprecated. Use primaryVnicSubnets instead to set VNIC data for instances in the pool.

PrimaryVnicSubnets

Declaration
[JsonProperty(PropertyName = "primaryVnicSubnets")]
public InstancePoolPlacementPrimarySubnet PrimaryVnicSubnets { get; set; }
Property Value
Type Description
InstancePoolPlacementPrimarySubnet

SecondaryVnicSubnets

Declaration
[JsonProperty(PropertyName = "secondaryVnicSubnets")]
public List<InstancePoolPlacementSecondaryVnicSubnet> SecondaryVnicSubnets { get; set; }
Property Value
Type Description
List<InstancePoolPlacementSecondaryVnicSubnet>

The set of secondary VNIC data for instances in the pool.

In this article
Back to top