Show / Hide Table of Contents

Class BuildRunProgress

The run progress details of a build run.

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

Properties

BuildPipelineStageRunProgress

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

Map of stage OCIDs to build pipeline stage run progress model.

TimeFinished

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

The time the build run finished. Format defined by RFC3339.

TimeStarted

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

The time the build run started. Format defined by RFC3339.

In this article
Back to top