Skip to content

cloudDirectCheckSharePath

CloudDirectCheckSharePath validates if a share path is accessible on the specified host.

Arguments

Argument Type Description
input (required) CloudDirectCheckSharePathReq! The host and share path to check.

Returns

CloudDirectCheckSharePathResp!

Sample

query CloudDirectCheckSharePath($input: CloudDirectCheckSharePathReq!) {
  cloudDirectCheckSharePath(input: $input) {
    isAccessible
  }
}
{
  "input": {
    "clusterId": "00000000-0000-0000-0000-000000000000",
    "host": "example-string",
    "path": "example-string",
    "protocol": "NFS"
  }
}
{
  "data": {
    "cloudDirectCheckSharePath": {
      "isAccessible": true
    }
  }
}