class Azure::ManagedApplications::Mgmt::V2016_09_01_preview::Models::ApplianceArtifact
Appliance
artifact.
Attributes
name[RW]
@return [String] The appliance artifact name.
type[RW]
@return [ApplianceArtifactType] The the appliance artifact type. Possible values include: 'Template', 'Custom'
uri[RW]
@return [String] The appliance artifact blob uri.
Public Class Methods
mapper()
click to toggle source
Mapper for ApplianceArtifact
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2016-09-01-preview/generated/azure_mgmt_managed_applications/models/appliance_artifact.rb, line 30 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'ApplianceArtifact', type: { name: 'Composite', class_name: 'ApplianceArtifact', model_properties: { name: { client_side_validation: true, required: false, serialized_name: 'name', type: { name: 'String' } }, uri: { client_side_validation: true, required: false, serialized_name: 'uri', type: { name: 'String' } }, type: { client_side_validation: true, required: false, serialized_name: 'type', type: { name: 'Enum', module: 'ApplianceArtifactType' } } } } } end