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.CloudmigrationsService.Models
Assembly: OCI.DotNetSDK.Cloudmigrations.dll
Syntax
public class LaunchInstanceShapeConfigDetails

Properties

BaselineOcpuUtilization

Declaration
[JsonProperty(PropertyName = "baselineOcpuUtilization")]
[JsonConverter(typeof(ResponseEnumConverter))]
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 in gigabytes that is available to the instance.

Ocpus

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

The total number of OCPUs available to the instance.

In this article
Back to top