Show / Hide Table of Contents

Class PipelineStepDetails

A step in the pipeline.

Inheritance
object
PipelineStepDetails
PipelineContainerStepDetails
PipelineCustomScriptStepDetails
PipelineDataflowStepDetails
PipelineMLJobStepDetails
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(PipelineStepDetailsModelConverter))]
public class PipelineStepDetails

Properties

DependsOn

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

The list of step names this current step depends on for execution.

Description

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

A short description of the step.

StepConfigurationDetails

Declaration
[JsonProperty(PropertyName = "stepConfigurationDetails")]
public PipelineStepConfigurationDetails StepConfigurationDetails { get; set; }
Property Value
Type Description
PipelineStepConfigurationDetails

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. It must be unique within the pipeline. This is used to create the pipeline DAG.

Remarks

Required

In this article
Back to top