Show / Hide Table of Contents

Class ComputeCapacityReservations

Compute capacity reservation ID mappings by domain. For a multi-AD region, domain1, domain2, and domain3 correspond to AD1, AD2, and AD3 respectively. For a single-AD region, domain1, domain2, and domain3 correspond to FD1, FD2, and FD3 respectively.

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

Properties

Domain1ReservationId

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

Capacity reservation OCID corresponding to AD1 for a multi-AD region or FD1 for a single-AD region.

Domain2ReservationId

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

Capacity reservation OCID corresponding to AD2 for a multi-AD region or FD2 for a single-AD region.

Domain3ReservationId

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

Capacity reservation OCID corresponding to AD3 for a multi-AD region or FD3 for a single-AD region.

In this article
Back to top