Skip to content

addCloudDirectSystem

AddCloudDirectSystem is used to add a new system to the NCD cluster.

Arguments

Argument Type Description
input (required) AddCloudDirectSystemInput! Details for connecting to the system.

Returns

AddCloudDirectSystemReply!

Sample

mutation AddCloudDirectSystem($input: AddCloudDirectSystemInput!) {
  addCloudDirectSystem(input: $input) {
    jobId
  }
}
{
  "input": {
    "clusterId": "00000000-0000-0000-0000-000000000000",
    "host": "example-string",
    "skipServiceAccountCreation": true,
    "systemType": "AZURE_FILES",
    "verifySsl": true
  }
}
{
  "data": {
    "addCloudDirectSystem": {
      "jobId": "example-string"
    }
  }
}