Oracle · Schema

PlatformConfig

The platform configuration for the instance. Includes settings for Secure Boot, measured boot, and trusted platform module.

CloudDatabaseEnterpriseInfrastructureSaaSFortune 100

Properties

Name Type Description
type string The type of platform configuration
isSecureBootEnabled boolean Whether Secure Boot is enabled on the instance
isTrustedPlatformModuleEnabled boolean Whether the Trusted Platform Module (TPM) is enabled
isMeasuredBootEnabled boolean Whether the Measured Boot feature is enabled
isMemoryEncryptionEnabled boolean Whether AMD memory encryption is enabled
View JSON Schema on GitHub

JSON Schema

oci-compute-platform-config-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "PlatformConfig",
  "type": "object",
  "description": "The platform configuration for the instance. Includes settings for Secure Boot, measured boot, and trusted platform module.",
  "properties": {
    "type": {
      "type": "string",
      "description": "The type of platform configuration"
    },
    "isSecureBootEnabled": {
      "type": "boolean",
      "description": "Whether Secure Boot is enabled on the instance"
    },
    "isTrustedPlatformModuleEnabled": {
      "type": "boolean",
      "description": "Whether the Trusted Platform Module (TPM) is enabled"
    },
    "isMeasuredBootEnabled": {
      "type": "boolean",
      "description": "Whether the Measured Boot feature is enabled"
    },
    "isMemoryEncryptionEnabled": {
      "type": "boolean",
      "description": "Whether AMD memory encryption is enabled"
    }
  }
}