Show / Hide Table of Contents

Class PipelineStepUpdateDetails

The details of the step to update.

Inheritance
object
PipelineStepUpdateDetails
PipelineContainerStepUpdateDetails
PipelineCustomScriptStepUpdateDetails
PipelineDataflowStepUpdateDetails
PipelineMLJobStepUpdateDetails
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(PipelineStepUpdateDetailsModelConverter))]
public class PipelineStepUpdateDetails

Properties

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.

Remarks

Required

In this article
Back to top