Class NfsMountConfiguration

java.lang.Object
com.azure.resourcemanager.batch.models.NfsMountConfiguration

public final class NfsMountConfiguration extends Object
Information used to connect to an NFS file system.
  • Constructor Details

    • NfsMountConfiguration

      public NfsMountConfiguration()
      Creates an instance of NfsMountConfiguration class.
  • Method Details

    • source

      public String source()
      Get the source property: The URI of the file system to mount.
      Returns:
      the source value.
    • withSource

      public NfsMountConfiguration withSource(String source)
      Set the source property: The URI of the file system to mount.
      Parameters:
      source - the source value to set.
      Returns:
      the NfsMountConfiguration object itself.
    • relativeMountPath

      public String relativeMountPath()
      Get the relativeMountPath property: The relative path on the compute node where the file system will be mounted

      All file systems are mounted relative to the Batch mounts directory, accessible via the AZ_BATCH_NODE_MOUNTS_DIR environment variable.

      Returns:
      the relativeMountPath value.
    • withRelativeMountPath

      public NfsMountConfiguration withRelativeMountPath(String relativeMountPath)
      Set the relativeMountPath property: The relative path on the compute node where the file system will be mounted

      All file systems are mounted relative to the Batch mounts directory, accessible via the AZ_BATCH_NODE_MOUNTS_DIR environment variable.

      Parameters:
      relativeMountPath - the relativeMountPath value to set.
      Returns:
      the NfsMountConfiguration object itself.
    • mountOptions

      public String mountOptions()
      Get the mountOptions property: Additional command line options to pass to the mount command.

      These are 'net use' options in Windows and 'mount' options in Linux.

      Returns:
      the mountOptions value.
    • withMountOptions

      public NfsMountConfiguration withMountOptions(String mountOptions)
      Set the mountOptions property: Additional command line options to pass to the mount command.

      These are 'net use' options in Windows and 'mount' options in Linux.

      Parameters:
      mountOptions - the mountOptions value to set.
      Returns:
      the NfsMountConfiguration object itself.
    • validate

      public void validate()
      Validates the instance.
      Throws:
      IllegalArgumentException - thrown if the instance is not valid.