Sha256: 4807cfb2d605bafb6c89052c92f3c9e5525fc4e69a8f33556e603266db47fd0b
Contents?: true
Size: 1.81 KB
Versions: 5
Compression:
Stored size: 1.81 KB
Contents
# 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::V2019_12_01 module Models # # This is the gallery Image Definition identifier. # class GalleryImageIdentifier include MsRestAzure # @return [String] The name of the gallery Image Definition publisher. attr_accessor :publisher # @return [String] The name of the gallery Image Definition offer. attr_accessor :offer # @return [String] The name of the gallery Image Definition SKU. attr_accessor :sku # # Mapper for GalleryImageIdentifier class as Ruby Hash. # This will be used for serialization/deserialization. # 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 end end end
Version data entries
5 entries across 5 versions & 1 rubygems