Veritas NetBackup · Schema

LoginRequest

BackupData ProtectionDisaster RecoveryEnterpriseRecoveryStorage

Properties

Name Type Description
domainName string The authentication domain name (e.g., the NetBackup primary server hostname)
domainType string The type of authentication domain
userName string The user account name
password string The user account password
View JSON Schema on GitHub

JSON Schema

veritas-netbackup-rest-login-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "LoginRequest",
  "type": "object",
  "properties": {
    "domainName": {
      "type": "string",
      "description": "The authentication domain name (e.g., the NetBackup primary server hostname)"
    },
    "domainType": {
      "type": "string",
      "description": "The type of authentication domain"
    },
    "userName": {
      "type": "string",
      "description": "The user account name"
    },
    "password": {
      "type": "string",
      "description": "The user account password"
    }
  }
}