class Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ArtifactInstallPropertiesFragment
Properties of an artifact.
Attributes
artifact_id[RW]
@return [String] The artifact's identifier.
deployment_status_message[RW]
@return [String] The status message from the deployment.
install_time[RW]
@return [DateTime] The time that the artifact starts to install on the virtual machine.
parameters[RW]
@return [Array<ArtifactParameterPropertiesFragment>] The parameters of the artifact.
status[RW]
@return [String] The status of the artifact.
vm_extension_status_message[RW]
@return [String] The status message from the virtual machine extension.
Public Class Methods
mapper()
click to toggle source
Mapper for ArtifactInstallPropertiesFragment
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2016-05-15/generated/azure_mgmt_devtestlabs/models/artifact_install_properties_fragment.rb, line 40 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'ArtifactInstallPropertiesFragment', type: { name: 'Composite', class_name: 'ArtifactInstallPropertiesFragment', model_properties: { artifact_id: { client_side_validation: true, required: false, serialized_name: 'artifactId', type: { name: 'String' } }, parameters: { client_side_validation: true, required: false, serialized_name: 'parameters', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'ArtifactParameterPropertiesFragmentElementType', type: { name: 'Composite', class_name: 'ArtifactParameterPropertiesFragment' } } } }, status: { client_side_validation: true, required: false, serialized_name: 'status', type: { name: 'String' } }, deployment_status_message: { client_side_validation: true, required: false, serialized_name: 'deploymentStatusMessage', type: { name: 'String' } }, vm_extension_status_message: { client_side_validation: true, required: false, serialized_name: 'vmExtensionStatusMessage', type: { name: 'String' } }, install_time: { client_side_validation: true, required: false, serialized_name: 'installTime', type: { name: 'DateTime' } } } } } end