Show / Hide Table of Contents

Class Placement

Describes the placement of an instance.

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

Properties

Affinity

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

The affinity setting for the instance on the Dedicated Host.

AvailabilityZone

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

The Availability Zone of the instance.

GroupName

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

The name of the placement group the instance is in.

HostKey

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

The ID of the Dedicated Host on which the instance resides.

HostResourceGroupArn

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

The ARN of the host resource group in which to launch the instances.

PartitionNumber

Declaration
[JsonProperty(PropertyName = "partitionNumber")]
public int? PartitionNumber { get; set; }
Property Value
Type Description
int?

The number of the partition that the instance is in.

SpreadDomain

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

Reserved for future use.

Tenancy

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

The tenancy of the instance (if the instance is running in a VPC).

In this article
Back to top