Skip to content

registerCloudCluster

Register a cloud cluster.

Arguments

Argument Type Description
input (required) RegisterCloudClusterInput! Input for cloud cluster registration.

Returns

RegisterCloudClusterReply!

Sample

mutation RegisterCloudCluster($input: RegisterCloudClusterInput!) {
  registerCloudCluster(input: $input) {
    error
    isSuccessful
  }
}
{
  "input": {}
}
{
  "data": {
    "registerCloudCluster": {
      "error": "example-string",
      "isSuccessful": true
    }
  }
}