Skip to content

addCloudDirectKerberosCredential

AddCloudDirectKerberosCredential creates a new Kerberos credential for NCD systems.

Arguments

Argument Type Description
input (required) AddCloudDirectKerberosCredentialInput! Details for the Kerberos credential.

Returns

AddCloudDirectKerberosCredentialReply!

Sample

mutation AddCloudDirectKerberosCredential($input: AddCloudDirectKerberosCredentialInput!) {
  addCloudDirectKerberosCredential(input: $input) {
    credentialId
  }
}
{
  "input": {
    "clusterUuid": "00000000-0000-0000-0000-000000000000",
    "kdcConfig": {
      "kdc1": "example-string",
      "realm": "example-string"
    },
    "password": "example-string",
    "username": "example-string"
  }
}
{
  "data": {
    "addCloudDirectKerberosCredential": {
      "credentialId": 0
    }
  }
}