class Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ArtifactDeploymentStatusProperties

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 ArtifactDeploymentStatusProperties 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.rb, line 31
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'ArtifactDeploymentStatusProperties',
    type: {
      name: 'Composite',
      class_name: 'ArtifactDeploymentStatusProperties',
      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