class Azure::Compute::Mgmt::V2020_09_30_preview::Models::GalleryUpdate
Specifies information about the Shared Image Gallery
that you want to update.
Attributes
description[RW]
@return [String] The description of this Shared Image Gallery
resource. This property is updatable.
identifier[RW]
@return [GalleryIdentifier]
provisioning_state[RW]
@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'
sharing_profile[RW]
@return [SharingProfile]
Public Class Methods
mapper()
click to toggle source
Mapper for GalleryUpdate
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2020-09-30-preview/generated/azure_mgmt_compute/models/gallery_update.rb, line 36 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'GalleryUpdate', type: { name: 'Composite', class_name: 'GalleryUpdate', 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' } }, 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' } }, sharing_profile: { client_side_validation: true, required: false, serialized_name: 'properties.sharingProfile', type: { name: 'Composite', class_name: 'SharingProfile' } } } } } end