# encoding: utf-8 # Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 # Changes may cause incorrect behavior and will be lost if the code is # regenerated. module Azure::ARM::DataLakeStore::FileSystem module Models # # Data Lake Store file or directory Access Control List information. # class AclStatus include MsRestAzure # @return [Array] the list of ACLSpec entries on a file or # directory. attr_accessor :entries # @return [String] the group owner, an AAD Object ID. attr_accessor :group # @return [String] the user owner, an AAD Object ID. attr_accessor :owner # @return [Boolean] the indicator of whether the sticky bit is on or off. attr_accessor :sticky_bit # # Mapper for AclStatus class as Ruby Hash. # This will be used for serialization/deserialization. # def self.mapper() { required: false, serialized_name: 'AclStatus', type: { name: 'Composite', class_name: 'AclStatus', model_properties: { entries: { required: false, serialized_name: 'entries', type: { name: 'Sequence', element: { required: false, serialized_name: 'StringElementType', type: { name: 'String' } } } }, group: { required: false, serialized_name: 'group', type: { name: 'String' } }, owner: { required: false, serialized_name: 'owner', type: { name: 'String' } }, sticky_bit: { required: false, serialized_name: 'stickyBit', type: { name: 'Boolean' } } } } } end end end end