class Azure::NetApp::Mgmt::V2020_06_01::Models::MountTargetProperties
Mount target properties
Attributes
file_system_id[RW]
@return [String] fileSystemId. UUID v4 used to identify the MountTarget
ip_address[RW]
@return [String] ipAddress. The mount target's IPv4 address
mount_target_id[RW]
@return [String] mountTargetId. UUID v4 used to identify the MountTarget
smb_server_fqdn[RW]
@return [String] smbServerFQDN. The SMB server's Fully Qualified Domain Name, FQDN
Public Class Methods
mapper()
click to toggle source
Mapper for MountTargetProperties
class as Ruby Hash. This will be used for serialization/deserialization.
# 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