Show / Hide Table of Contents

Class InstanceConfigurationLaunchInstancePlatformConfig

The platform configuration requested for the instance.
If you provide the parameter, the instance is created with the platform configuration that you specify. For any values that you omit, the instance uses the default configuration values for the shape that you specify. If you don't provide the parameter, the default values for the shape are used.
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
InstanceConfigurationLaunchInstancePlatformConfig
InstanceConfigurationAmdMilanBmGpuLaunchInstancePlatformConfig
InstanceConfigurationAmdMilanBmLaunchInstancePlatformConfig
InstanceConfigurationAmdRomeBmGpuLaunchInstancePlatformConfig
InstanceConfigurationAmdRomeBmLaunchInstancePlatformConfig
InstanceConfigurationAmdVmLaunchInstancePlatformConfig
InstanceConfigurationGenericBmLaunchInstancePlatformConfig
InstanceConfigurationIntelIcelakeBmLaunchInstancePlatformConfig
InstanceConfigurationIntelSkylakeBmLaunchInstancePlatformConfig
InstanceConfigurationIntelVmLaunchInstancePlatformConfig
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
[JsonConverter(typeof(InstanceConfigurationLaunchInstancePlatformConfigModelConverter))]
public class InstanceConfigurationLaunchInstancePlatformConfig

Properties

IsMeasuredBootEnabled

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

Whether the Measured Boot feature is enabled on the instance.

IsMemoryEncryptionEnabled

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

Whether the instance is a confidential instance. If this value is true, the instance is a confidential instance. The default value is false.

IsSecureBootEnabled

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

Whether Secure Boot is enabled on the instance.

IsTrustedPlatformModuleEnabled

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

Whether the Trusted Platform Module (TPM) is enabled on the instance.

In this article
Back to top