# 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::V2015_06_01 module Models # # The secret update parameters # class SecretUpdateParameters include MsRestAzure # @return [String] Type of the secret value such as a password attr_accessor :content_type # @return [SecretAttributes] The secret management attributes attr_accessor :secret_attributes # @return [Hash{String => String}] Application-specific metadata in the # form of key-value pairs attr_accessor :tags # # Mapper for SecretUpdateParameters class as Ruby Hash. # This will be used for serialization/deserialization. # def self.mapper() { client_side_validation: true, required: false, serialized_name: 'SecretUpdateParameters', type: { name: 'Composite', class_name: 'SecretUpdateParameters', model_properties: { content_type: { client_side_validation: true, required: false, serialized_name: 'contentType', type: { name: 'String' } }, secret_attributes: { client_side_validation: true, required: false, serialized_name: 'attributes', type: { name: 'Composite', class_name: 'SecretAttributes' } }, tags: { client_side_validation: true, required: false, serialized_name: 'tags', type: { name: 'Dictionary', value: { client_side_validation: true, required: false, serialized_name: 'StringElementType', type: { name: 'String' } } } } } } } end end end end