Class ArtifactDeploymentStatusPropertiesFragment
Properties of an artifact deployment.
Namespace: System.Dynamic.ExpandoObject
Assembly: Microsoft.Azure.Management.DevTestLabs.dll
Syntax
public class ArtifactDeploymentStatusPropertiesFragment
Constructors
ArtifactDeploymentStatusPropertiesFragment()
Initializes a new instance of the ArtifactDeploymentStatusPropertiesFragment class.
Declaration
public ArtifactDeploymentStatusPropertiesFragment ();
ArtifactDeploymentStatusPropertiesFragment(String, Nullable<Int32>, Nullable<Int32>)
Initializes a new instance of the ArtifactDeploymentStatusPropertiesFragment class.
Declaration
public ArtifactDeploymentStatusPropertiesFragment (string deploymentStatus = null, Nullable<int> artifactsApplied = null, Nullable<int> totalArtifacts = null);
Parameters
|
String
deploymentStatus
The deployment status of the artifact. |
|
Nullable<Int32>
artifactsApplied
The total count of the artifacts that were successfully applied. |
|
Nullable<Int32>
totalArtifacts
The total count of the artifacts that were tentatively applied. |
Properties
ArtifactsApplied
Gets or sets the total count of the artifacts that were successfully applied.
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="artifactsApplied")]
public Nullable<int> ArtifactsApplied { get; set; }
Property Value
|
Nullable<Int32>
|
DeploymentStatus
Gets or sets the deployment status of the artifact.
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="deploymentStatus")]
public string DeploymentStatus { get; set; }
Property Value
|
String
|