Class: Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ArtifactDeploymentStatusProperties

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/2016-05-15/generated/azure_mgmt_devtestlabs/models/artifact_deployment_status_properties.rb

Overview

Properties of an artifact deployment.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#artifacts_appliedInteger

successfully applied.

Returns:

  • (Integer)

    The total count of the artifacts that were



20
21
22
# File 'lib/2016-05-15/generated/azure_mgmt_devtestlabs/models/artifact_deployment_status_properties.rb', line 20

def artifacts_applied
  @artifacts_applied
end

#deployment_statusString

Returns The deployment status of the artifact.

Returns:

  • (String)

    The deployment status of the artifact.



16
17
18
# File 'lib/2016-05-15/generated/azure_mgmt_devtestlabs/models/artifact_deployment_status_properties.rb', line 16

def deployment_status
  @deployment_status
end

#total_artifactsInteger

tentatively applied.

Returns:

  • (Integer)

    The total count of the artifacts that were



24
25
26
# File 'lib/2016-05-15/generated/azure_mgmt_devtestlabs/models/artifact_deployment_status_properties.rb', line 24

def total_artifacts
  @total_artifacts
end

Class Method Details

.mapperObject

Mapper for ArtifactDeploymentStatusProperties class as Ruby Hash. This will be used for serialization/deserialization.



31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
# 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