Solaris Zones · Schema

ZoneInterface

ContainersKernel ZonesOperating SystemsOracleRADResource ManagementSolarisStatsStoreVirtualizationZones

Properties

Name Type Description
href string URL path to the zone interface
type string Interface type (Zone, ZoneInfo, ZoneManager)
name string Zone name
state string Current zone state
brand string Zone brand
id integer Zone numeric ID
View JSON Schema on GitHub

JSON Schema

solaris-zones-zoneinterface-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ZoneInterface",
  "title": "ZoneInterface",
  "type": "object",
  "properties": {
    "href": {
      "type": "string",
      "description": "URL path to the zone interface",
      "example": "example_value"
    },
    "type": {
      "type": "string",
      "description": "Interface type (Zone, ZoneInfo, ZoneManager)",
      "example": "example_value"
    },
    "name": {
      "type": "string",
      "description": "Zone name",
      "example": "Example Title"
    },
    "state": {
      "type": "string",
      "description": "Current zone state",
      "example": "example_value"
    },
    "brand": {
      "type": "string",
      "description": "Zone brand",
      "example": "example_value"
    },
    "id": {
      "type": "integer",
      "description": "Zone numeric ID",
      "example": "abc123"
    }
  }
}