class Azure::ManagedApplications::Mgmt::V2018_06_01::Models::ApplicationArtifact
Managed application artifact.
Attributes
name[RW]
@return [String] The managed application artifact name.
type[RW]
@return [ApplicationArtifactType] The managed application artifact type. Possible values include: 'Template', 'Custom'
uri[RW]
@return [String] The managed application artifact blob uri.
Private Class Methods
mapper()
click to toggle source
Mapper for ApplicationArtifact
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2018-06-01/generated/azure_mgmt_managed_applications/models/application_artifact.rb, line 30 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'ApplicationArtifact', type: { name: 'Composite', class_name: 'ApplicationArtifact', 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: 'ApplicationArtifactType' } } } } } end