class Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ArtifactDeploymentStatusPropertiesFragment
Properties of an artifact deployment.
Attributes
artifacts_applied[RW]
@return [Integer] The total count of the artifacts that were successfully applied.
deployment_status[RW]
@return [String] The deployment status of the artifact.
total_artifacts[RW]
@return [Integer] The total count of the artifacts that were tentatively applied.
Public Class Methods
mapper()
click to toggle source
Mapper for ArtifactDeploymentStatusPropertiesFragment
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2016-05-15/generated/azure_mgmt_devtestlabs/models/artifact_deployment_status_properties_fragment.rb, line 32 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'ArtifactDeploymentStatusPropertiesFragment', type: { name: 'Composite', class_name: 'ArtifactDeploymentStatusPropertiesFragment', model_properties: { deployment_status: { client_side_validation: true, required: false, serialized_name: 'deploymentStatus', type: { name: 'String' } }, artifacts_applied: { client_side_validation: true, required: false, serialized_name: 'artifactsApplied', type: { name: 'Number' } }, total_artifacts: { client_side_validation: true, required: false, serialized_name: 'totalArtifacts', type: { name: 'Number' } } } } } end