Show / Hide Table of Contents

Class DecisionOperator

An operator for chosing pipeline path using a condition

Inheritance
object
Operator
DecisionOperator
Inherited Members
Operator.Key
Operator.ModelVersion
Operator.ParentRef
Operator.Name
Operator.Description
Operator.ObjectVersion
Operator.InputPorts
Operator.OutputPorts
Operator.ObjectStatus
Operator.Identifier
Operator.Parameters
Operator.OpConfigValues
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 DecisionOperator : Operator

Properties

ConfigProviderDelegate

Declaration
[JsonProperty(PropertyName = "configProviderDelegate")]
public ConfigProvider ConfigProviderDelegate { get; set; }
Property Value
Type Description
ConfigProvider

TriggerRule

Declaration
[JsonProperty(PropertyName = "triggerRule")]
[JsonConverter(typeof(ResponseEnumConverter))]
public DecisionOperator.TriggerRuleEnum? TriggerRule { get; set; }
Property Value
Type Description
DecisionOperator.TriggerRuleEnum?

The merge condition. The conditions are ALL_SUCCESS - All the preceeding operators need to be successful. ALL_FAILED - All the preceeding operators should have failed. ALL_COMPLETE - All the preceeding operators should have completed. It could have executed successfully or failed.

In this article
Back to top