Show / Hide Table of Contents

Class ClusterPlacementGroup

A cluster placement group, which is a logical grouping of resources that offer low latency within an availability domain by being placed in close physical proximity.

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

Properties

AvailabilityDomain

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

The availability domain of 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(ResponseEnumConverter))]
public ClusterPlacementGroupType? ClusterPlacementGroupType { get; set; }
Property Value
Type Description
ClusterPlacementGroupType?

The type of cluster placement group.

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 that contains the cluster placement group.

Remarks

Required

DefinedTags

Declaration
[Required(ErrorMessage = "DefinedTags is required.")]
[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"}}

Remarks

Required

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
[Required(ErrorMessage = "FreeformTags is required.")]
[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"}

Remarks

Required

Id

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

The OCID of the cluster placement group.

Remarks

Required

LifecycleDetails

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

A message describing the current state in more detail. For example, lifecycle details for a resource in a Failed state might include information to act on.

LifecycleState

Declaration
[Required(ErrorMessage = "LifecycleState is required.")]
[JsonProperty(PropertyName = "lifecycleState")]
[JsonConverter(typeof(ResponseEnumConverter))]
public ClusterPlacementGroup.LifecycleStateEnum? LifecycleState { get; set; }
Property Value
Type Description
ClusterPlacementGroup.LifecycleStateEnum?

The current state of the ClusterPlacementGroup.

Remarks

Required

Name

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

The user-friendly name of the cluster placement group. The display name for a cluster placement must be unique and you cannot change it. Avoid entering confidential information.

Remarks

Required

PlacementInstruction

Declaration
[JsonProperty(PropertyName = "placementInstruction")]
public PlacementInstructionDetails PlacementInstruction { get; set; }
Property Value
Type Description
PlacementInstructionDetails

SystemTags

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

System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud": {"free-tier-retained": "true"}}

TimeCreated

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

The time the cluster placement group was created, expressed in RFC 3339 timestamp format.

Remarks

Required

TimeUpdated

Declaration
[JsonProperty(PropertyName = "timeUpdated")]
public DateTime? TimeUpdated { get; set; }
Property Value
Type Description
DateTime?

The time the cluster placement group was updated, expressed in RFC 3339 timestamp format.

In this article
Back to top