class Azure::StorageCache::Mgmt::V2019_11_01::Models::Nfs3Target

An NFSv3 mount point for use as a Storage Target.

Attributes

target[RW]

@return [String] IP address or host name of an NFSv3 host (e.g., 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-11-01/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