class Azure::StorageCache::Mgmt::V2019_08_01_preview::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/2019-08-01-preview/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