# 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::Logic::Mgmt::V2016_06_01 module Models # # The integration account certificate. # class IntegrationAccountCertificate < Resource include MsRestAzure # @return [DateTime] The created time. attr_accessor :created_time # @return [DateTime] The changed time. attr_accessor :changed_time # @return The metadata. attr_accessor :metadata # @return [KeyVaultKeyReference] The key details in the key vault. attr_accessor :key # @return [String] The public certificate. attr_accessor :public_certificate # # Mapper for IntegrationAccountCertificate class as Ruby Hash. # This will be used for serialization/deserialization. # def self.mapper() { required: false, serialized_name: 'IntegrationAccountCertificate', type: { name: 'Composite', class_name: 'IntegrationAccountCertificate', model_properties: { id: { required: false, read_only: true, serialized_name: 'id', type: { name: 'String' } }, name: { required: false, read_only: true, serialized_name: 'name', type: { name: 'String' } }, type: { required: false, read_only: true, serialized_name: 'type', type: { name: 'String' } }, location: { required: false, serialized_name: 'location', type: { name: 'String' } }, tags: { required: false, serialized_name: 'tags', type: { name: 'Dictionary', value: { required: false, serialized_name: 'StringElementType', type: { name: 'String' } } } }, created_time: { required: false, read_only: true, serialized_name: 'properties.createdTime', type: { name: 'DateTime' } }, changed_time: { required: false, read_only: true, serialized_name: 'properties.changedTime', type: { name: 'DateTime' } }, metadata: { required: false, serialized_name: 'properties.metadata', type: { name: 'Object' } }, key: { required: false, serialized_name: 'properties.key', type: { name: 'Composite', class_name: 'KeyVaultKeyReference' } }, public_certificate: { required: false, serialized_name: 'properties.publicCertificate', type: { name: 'String' } } } } } end end end end