# 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::Compute::Mgmt::V2018_06_01 module Models # # Specifies information about the Shared Image Gallery that you want to # create or update. # class Gallery < Resource include MsRestAzure # @return [String] The description of this Shared Image Gallery resource. # This property is updatable. attr_accessor :description # @return [GalleryIdentifier] attr_accessor :identifier # @return [Enum] The current state of the gallery. The provisioning # state, which only appears in the response. Possible values include: # 'Creating', 'Updating', 'Failed', 'Succeeded', 'Deleting', 'Migrating' attr_accessor :provisioning_state # # Mapper for Gallery class as Ruby Hash. # This will be used for serialization/deserialization. # def self.mapper() { client_side_validation: true, required: false, serialized_name: 'Gallery', type: { name: 'Composite', class_name: 'Gallery', model_properties: { id: { client_side_validation: true, required: false, read_only: true, serialized_name: 'id', type: { name: 'String' } }, name: { client_side_validation: true, required: false, read_only: true, serialized_name: 'name', type: { name: 'String' } }, type: { client_side_validation: true, required: false, read_only: true, serialized_name: 'type', type: { name: 'String' } }, location: { client_side_validation: true, required: true, serialized_name: 'location', type: { name: 'String' } }, 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' } } } }, description: { client_side_validation: true, required: false, serialized_name: 'properties.description', type: { name: 'String' } }, identifier: { client_side_validation: true, required: false, serialized_name: 'properties.identifier', type: { name: 'Composite', class_name: 'GalleryIdentifier' } }, provisioning_state: { client_side_validation: true, required: false, read_only: true, serialized_name: 'properties.provisioningState', type: { name: 'String' } } } } } end end end end