Class: Azure::BatchAI::Mgmt::V2018_03_01::Models::MountSettings
- Inherits:
-
Object
- Object
- Azure::BatchAI::Mgmt::V2018_03_01::Models::MountSettings
- Includes:
- MsRestAzure
- Defined in:
- lib/2018-03-01/generated/azure_mgmt_batchai/models/mount_settings.rb
Overview
Details of the File Server.
Instance Attribute Summary collapse
-
#file_server_internal_ip ⇒ String
file Server from within the subnet.
-
#file_server_public_ip ⇒ String
Public IP of the File Server VM.
-
#file_server_type ⇒ FileServerType
etc.
-
#mount_point ⇒ String
Path where the NFS is mounted on the Server.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for MountSettings class as Ruby Hash.
Instance Attribute Details
#file_server_internal_ip ⇒ String
file Server from within the subnet.
23 24 25 |
# File 'lib/2018-03-01/generated/azure_mgmt_batchai/models/mount_settings.rb', line 23 def file_server_internal_ip @file_server_internal_ip end |
#file_server_public_ip ⇒ String
19 20 21 |
# File 'lib/2018-03-01/generated/azure_mgmt_batchai/models/mount_settings.rb', line 19 def file_server_public_ip @file_server_public_ip end |
#file_server_type ⇒ FileServerType
etc. Possible values include: ‘nfs’, ‘glusterfs’
27 28 29 |
# File 'lib/2018-03-01/generated/azure_mgmt_batchai/models/mount_settings.rb', line 27 def file_server_type @file_server_type end |
#mount_point ⇒ String
16 17 18 |
# File 'lib/2018-03-01/generated/azure_mgmt_batchai/models/mount_settings.rb', line 16 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.
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 69 70 71 72 73 74 75 76 77 78 |
# File 'lib/2018-03-01/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 |