Show / Hide Table of Contents

Class DeployStageExecutionProgressDetails

Details about stage execution for each target environment.

Inheritance
object
DeployStageExecutionProgressDetails
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 DeployStageExecutionProgressDetails

Properties

RollbackSteps

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

Details about all the rollback steps for one target environment.

Steps

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

Details about all the steps for one target environment.

TargetGroup

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

Group for the target environment for example, the batch number for an Instance Group deployment.

TargetId

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

The function ID, instance ID or the cluster ID. For Wait stage it will be the stage ID.

In this article
Back to top