Show / Hide Table of Contents

Class LaunchInstanceShapeConfigDetails

The shape configuration requested for the instance.
If the parameter is provided, the instance is created with the resources that you specify. If some properties are missing or the entire parameter is not provided, the instance is created with the default configuration values for the shape that you specify.
Each shape only supports certain configurable values. If the values that you provide are not valid for the specified shape, an error is returned.

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

Properties

BaselineOcpuUtilization

Declaration
[JsonProperty(PropertyName = "baselineOcpuUtilization")]
[JsonConverter(typeof(StringEnumConverter))]
public LaunchInstanceShapeConfigDetails.BaselineOcpuUtilizationEnum? BaselineOcpuUtilization { get; set; }
Property Value
Type Description
LaunchInstanceShapeConfigDetails.BaselineOcpuUtilizationEnum?

The baseline OCPU utilization for a subcore burstable VM instance. Leave this attribute blank for a non-burstable instance, or explicitly specify non-burstable with BASELINE_1_1.
The following values are supported:

  • BASELINE_1_8 - baseline usage is 1/8 of an OCPU.
  • BASELINE_1_2 - baseline usage is 1/2 of an OCPU.
  • BASELINE_1_1 - baseline usage is an entire OCPU. This represents a non-burstable instance.

MemoryInGBs

Declaration
[JsonProperty(PropertyName = "memoryInGBs")]
public float? MemoryInGBs { get; set; }
Property Value
Type Description
float?

The total amount of memory available to the instance, in gigabytes.

Nvmes

Declaration
[JsonProperty(PropertyName = "nvmes")]
public int? Nvmes { get; set; }
Property Value
Type Description
int?

The number of NVMe drives to be used for storage. A single drive has 6.8 TB available.

Ocpus

Declaration
[JsonProperty(PropertyName = "ocpus")]
public float? Ocpus { get; set; }
Property Value
Type Description
float?

The total number of OCPUs available to the instance.

Vcpus

Declaration
[JsonProperty(PropertyName = "vcpus")]
public int? Vcpus { get; set; }
Property Value
Type Description
int?

The total number of VCPUs available to the instance. This can be used instead of OCPUs, in which case the actual number of OCPUs will be calculated based on this value and the actual hardware. This must be a multiple of 2.

In this article
Back to top