Class: Azure::StorageCache::Mgmt::V2019_11_01::Models::NamespaceJunction
- Inherits:
-
Object
- Object
- Azure::StorageCache::Mgmt::V2019_11_01::Models::NamespaceJunction
- Includes:
- MsRestAzure
- Defined in:
- lib/2019-11-01/generated/azure_mgmt_storagecache/models/namespace_junction.rb
Overview
A namespace junction.
Instance Attribute Summary collapse
-
#namespace_path ⇒ String
Namespace path on a Cache for a Storage Target.
-
#nfs_export ⇒ String
NFS export where targetPath exists.
-
#target_path ⇒ String
Path in Storage Target to which namespacePath points.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for NamespaceJunction class as Ruby Hash.
Instance Attribute Details
#namespace_path ⇒ String
Returns Namespace path on a Cache for a Storage Target.
16 17 18 |
# File 'lib/2019-11-01/generated/azure_mgmt_storagecache/models/namespace_junction.rb', line 16 def namespace_path @namespace_path end |
#nfs_export ⇒ String
Returns NFS export where targetPath exists.
22 23 24 |
# File 'lib/2019-11-01/generated/azure_mgmt_storagecache/models/namespace_junction.rb', line 22 def nfs_export @nfs_export end |
#target_path ⇒ String
Returns Path in Storage Target to which namespacePath points.
19 20 21 |
# File 'lib/2019-11-01/generated/azure_mgmt_storagecache/models/namespace_junction.rb', line 19 def target_path @target_path end |
Class Method Details
.mapper ⇒ Object
Mapper for NamespaceJunction class as Ruby Hash. This will be used for serialization/deserialization.
29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 |
# File 'lib/2019-11-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 |