Show / Hide Table of Contents

Class PipelineStepRun

Detail of each StepRun.

Inheritance
object
PipelineStepRun
PipelineContainerStepRun
PipelineCustomScriptStepRun
PipelineDataflowStepRun
PipelineMLJobStepRun
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DatascienceService.Models
Assembly: OCI.DotNetSDK.Datascience.dll
Syntax
[JsonConverter(typeof(PipelineStepRunModelConverter))]
public class PipelineStepRun

Properties

LifecycleDetails

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

Details of the state of the step run.

LifecycleState

Declaration
[JsonProperty(PropertyName = "lifecycleState")]
[JsonConverter(typeof(ResponseEnumConverter))]
public PipelineStepRun.LifecycleStateEnum? LifecycleState { get; set; }
Property Value
Type Description
PipelineStepRun.LifecycleStateEnum?

The state of the step run.

StepName

Declaration
[Required(ErrorMessage = "StepName is required.")]
[JsonProperty(PropertyName = "stepName")]
public string StepName { get; set; }
Property Value
Type Description
string

The name of the step.

Remarks

Required

TimeFinished

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

The date and time the pipeline step run finshed executing in the timestamp format defined by RFC3339.

TimeStarted

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

The date and time the pipeline step run was started in the timestamp format defined by RFC3339.

Remarks

Required

In this article
Back to top