Show / Hide Table of Contents

Class PlatformConfig

The platform configuration for the instance.

Inheritance
object
PlatformConfig
AmdMilanBmGpuPlatformConfig
AmdMilanBmPlatformConfig
AmdRomeBmGpuPlatformConfig
AmdRomeBmPlatformConfig
AmdVmPlatformConfig
GenericBmPlatformConfig
IntelIcelakeBmPlatformConfig
IntelSkylakeBmPlatformConfig
IntelVmPlatformConfig
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(PlatformConfigModelConverter))]
public class PlatformConfig

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