Show / Hide Table of Contents

Class BuildPipelineStageRunProgress

The details about the run progress of a stage in a build run.

Inheritance
object
BuildPipelineStageRunProgress
BuildStageRunProgress
DeliverArtifactStageRunProgress
TriggerDeploymentPipelineStageRunProgress
WaitStageRunProgress
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(BuildPipelineStageRunProgressModelConverter))]
public class BuildPipelineStageRunProgress

Properties

BuildPipelineStageId

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

The stage OCID.

BuildPipelineStagePredecessors

Declaration
[JsonProperty(PropertyName = "buildPipelineStagePredecessors")]
public BuildPipelineStagePredecessorCollection BuildPipelineStagePredecessors { get; set; }
Property Value
Type Description
BuildPipelineStagePredecessorCollection

StageDisplayName

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

Build Run display name, which can be renamed and is not necessarily unique. Avoid entering confidential information.

Status

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

The current status of the stage.

TimeFinished

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

The time the stage finished executing. Format defined by RFC3339.

TimeStarted

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

The time the stage started executing. Format defined by RFC3339.

In this article
Back to top