RuntimePipeline¶
- 
class oci.data_integration.models.RuntimePipeline(**kwargs)¶
- Bases: - object- Runtime pipeline model which holds the runtime metadata of the task executed. - Methods - __init__(**kwargs)- Initializes a new RuntimePipeline object with values from keyword arguments. - Attributes - parent_runtime_operator_key- Gets the parent_runtime_operator_key of this RuntimePipeline. - pipeline- Gets the pipeline of this RuntimePipeline. - runtime_operators- Gets the runtime_operators of this RuntimePipeline. - 
__init__(**kwargs)¶
- Initializes a new RuntimePipeline object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class): - Parameters: - pipeline (oci.data_integration.models.Pipeline) – The value to assign to the pipeline property of this RuntimePipeline.
- runtime_operators (list[oci.data_integration.models.RuntimeOperator]) – The value to assign to the runtime_operators property of this RuntimePipeline.
- parent_runtime_operator_key (str) – The value to assign to the parent_runtime_operator_key property of this RuntimePipeline.
 
 - 
parent_runtime_operator_key¶
- Gets the parent_runtime_operator_key of this RuntimePipeline. The parent RuntimePipeline’s RuntimeOperator key. - Returns: - The parent_runtime_operator_key of this RuntimePipeline. - Return type: - str 
 - 
pipeline¶
- Gets the pipeline of this RuntimePipeline. - Returns: - The pipeline of this RuntimePipeline. - Return type: - oci.data_integration.models.Pipeline 
 - 
runtime_operators¶
- Gets the runtime_operators of this RuntimePipeline. A list of RuntimeOperators attached to the RuntimePipeline. - Returns: - The runtime_operators of this RuntimePipeline. - Return type: - list[oci.data_integration.models.RuntimeOperator] 
 
-