Class: Azure::NetApp::Mgmt::V2020_06_01::Models::MountTargetProperties
- Inherits:
-
Object
- Object
- Azure::NetApp::Mgmt::V2020_06_01::Models::MountTargetProperties
- Includes:
- MsRestAzure
- Defined in:
- lib/2020-06-01/generated/azure_mgmt_netapp/models/mount_target_properties.rb
Overview
Mount target properties
Instance Attribute Summary collapse
-
#file_system_id ⇒ String
FileSystemId.
-
#ip_address ⇒ String
IpAddress.
-
#mount_target_id ⇒ String
MountTarget.
-
#smb_server_fqdn ⇒ String
Name, FQDN.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for MountTargetProperties class as Ruby Hash.
Instance Attribute Details
#file_system_id ⇒ String
Returns fileSystemId. UUID v4 used to identify the MountTarget.
20 21 22 |
# File 'lib/2020-06-01/generated/azure_mgmt_netapp/models/mount_target_properties.rb', line 20 def file_system_id @file_system_id end |
#ip_address ⇒ String
Returns ipAddress. The mount target’s IPv4 address.
23 24 25 |
# File 'lib/2020-06-01/generated/azure_mgmt_netapp/models/mount_target_properties.rb', line 23 def ip_address @ip_address end |
#mount_target_id ⇒ String
MountTarget
17 18 19 |
# File 'lib/2020-06-01/generated/azure_mgmt_netapp/models/mount_target_properties.rb', line 17 def mount_target_id @mount_target_id end |
#smb_server_fqdn ⇒ String
Name, FQDN
27 28 29 |
# File 'lib/2020-06-01/generated/azure_mgmt_netapp/models/mount_target_properties.rb', line 27 def smb_server_fqdn @smb_server_fqdn end |
Class Method Details
.mapper ⇒ Object
Mapper for MountTargetProperties 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 79 80 81 82 83 84 85 86 87 88 89 90 |
# File 'lib/2020-06-01/generated/azure_mgmt_netapp/models/mount_target_properties.rb', line 34 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'mountTargetProperties', type: { name: 'Composite', class_name: 'MountTargetProperties', model_properties: { mount_target_id: { client_side_validation: true, required: false, read_only: true, serialized_name: 'mountTargetId', constraints: { MaxLength: 36, MinLength: 36, Pattern: '^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$' }, type: { name: 'String' } }, file_system_id: { client_side_validation: true, required: true, serialized_name: 'fileSystemId', constraints: { MaxLength: 36, MinLength: 36, Pattern: '^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$' }, type: { name: 'String' } }, ip_address: { client_side_validation: true, required: false, read_only: true, serialized_name: 'ipAddress', type: { name: 'String' } }, smb_server_fqdn: { client_side_validation: true, required: false, serialized_name: 'smbServerFqdn', type: { name: 'String' } } } } } end |