class Azure::StorageCache::Mgmt::V2019_08_01_preview::Models::Nfs3Target

An NFS mount point for use as a StorageTarget.

Attributes

target[RW]

@return [String] IP or name of an NFS Storage Target host, ie: 10.0.44.44

usage_model[RW]

@return [String] Identifies the primary usage model to be used for this storage target. GET choices from …/usageModels

Public Class Methods

mapper() click to toggle source

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

# File lib/2019-08-01-preview/generated/azure_mgmt_storagecache/models/nfs3target.rb, line 28
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'nfs3',
    type: {
      name: 'Composite',
      class_name: 'Nfs3Target',
      model_properties: {
        target: {
          client_side_validation: true,
          required: false,
          serialized_name: 'target',
          constraints: {
            Pattern: '^[-.0-9a-zA-Z]+$'
          },
          type: {
            name: 'String'
          }
        },
        usage_model: {
          client_side_validation: true,
          required: false,
          serialized_name: 'usageModel',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end