Solaris Zones · Schema

Result

Operation result from a zone management command

ContainersKernel ZonesOperating SystemsOracleRADResource ManagementSolarisStatsStoreVirtualizationZones

Properties

Name Type Description
code string Error code if the operation failed
message string Human-readable error or status message
stdout string Standard output from the zone administration command
stderr string Standard error output from the zone administration command
View JSON Schema on GitHub

JSON Schema

solaris-zones-result-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Result",
  "title": "Result",
  "type": "object",
  "description": "Operation result from a zone management command",
  "properties": {
    "code": {
      "type": "string",
      "description": "Error code if the operation failed",
      "enum": [
        "ZEC_NONE",
        "ZEC_FRAMEWORK_ERROR",
        "ZEC_SNAPSHOT_ERROR",
        "ZEC_COMMAND_ERROR",
        "ZEC_RESOURCE_ALREADY_EXISTS",
        "ZEC_RESOURCE_NOT_FOUND",
        "ZEC_RESOURCE_TOO_MANY",
        "ZEC_RESOURCE_UNKNOWN",
        "ZEC_ALREADY_EDITING",
        "ZEC_INCOMPLETE_NO_CONFIG",
        "ZEC_PROPERTY_UNKNOWN",
        "ZEC_NOT_EDITING",
        "ZEC_SYSTEM_ERROR",
        "ZEC_INVALID_ARGUMENT",
        "ZEC_INVALID_ZONE_STATE"
      ],
      "example": "ZEC_NONE"
    },
    "message": {
      "type": "string",
      "description": "Human-readable error or status message",
      "example": "example_value"
    },
    "stdout": {
      "type": "string",
      "description": "Standard output from the zone administration command",
      "example": "example_value"
    },
    "stderr": {
      "type": "string",
      "description": "Standard error output from the zone administration command",
      "example": "example_value"
    }
  }
}