Show / Hide Table of Contents

Class RuntimePipeline

Runtime pipeline model which holds the runtime metadata of the task executed.

Inheritance
object
RuntimePipeline
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DataintegrationService.Models
Assembly: OCI.DotNetSDK.Dataintegration.dll
Syntax
public class RuntimePipeline

Properties

ParentRuntimeOperatorKey

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

The parent RuntimePipeline's RuntimeOperator key.

Pipeline

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

RuntimeOperators

Declaration
[JsonProperty(PropertyName = "runtimeOperators")]
public List<RuntimeOperator> RuntimeOperators { get; set; }
Property Value
Type Description
List<RuntimeOperator>

A list of RuntimeOperators attached to the RuntimePipeline.

In this article
Back to top