Solaris Zones · Schema

KernelZoneResource

ContainersKernel ZonesOperating SystemsOracleRADResource ManagementSolarisStatsStoreVirtualizationZones

Properties

Name Type Description
type string Resource type. Kernel zone specific types include dedicated-cpu and capped-memory for virtual hardware allocation.
properties array Resource property values
parent string Parent resource reference
View JSON Schema on GitHub

JSON Schema

solaris-zones-kernelzoneresource-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/KernelZoneResource",
  "title": "KernelZoneResource",
  "type": "object",
  "required": [
    "type"
  ],
  "properties": {
    "type": {
      "type": "string",
      "description": "Resource type. Kernel zone specific types include dedicated-cpu and capped-memory for virtual hardware allocation.",
      "enum": [
        "dedicated-cpu",
        "capped-memory",
        "capped-cpu",
        "anet",
        "device",
        "fs",
        "suspend",
        "security-flags",
        "attr"
      ],
      "example": "dedicated-cpu"
    },
    "properties": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Property"
      },
      "description": "Resource property values",
      "example": []
    },
    "parent": {
      "type": "string",
      "description": "Parent resource reference",
      "example": "example_value"
    }
  }
}