Veritas NetBackup · Schema

PolicyClient

BackupData ProtectionDisaster RecoveryEnterpriseRecoveryStorage

Properties

Name Type Description
clientName string Hostname of the client
hardware string Hardware type of the client
operatingSystem string Operating system of the client
priority integer Client priority within the policy
View JSON Schema on GitHub

JSON Schema

veritas-netbackup-policyclient-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PolicyClient",
  "title": "PolicyClient",
  "type": "object",
  "properties": {
    "clientName": {
      "type": "string",
      "description": "Hostname of the client",
      "example": "example_value"
    },
    "hardware": {
      "type": "string",
      "description": "Hardware type of the client",
      "example": "example_value"
    },
    "operatingSystem": {
      "type": "string",
      "description": "Operating system of the client",
      "example": "example_value"
    },
    "priority": {
      "type": "integer",
      "description": "Client priority within the policy",
      "example": 10
    }
  }
}