class Azure::BatchAI::Mgmt::V2017_09_01_preview::Models::ImageReference
The image reference.
Attributes
offer[RW]
@return [String] Offer of the image.
publisher[RW]
@return [String] Publisher of the image.
sku[RW]
@return [String] SKU of the image.
version[RW]
@return [String] Version of the image.
Public Class Methods
mapper()
click to toggle source
Mapper for ImageReference
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2017-09-01-preview/generated/azure_mgmt_batchai/models/image_reference.rb, line 32 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'ImageReference', type: { name: 'Composite', class_name: 'ImageReference', 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' } }, version: { client_side_validation: true, required: false, serialized_name: 'version', type: { name: 'String' } } } } } end