# 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. # class IntegrationAccount < Resource include MsRestAzure # @return The integration account properties. attr_accessor :properties # @return [IntegrationAccountSku] The sku. attr_accessor :sku # # Mapper for IntegrationAccount class as Ruby Hash. # This will be used for serialization/deserialization. # def self.mapper() { required: false, serialized_name: 'IntegrationAccount', type: { name: 'Composite', class_name: 'IntegrationAccount', 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' } } } }, properties: { required: false, serialized_name: 'properties', type: { name: 'Object' } }, sku: { required: false, serialized_name: 'sku', type: { name: 'Composite', class_name: 'IntegrationAccountSku' } } } } } end end end end