Show / Hide Table of Contents

Class CreateCapacityReportShapeAvailabilityDetails

Information about the shapes in a capacity report.

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

Properties

FaultDomain

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

The fault domain for the capacity report.
If you do not specify a fault domain, the capacity report includes information about all fault domains.

InstanceShape

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

The shape that you want to request a capacity report for. You can enumerate all available shapes by calling {@link #listShapes(ListShapesRequest) listShapes}.

Remarks

Required

InstanceShapeConfig

Declaration
[JsonProperty(PropertyName = "instanceShapeConfig")]
public CapacityReportInstanceShapeConfig InstanceShapeConfig { get; set; }
Property Value
Type Description
CapacityReportInstanceShapeConfig
In this article
Back to top