class Azure::StorageCache::Mgmt::V2020_03_01::Models::NamespaceJunction

A namespace junction.

Attributes

namespace_path[RW]

@return [String] Namespace path on a Cache for a Storage Target.

nfs_export[RW]

@return [String] NFS export where targetPath exists.

target_path[RW]

@return [String] Path in Storage Target to which namespacePath points.

Public Class Methods

mapper() click to toggle source

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

# File lib/2020-03-01/generated/azure_mgmt_storagecache/models/namespace_junction.rb, line 29
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'NamespaceJunction',
    type: {
      name: 'Composite',
      class_name: 'NamespaceJunction',
      model_properties: {
        namespace_path: {
          client_side_validation: true,
          required: false,
          serialized_name: 'namespacePath',
          type: {
            name: 'String'
          }
        },
        target_path: {
          client_side_validation: true,
          required: false,
          serialized_name: 'targetPath',
          type: {
            name: 'String'
          }
        },
        nfs_export: {
          client_side_validation: true,
          required: false,
          serialized_name: 'nfsExport',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end