Show / Hide Table of Contents

Class PipelineDataflowStepDetails

The type of step where the dataflow application is pre-created by the user.

Inheritance
object
PipelineStepDetails
PipelineDataflowStepDetails
Inherited Members
PipelineStepDetails.StepName
PipelineStepDetails.Description
PipelineStepDetails.DependsOn
PipelineStepDetails.StepConfigurationDetails
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
public class PipelineDataflowStepDetails : PipelineStepDetails

Properties

ApplicationId

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

The OCID of the dataflow application to be used as a step.

Remarks

Required

StepDataflowConfigurationDetails

Declaration
[JsonProperty(PropertyName = "stepDataflowConfigurationDetails")]
public PipelineDataflowConfigurationDetails StepDataflowConfigurationDetails { get; set; }
Property Value
Type Description
PipelineDataflowConfigurationDetails
In this article
Back to top