Show / Hide Table of Contents

Class CreateClusterPlacementGroupDetails

Detailed information about the new cluster placement group.

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

Properties

AvailabilityDomain

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

The availability domain where you want to create the cluster placement group.

Remarks

Required

Capabilities

Declaration
[JsonProperty(PropertyName = "capabilities")]
public CapabilitiesCollection Capabilities { get; set; }
Property Value
Type Description
CapabilitiesCollection

ClusterPlacementGroupType

Declaration
[Required(ErrorMessage = "ClusterPlacementGroupType is required.")]
[JsonProperty(PropertyName = "clusterPlacementGroupType")]
[JsonConverter(typeof(StringEnumConverter))]
public ClusterPlacementGroupType? ClusterPlacementGroupType { get; set; }
Property Value
Type Description
ClusterPlacementGroupType?

ClusterPlacementGroup Identifier.

Remarks

Required

CompartmentId

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

The OCID of the compartment where you want to create the cluster placement group.

Remarks

Required

DefinedTags

Declaration
[JsonProperty(PropertyName = "definedTags")]
public Dictionary<string, Dictionary<string, object>> DefinedTags { get; set; }
Property Value
Type Description
Dictionary<string, Dictionary<string, object>>

Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace": {"bar-key": "value"}}

Description

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

A description of the cluster placement group.

Remarks

Required

FreeformTags

Declaration
[JsonProperty(PropertyName = "freeformTags")]
public Dictionary<string, string> FreeformTags { get; set; }
Property Value
Type Description
Dictionary<string, string>

Simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}

Name

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

The friendly name of the cluster placement group.

Remarks

Required

PlacementInstruction

Declaration
[JsonProperty(PropertyName = "placementInstruction")]
public PlacementInstructionDetails PlacementInstruction { get; set; }
Property Value
Type Description
PlacementInstructionDetails
In this article
Back to top