class Azure::BatchAI::Mgmt::V2018_05_01::Models::MountSettings

File Server mount Information.

Attributes

file_server_internal_ip[RW]

@return [String] Internal IP. Internal IP address of the File Server which can be used to access the File Server from within the subnet.

file_server_public_ip[RW]

@return [String] Public IP. Public IP address of the File Server which can be used to SSH to the node from outside of the subnet.

mount_point[RW]

@return [String] Mount Point. Path where the data disks are mounted on the File Server.

Private Class Methods

mapper() click to toggle source

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

# File lib/2018-05-01/generated/azure_mgmt_batchai/models/mount_settings.rb, line 32
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'MountSettings',
    type: {
      name: 'Composite',
      class_name: 'MountSettings',
      model_properties: {
        mount_point: {
          client_side_validation: true,
          required: false,
          serialized_name: 'mountPoint',
          type: {
            name: 'String'
          }
        },
        file_server_public_ip: {
          client_side_validation: true,
          required: false,
          serialized_name: 'fileServerPublicIP',
          type: {
            name: 'String'
          }
        },
        file_server_internal_ip: {
          client_side_validation: true,
          required: false,
          serialized_name: 'fileServerInternalIP',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end