Solaris Zones · Schema
KernelZone
ContainersKernel ZonesOperating SystemsOracleRADResource ManagementSolarisStatsStoreVirtualizationZones
Properties
| Name | Type | Description |
|---|---|---|
| name | string | Kernel zone name |
| brand | string | Zone brand (solaris-kz for kernel zones) |
| id | integer | Numeric zone ID |
| uuid | string | Zone UUID |
| state | string | Current zone state |
| auxstate | array | Auxiliary zone states |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/KernelZone",
"title": "KernelZone",
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Kernel zone name",
"example": "Example Title"
},
"brand": {
"type": "string",
"description": "Zone brand (solaris-kz for kernel zones)",
"enum": [
"solaris-kz"
],
"example": "solaris-kz"
},
"id": {
"type": "integer",
"description": "Numeric zone ID",
"example": "abc123"
},
"uuid": {
"type": "string",
"format": "uuid",
"description": "Zone UUID",
"example": "500123"
},
"state": {
"type": "string",
"enum": [
"configured",
"incomplete",
"installed",
"ready",
"running",
"shutting_down",
"down"
],
"description": "Current zone state",
"example": "configured"
},
"auxstate": {
"type": "array",
"items": {
"type": "string"
},
"description": "Auxiliary zone states",
"example": []
}
}
}