class Azure::BatchAI::Mgmt::V2018_05_01::Models::UnmanagedFileSystemReference

Unmanaged file system mounting configuration.

Attributes

mount_command[RW]

@return [String] Mount command. Mount command line. Note, Batch AI will append mount path to the command on its own.

relative_mount_path[RW]

@return [String] Relative mount path. The relative path on the compute node where the unmanaged file system will be mounted. Note that all cluster level unmanaged file systems will be mounted under $AZ_BATCHAI_MOUNT_ROOT location and all job level unmanaged file systems will be mounted under $AZ_BATCHAI_JOB_MOUNT_ROOT.

Private Class Methods

mapper() click to toggle source

Mapper for UnmanagedFileSystemReference class as Ruby Hash. This will be used for serialization/deserialization.

# File lib/2018-05-01/generated/azure_mgmt_batchai/models/unmanaged_file_system_reference.rb, line 31
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'UnmanagedFileSystemReference',
    type: {
      name: 'Composite',
      class_name: 'UnmanagedFileSystemReference',
      model_properties: {
        mount_command: {
          client_side_validation: true,
          required: true,
          serialized_name: 'mountCommand',
          type: {
            name: 'String'
          }
        },
        relative_mount_path: {
          client_side_validation: true,
          required: true,
          serialized_name: 'relativeMountPath',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end