INPUT_OBJECT

CreateNfsReaderTargetInput

Description

Input for creating a NFS Reader Target.

link GraphQL Schema definition

  • input CreateNfsReaderTargetInput {
  • # Field for specifying name of the target.
  • name: String!
  • # Field for specifying cluster UUID of the target.
  • clusterUuid: UUID!
  • # Field for specifying the host of the NFS location.
  • host: String!
  • # Field for specifying the exported directory at the host of the NFS location.
  • exportDir: String!
  • # Field for specifying the version of NFS.
  • nfsVersion: Int
  • # Field for specifying the authentication type of NFS.
  • nfsAuthType: AuthTypeEnum!
  • # Field for specifying other NFS options.
  • otherNfsOptions: String
  • # Field for specifying file lock period, in seconds.
  • fileLockPeriodInSeconds: Int!
  • # Field for specifying destination folder of the NFS.
  • destinationFolder: String!
  • # Field for whether consolidation should be enabled or not for this target.
  • isConsolidationEnabled: Boolean!
  • # Field for specifying the encryption password.
  • encryptionPassword: String
  • # Field for specifying the metadata to be retrieved from a target.
  • readerRetrievalMethod: ReaderRetrievalMethod!
  • }

link Require by