class Azure::StorageCache::Mgmt::V2020_10_01::Models::NamespaceJunction

A namespace junction.

Attributes

namespace_path[RW]

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

nfs_access_policy[RW]

@return [String] Name of the access policy applied to this junction.

nfs_export[RW]

@return [String] NFS export where targetPath exists.

target_path[RW]

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

Private Class Methods

mapper() click to toggle source

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

# File lib/2020-10-01/generated/azure_mgmt_storagecache/models/namespace_junction.rb, line 32
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'
          }
        },
        nfs_access_policy: {
          client_side_validation: true,
          required: false,
          serialized_name: 'nfsAccessPolicy',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end