Skip to content

createNfsReaderTarget

Creates reader type for NFS archival location on a CDM cluster.

Arguments

Argument Type Description
input (required) CreateNfsReaderTargetInput! Input for creating a new NFS reader target.

Returns

Target!

Sample

mutation CreateNfsReaderTarget($input: CreateNfsReaderTargetInput!) {
  createNfsReaderTarget(input: $input) {
    clusterName
    consumedBytes
    failedTasks
    id
    isActive
    isArchived
    isComplianceImmutabilitySupported
    locationConnectionStatus
    locationScope
    name
    readerRetrievalMethod
    runningTasks
    status
    targetType
    upgradeStatus
  }
}
{
  "input": {
    "clusterUuid": "00000000-0000-0000-0000-000000000000",
    "destinationFolder": "example-string",
    "exportDir": "example-string",
    "fileLockPeriodInSeconds": 0,
    "host": "example-string",
    "isConsolidationEnabled": true,
    "name": "example-string",
    "nfsAuthType": "KERBEROS",
    "readerRetrievalMethod": "OBJECT_LIST_AND_DETAILS"
  }
}
{
  "data": {
    "createNfsReaderTarget": {
      "clusterName": "example-string",
      "consumedBytes": 0,
      "failedTasks": 0,
      "id": "example-string",
      "isActive": true
    }
  }
}