# encoding: utf-8 # Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 # Changes may cause incorrect behavior and will be lost if the code is # regenerated. module Azure::ARM::ServiceBus module Models # # Parameters supplied to the Create Or Update Authorization Rules # operation. # class SharedAccessAuthorizationRuleCreateOrUpdateParameters include MsRestAzure # @return [String] data center location. attr_accessor :location # @return [String] Name of the authorization rule. attr_accessor :name # @return [Array] The rights associated with the rule. attr_accessor :rights # # Mapper for SharedAccessAuthorizationRuleCreateOrUpdateParameters class # as Ruby Hash. # This will be used for serialization/deserialization. # def self.mapper() { required: false, serialized_name: 'SharedAccessAuthorizationRuleCreateOrUpdateParameters', type: { name: 'Composite', class_name: 'SharedAccessAuthorizationRuleCreateOrUpdateParameters', model_properties: { location: { required: false, serialized_name: 'location', type: { name: 'String' } }, name: { required: false, serialized_name: 'name', type: { name: 'String' } }, rights: { required: true, serialized_name: 'properties.rights', type: { name: 'Sequence', element: { required: false, serialized_name: 'AccessRightsElementType', type: { name: 'Enum', module: 'AccessRights' } } } } } } } end end end end