Sha256: d2bf8d924fdd31d50084ce85551a579671ebf7d713a264226f2e39966ea8d0e1
Contents?: true
Size: 1.81 KB
Versions: 12
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::V2018_06_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
12 entries across 12 versions & 1 rubygems