InstanceConfigurationLaunchInstanceShapeConfigDetails

class oci.core.models.InstanceConfigurationLaunchInstanceShapeConfigDetails(**kwargs)

Bases: object

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.

Attributes

BASELINE_OCPU_UTILIZATION_BASELINE_1_1 A constant which can be used with the baseline_ocpu_utilization property of a InstanceConfigurationLaunchInstanceShapeConfigDetails.
BASELINE_OCPU_UTILIZATION_BASELINE_1_2 A constant which can be used with the baseline_ocpu_utilization property of a InstanceConfigurationLaunchInstanceShapeConfigDetails.
BASELINE_OCPU_UTILIZATION_BASELINE_1_8 A constant which can be used with the baseline_ocpu_utilization property of a InstanceConfigurationLaunchInstanceShapeConfigDetails.
baseline_ocpu_utilization Gets the baseline_ocpu_utilization of this InstanceConfigurationLaunchInstanceShapeConfigDetails.
memory_in_gbs Gets the memory_in_gbs of this InstanceConfigurationLaunchInstanceShapeConfigDetails.
nvmes Gets the nvmes of this InstanceConfigurationLaunchInstanceShapeConfigDetails.
ocpus Gets the ocpus of this InstanceConfigurationLaunchInstanceShapeConfigDetails.
vcpus Gets the vcpus of this InstanceConfigurationLaunchInstanceShapeConfigDetails.

Methods

__init__(**kwargs) Initializes a new InstanceConfigurationLaunchInstanceShapeConfigDetails object with values from keyword arguments.
BASELINE_OCPU_UTILIZATION_BASELINE_1_1 = 'BASELINE_1_1'

A constant which can be used with the baseline_ocpu_utilization property of a InstanceConfigurationLaunchInstanceShapeConfigDetails. This constant has a value of “BASELINE_1_1”

BASELINE_OCPU_UTILIZATION_BASELINE_1_2 = 'BASELINE_1_2'

A constant which can be used with the baseline_ocpu_utilization property of a InstanceConfigurationLaunchInstanceShapeConfigDetails. This constant has a value of “BASELINE_1_2”

BASELINE_OCPU_UTILIZATION_BASELINE_1_8 = 'BASELINE_1_8'

A constant which can be used with the baseline_ocpu_utilization property of a InstanceConfigurationLaunchInstanceShapeConfigDetails. This constant has a value of “BASELINE_1_8”

__init__(**kwargs)

Initializes a new InstanceConfigurationLaunchInstanceShapeConfigDetails object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):

Parameters:
  • ocpus (float) – The value to assign to the ocpus property of this InstanceConfigurationLaunchInstanceShapeConfigDetails.
  • vcpus (int) – The value to assign to the vcpus property of this InstanceConfigurationLaunchInstanceShapeConfigDetails.
  • memory_in_gbs (float) – The value to assign to the memory_in_gbs property of this InstanceConfigurationLaunchInstanceShapeConfigDetails.
  • baseline_ocpu_utilization (str) – The value to assign to the baseline_ocpu_utilization property of this InstanceConfigurationLaunchInstanceShapeConfigDetails. Allowed values for this property are: “BASELINE_1_8”, “BASELINE_1_2”, “BASELINE_1_1”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
  • nvmes (int) – The value to assign to the nvmes property of this InstanceConfigurationLaunchInstanceShapeConfigDetails.
baseline_ocpu_utilization

Gets the baseline_ocpu_utilization of this InstanceConfigurationLaunchInstanceShapeConfigDetails. 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.

Allowed values for this property are: “BASELINE_1_8”, “BASELINE_1_2”, “BASELINE_1_1”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.

Returns:The baseline_ocpu_utilization of this InstanceConfigurationLaunchInstanceShapeConfigDetails.
Return type:str
memory_in_gbs

Gets the memory_in_gbs of this InstanceConfigurationLaunchInstanceShapeConfigDetails. The total amount of memory available to the instance, in gigabytes.

Returns:The memory_in_gbs of this InstanceConfigurationLaunchInstanceShapeConfigDetails.
Return type:float
nvmes

Gets the nvmes of this InstanceConfigurationLaunchInstanceShapeConfigDetails. The number of NVMe drives to be used for storage. A single drive has 6.8 TB available.

Returns:The nvmes of this InstanceConfigurationLaunchInstanceShapeConfigDetails.
Return type:int
ocpus

Gets the ocpus of this InstanceConfigurationLaunchInstanceShapeConfigDetails. The total number of OCPUs available to the instance.

Returns:The ocpus of this InstanceConfigurationLaunchInstanceShapeConfigDetails.
Return type:float
vcpus

Gets the vcpus of this InstanceConfigurationLaunchInstanceShapeConfigDetails. 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.

Returns:The vcpus of this InstanceConfigurationLaunchInstanceShapeConfigDetails.
Return type:int