class Azure::Compute::Mgmt::V2020_09_30_preview::Models::GalleryImageIdentifier
This is the gallery image definition identifier.
Attributes
offer[RW]
@return [String] The name of the gallery image definition offer.
publisher[RW]
@return [String] The name of the gallery image definition publisher.
sku[RW]
@return [String] The name of the gallery image definition SKU.
Public Class Methods
mapper()
click to toggle source
Mapper for GalleryImageIdentifier
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2020-09-30-preview/generated/azure_mgmt_compute/models/gallery_image_identifier.rb, line 29 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'GalleryImageIdentifier', type: { name: 'Composite', class_name: 'GalleryImageIdentifier', model_properties: { publisher: { client_side_validation: true, required: true, serialized_name: 'publisher', type: { name: 'String' } }, offer: { client_side_validation: true, required: true, serialized_name: 'offer', type: { name: 'String' } }, sku: { client_side_validation: true, required: true, serialized_name: 'sku', type: { name: 'String' } } } } } end