Skip to content

vsphereVmRegisterAgentWithOrg

Register Rubrik Backup Service Supported in v5.0+ Register the Rubrik Backup Service that is running on a specified host with the specified Rubrik cluster.

Arguments

Argument Type Description
input (required) VsphereVmRegisterAgentWithOrgInput! Input for register Virtual Machine agent with CDM.

Returns

RequestSuccess!

Sample

mutation VsphereVmRegisterAgentWithOrg($input: VsphereVmRegisterAgentWithOrgInput!) {
  vsphereVmRegisterAgentWithOrg(input: $input) {
    success
  }
}
{
  "input": {
    "clusterUuid": "00000000-0000-0000-0000-000000000000",
    "id": "example-string"
  }
}
{
  "data": {
    "vsphereVmRegisterAgentWithOrg": {
      "success": true
    }
  }
}