class Azure::DataBoxEdge::Mgmt::V2019_08_01::Models::ClientAccessRight

The mapping between a particular client IP and the type of access client has on the NFS share.

Attributes

access_permission[RW]

@return [ClientPermissionType] Type of access to be allowed for the client. Possible values include: 'NoAccess', 'ReadOnly', 'ReadWrite'

client[RW]

@return [String] IP of the client.

Private Class Methods

mapper() click to toggle source

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

# File lib/2019-08-01/generated/azure_mgmt_databoxedge/models/client_access_right.rb, line 28
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'ClientAccessRight',
    type: {
      name: 'Composite',
      class_name: 'ClientAccessRight',
      model_properties: {
        client: {
          client_side_validation: true,
          required: true,
          serialized_name: 'client',
          type: {
            name: 'String'
          }
        },
        access_permission: {
          client_side_validation: true,
          required: true,
          serialized_name: 'accessPermission',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end