class Azure::BatchAI::Mgmt::V2017_09_01_preview::Models::MountSettings

Details of the File Server.

Attributes

file_server_internal_ip[RW]

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

file_server_public_ip[RW]

@return [String] Public IP of the File Server VM.

file_server_type[RW]

@return [FileServerType] Type of the fileserver e.g. nfs, glusterfs etc. Possible values include: 'nfs', 'glusterfs'

mount_point[RW]

@return [String] Path where the NFS is mounted on the Server.

Public Class Methods

mapper() click to toggle source

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

# File lib/2017-09-01-preview/generated/azure_mgmt_batchai/models/mount_settings.rb, line 34
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'
          }
        },
        file_server_type: {
          client_side_validation: true,
          required: false,
          serialized_name: 'fileServerType',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end