Show / Hide Table of Contents

Class CapacityConfig

Specifies the capacity configs that the Dedicated Virtual Machine Host (DVMH) Shape could support.

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

Properties

CapacityBins

Declaration
[JsonProperty(PropertyName = "capacityBins")]
public List<CapacityBinPreview> CapacityBins { get; set; }
Property Value
Type Description
List<CapacityBinPreview>

A list of total CPU and memory per capacity bucket.

CapacityConfigName

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

The name of each capacity config.

IsDefault

Declaration
[JsonProperty(PropertyName = "isDefault")]
public bool? IsDefault { get; set; }
Property Value
Type Description
bool?

Whether this capacity config is the default config.

SupportedCapabilities

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