Show / Hide Table of Contents

Class DeploymentExecutionProgress

The execution progress details of a deployment.

Inheritance
object
DeploymentExecutionProgress
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DevopsService.Models
Assembly: OCI.DotNetSDK.Devops.dll
Syntax
public class DeploymentExecutionProgress

Properties

DeployStageExecutionProgress

Declaration
[JsonProperty(PropertyName = "deployStageExecutionProgress")]
public Dictionary<string, DeployStageExecutionProgress> DeployStageExecutionProgress { get; set; }
Property Value
Type Description
Dictionary<string, DeployStageExecutionProgress>

Map of stage OCIDs to deploy stage execution progress model.

TimeFinished

Declaration
[JsonProperty(PropertyName = "timeFinished")]
public DateTime? TimeFinished { get; set; }
Property Value
Type Description
DateTime?

Time the deployment is finished. Format defined by RFC3339.

TimeStarted

Declaration
[JsonProperty(PropertyName = "timeStarted")]
public DateTime? TimeStarted { get; set; }
Property Value
Type Description
DateTime?

Time the deployment is started. Format defined by RFC3339.

In this article
Back to top