Sha256: 899e1b9c6b396e23e4fc6b95b7af90274a070590b868d0ed84c47838ba300a6a
Contents?: true
Size: 1.81 KB
Versions: 9
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_03_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
9 entries across 9 versions & 1 rubygems