Class: Azure::BatchAI::Mgmt::V2018_05_01::Models::MountSettings
- Inherits:
-
Object
- Object
- Azure::BatchAI::Mgmt::V2018_05_01::Models::MountSettings
- 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
-
#file_server_internal_ip ⇒ String
which can be used to access the File Server from within the subnet.
-
#file_server_public_ip ⇒ String
can be used to SSH to the node from outside of the subnet.
-
#mount_point ⇒ String
the File Server.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for MountSettings class as Ruby Hash.
Instance Attribute Details
#file_server_internal_ip ⇒ String
which can be used to access the File Server from within the subnet.
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_ip ⇒ String
can be used to SSH to the node from outside of the subnet.
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_point ⇒ String
the File Server.
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
.mapper ⇒ Object
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 |