Class: Azure::BatchAI::Mgmt::V2018_05_01::Models::MountSettings

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/2018-05-01/generated/azure_mgmt_batchai/models/mount_settings.rb

Overview

File Server mount Information.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#file_server_internal_ipString

which can be used to access the File Server from within the subnet.

Returns:

  • (String)

    Internal IP. Internal IP address of the File Server



25
26
27
# File 'lib/2018-05-01/generated/azure_mgmt_batchai/models/mount_settings.rb', line 25

def file_server_internal_ip
  @file_server_internal_ip
end

#file_server_public_ipString

can be used to SSH to the node from outside of the subnet.

Returns:

  • (String)

    Public IP. Public IP address of the File Server which



21
22
23
# File 'lib/2018-05-01/generated/azure_mgmt_batchai/models/mount_settings.rb', line 21

def file_server_public_ip
  @file_server_public_ip
end

#mount_pointString

the File Server.

Returns:

  • (String)

    Mount Point. Path where the data disks are mounted on



17
18
19
# File 'lib/2018-05-01/generated/azure_mgmt_batchai/models/mount_settings.rb', line 17

def mount_point
  @mount_point
end

Class Method Details

.mapperObject

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



32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
# 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