Show / Hide Table of Contents

Class DeployStageExecutionProgress

Details about the execution progress of a stage in a deployment.

Inheritance
object
DeployStageExecutionProgress
ComputeInstanceGroupBlueGreenDeployStageExecutionProgress
ComputeInstanceGroupBlueGreenTrafficShiftDeployStageExecutionProgress
ComputeInstanceGroupCanaryApprovalDeployStageExecutionProgress
ComputeInstanceGroupCanaryDeployStageExecutionProgress
ComputeInstanceGroupCanaryTrafficShiftDeployStageExecutionProgress
ComputeInstanceGroupDeployStageExecutionProgress
FunctionDeployStageExecutionProgress
InvokeFunctionDeployStageExecutionProgress
LoadBalancerTrafficShiftDeployStageExecutionProgress
ManualApprovalDeployStageExecutionProgress
OkeBlueGreenDeployStageExecutionProgress
OkeBlueGreenTrafficShiftDeployStageExecutionProgress
OkeCanaryApprovalDeployStageExecutionProgress
OkeCanaryDeployStageExecutionProgress
OkeCanaryTrafficShiftDeployStageExecutionProgress
OkeDeployStageExecutionProgress
OkeHelmChartDeploymentStageExecutionProgress
ShellDeployStageExecutionProgress
WaitDeployStageExecutionProgress
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
[JsonConverter(typeof(DeployStageExecutionProgressModelConverter))]
public class DeployStageExecutionProgress

Properties

DeployStageDisplayName

Declaration
[JsonProperty(PropertyName = "deployStageDisplayName")]
public string DeployStageDisplayName { get; set; }
Property Value
Type Description
string

Stage display name. Avoid entering confidential information.

DeployStageExecutionProgressDetails

Declaration
[JsonProperty(PropertyName = "deployStageExecutionProgressDetails")]
public List<DeployStageExecutionProgressDetails> DeployStageExecutionProgressDetails { get; set; }
Property Value
Type Description
List<DeployStageExecutionProgressDetails>

Details about stage execution for all the target environments.

DeployStageId

Declaration
[JsonProperty(PropertyName = "deployStageId")]
public string DeployStageId { get; set; }
Property Value
Type Description
string

The OCID of the stage.

DeployStagePredecessors

Declaration
[JsonProperty(PropertyName = "deployStagePredecessors")]
public DeployStagePredecessorCollection DeployStagePredecessors { get; set; }
Property Value
Type Description
DeployStagePredecessorCollection

Status

Declaration
[JsonProperty(PropertyName = "status")]
[JsonConverter(typeof(ResponseEnumConverter))]
public DeployStageExecutionProgress.StatusEnum? Status { get; set; }
Property Value
Type Description
DeployStageExecutionProgress.StatusEnum?

The current state of the stage.

TimeFinished

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

Time the stage finished executing. Format defined by RFC3339.

TimeStarted

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

Time the stage started executing. Format defined by RFC3339.

In this article
Back to top