class Azure::Compute::Mgmt::V2019_03_01::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.

Private Class Methods

mapper() click to toggle source

Mapper for GalleryImageIdentifier class as Ruby Hash. This will be used for serialization/deserialization.

# File lib/2019-03-01/generated/azure_mgmt_compute/models/gallery_image_identifier.rb, line 28
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