Show / Hide Table of Contents

Class RuntimePipelineSummary

The information about RuntimePipeline.

Inheritance
object
RuntimePipelineSummary
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 RuntimePipelineSummary

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