Show / Hide Table of Contents

Class CreateBdsCapacityReportDetails

The data to create a report of available BDS capacity.

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

Properties

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