class Azure::NetApp::Mgmt::V2019_11_01::Models::MountTargetProperties

Mount target properties

Attributes

end_ip[RW]

@return [String] endIp. The end of IPv4 address range to use when creating a new mount target

file_system_id[RW]

@return [String] fileSystemId. UUID v4 used to identify the MountTarget

gateway[RW]

@return [String] gateway. The gateway of the IPv4 address range to use when creating a new mount target

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

netmask[RW]

@return [String] netmask. The netmask of the IPv4 address range to use when creating a new mount target

smb_server_fqdn[RW]

@return [String] smbServerFQDN. The SMB server's Fully Qualified Domain Name, FQDN

start_ip[RW]

@return [String] startIp. The start of IPv4 address range to use when creating a new mount target

subnet[RW]

@return [String] subnet. The subnet

Public Class Methods

mapper() click to toggle source

Mapper for MountTargetProperties class as Ruby Hash. This will be used for serialization/deserialization.

# File lib/2019-11-01/generated/azure_mgmt_netapp/models/mount_target_properties.rb, line 53
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'
          }
        },
        subnet: {
          client_side_validation: true,
          required: false,
          serialized_name: 'subnet',
          type: {
            name: 'String'
          }
        },
        start_ip: {
          client_side_validation: true,
          required: false,
          serialized_name: 'startIp',
          type: {
            name: 'String'
          }
        },
        end_ip: {
          client_side_validation: true,
          required: false,
          serialized_name: 'endIp',
          type: {
            name: 'String'
          }
        },
        gateway: {
          client_side_validation: true,
          required: false,
          serialized_name: 'gateway',
          type: {
            name: 'String'
          }
        },
        netmask: {
          client_side_validation: true,
          required: false,
          serialized_name: 'netmask',
          type: {
            name: 'String'
          }
        },
        smb_server_fqdn: {
          client_side_validation: true,
          required: false,
          serialized_name: 'smbServerFqdn',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end