Class: Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ArtifactDeploymentStatusProperties
- Inherits:
-
Object
- Object
- Azure::DevTestLabs::Mgmt::V2016_05_15::Models::ArtifactDeploymentStatusProperties
- 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
-
#artifacts_applied ⇒ Integer
successfully applied.
-
#deployment_status ⇒ String
The deployment status of the artifact.
-
#total_artifacts ⇒ Integer
tentatively applied.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for ArtifactDeploymentStatusProperties class as Ruby Hash.
Instance Attribute Details
#artifacts_applied ⇒ Integer
successfully applied.
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_status ⇒ String
Returns 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_artifacts ⇒ Integer
tentatively applied.
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
.mapper ⇒ Object
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 |