Show / Hide Table of Contents

Class CreateComputeCapacityReportDetails

The data to create a report of available Compute capacity.

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

Properties

AvailabilityDomain

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

The availability domain for the capacity report.
Example: Uocm:PHX-AD-1

Remarks

Required

CompartmentId

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

The OCID for the compartment. This should always be the root compartment.

Remarks

Required

ShapeAvailabilities

Declaration
[Required(ErrorMessage = "ShapeAvailabilities is required.")]
[JsonProperty(PropertyName = "shapeAvailabilities")]
public List<CreateCapacityReportShapeAvailabilityDetails> ShapeAvailabilities { get; set; }
Property Value
Type Description
List<CreateCapacityReportShapeAvailabilityDetails>

Information about the shapes in the capacity report.

Remarks

Required

In this article
Back to top