Skip to content

registerNasSystem

Register a NAS System Supported in v7.0+ Register a NAS system such as a NetApp or an Isilon cluster to be protected.

Arguments

Argument Type Description
input (required) RegisterNasSystemInput! Input for V1RegisterNasSystem.

Returns

RegisterNasSystemReply!

Sample

mutation RegisterNasSystem($input: RegisterNasSystemInput!) {
  registerNasSystem(input: $input)
}
{
  "input": {
    "clusterUuid": "example-string",
    "nasSystem": {
      "hostname": "example-string",
      "nasVendorType": "NAS_VENDOR_TYPE_FLASHBLADE"
    }
  }
}
{
  "data": {
    "registerNasSystem": {
      "nasDiscoverJobStatus": {
        "endTime": "2024-01-01T00:00:00.000Z",
        "id": "example-string",
        "nodeId": "example-string",
        "progress": 0.0,
        "result": "example-string",
        "startTime": "2024-01-01T00:00:00.000Z"
      },
      "nasSystemSummary": {
        "connectionStatus": "HOST_RBS_CONNECTION_STATUS_CONNECTED",
        "hostname": "example-string",
        "id": "example-string",
        "isReplicated": true,
        "vendorType": "NAS_VENDOR_TYPE_FLASHBLADE"
      }
    }
  }
}