class Azure::BatchAI::Mgmt::V2018_03_01::Models::UnmanagedFileSystemReference
Details of the file system to mount on the compute cluster nodes.
Attributes
mount_command[RW]
@return [String] Command used to mount the unmanaged file system.
relative_mount_path[RW]
@return [String] Specifies the relative path on the compute cluster node where the file system will be mounted. Note that all cluster level unmanaged file system will be mounted under $AZ_BATCHAI_MOUNT_ROOT location and job level unmanaged file system will be mounted under $AZ_BATCHAI_JOB_MOUNT_ROOT.
Public Class Methods
mapper()
click to toggle source
Mapper for UnmanagedFileSystemReference
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2018-03-01/generated/azure_mgmt_batchai/models/unmanaged_file_system_reference.rb, line 30 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