# encoding: utf-8 # Code generated by Microsoft (R) AutoRest Code Generator. # Changes may cause incorrect behavior and will be lost if the code is # regenerated. module Azure::KeyVault::V7_1 module Models # # The SAS definition item containing storage SAS definition metadata. # class SasDefinitionItem include MsRestAzure # @return [String] The storage SAS identifier. attr_accessor :id # @return [String] The storage account SAS definition secret id. attr_accessor :secret_id # @return [SasDefinitionAttributes] The SAS definition management # attributes. attr_accessor :attributes # @return [Hash{String => String}] Application specific metadata in the # form of key-value pairs. attr_accessor :tags # # Mapper for SasDefinitionItem class as Ruby Hash. # This will be used for serialization/deserialization. # def self.mapper() { client_side_validation: true, required: false, serialized_name: 'SasDefinitionItem', type: { name: 'Composite', class_name: 'SasDefinitionItem', model_properties: { id: { client_side_validation: true, required: false, read_only: true, serialized_name: 'id', type: { name: 'String' } }, secret_id: { client_side_validation: true, required: false, read_only: true, serialized_name: 'sid', type: { name: 'String' } }, attributes: { client_side_validation: true, required: false, read_only: true, serialized_name: 'attributes', type: { name: 'Composite', class_name: 'SasDefinitionAttributes' } }, tags: { client_side_validation: true, required: false, read_only: true, serialized_name: 'tags', type: { name: 'Dictionary', value: { client_side_validation: true, required: false, serialized_name: 'StringElementType', type: { name: 'String' } } } } } } } end end end end