Show / Hide Table of Contents

Class PlacementDetails

Details like building, room and block where the resource was placed after provisioning in the datacenter.

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

Properties

AvailabilityDomain

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

The availability domain (AD) for which the resources were provisioned.

Remarks

Required

Block

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

The block in the datacenter room where the resource was placed.

Remarks

Required

Building

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

The datacenter building where the resource was placed.

Remarks

Required

Region

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

The name of the region for which the resources were provisioned.

Remarks

Required

Room

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

The name of the room in the dataacenter building where the resource was placed.

Remarks

Required

WorkloadType

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

The type of workload to which these resources were provisioned.

Remarks

Required

In this article
Back to top