class Azure::NetApp::Mgmt::V2020_09_01::Models::MountTarget
Mount Target
Attributes
file_system_id[RW]
@return [String] fileSystemId. UUID v4 used to identify the MountTarget
id[RW]
@return [String] Resource Id
ip_address[RW]
@return [String] ipAddress. The mount target's IPv4 address
location[RW]
@return [String] Resource location
mount_target_id[RW]
@return [String] mountTargetId. UUID v4 used to identify the MountTarget
name[RW]
@return [String] Resource name
smb_server_fqdn[RW]
@return [String] smbServerFQDN. The SMB server's Fully Qualified Domain Name, FQDN
type[RW]
@return [String] Resource type
Public Class Methods
mapper()
click to toggle source
Mapper for MountTarget
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2020-09-01/generated/azure_mgmt_netapp/models/mount_target.rb, line 49 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'mountTarget', type: { name: 'Composite', class_name: 'MountTarget', model_properties: { location: { client_side_validation: true, required: true, serialized_name: 'location', type: { name: 'String' } }, id: { client_side_validation: true, required: false, read_only: true, serialized_name: 'id', type: { name: 'String' } }, name: { client_side_validation: true, required: false, read_only: true, serialized_name: 'name', type: { name: 'String' } }, type: { client_side_validation: true, required: false, read_only: true, serialized_name: 'type', type: { name: 'String' } }, tags: { client_side_validation: true, required: false, serialized_name: 'tags', type: { name: 'Dictionary', value: { client_side_validation: true, required: false, serialized_name: 'StringElementType', type: { name: 'String' } } } }, mount_target_id: { client_side_validation: true, required: false, read_only: true, serialized_name: 'properties.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: 'properties.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: 'properties.ipAddress', type: { name: 'String' } }, smb_server_fqdn: { client_side_validation: true, required: false, serialized_name: 'properties.smbServerFqdn', type: { name: 'String' } } } } } end