@@ -59,12 +59,23 @@ public CommonDataServiceForAppsSink()
59
59
/// <param name="alternateKeyName">The logical name of the alternate key which will be used when upserting
60
60
/// records. Type: string (or Expression with resultType string).
61
61
/// </param>
62
- public CommonDataServiceForAppsSink ( System . Collections . Generic . IDictionary < string , object > additionalProperties = default ( System . Collections . Generic . IDictionary < string , object > ) , object writeBatchSize = default ( object ) , object writeBatchTimeout = default ( object ) , object sinkRetryCount = default ( object ) , object sinkRetryWait = default ( object ) , object maxConcurrentConnections = default ( object ) , object disableMetricsCollection = default ( object ) , object ignoreNullValues = default ( object ) , object alternateKeyName = default ( object ) )
62
+
63
+ /// <param name="bypassBusinessLogicExecution">Controls the bypass of Dataverse custom business logic. Type: string (or
64
+ /// Expression with resultType string). Type: string (or Expression with
65
+ /// resultType string).
66
+ /// </param>
67
+
68
+ /// <param name="bypassPowerAutomateFlows">Controls the bypass of Power Automate flows. Default is false. Type:
69
+ /// boolean (or Expression with resultType boolean).
70
+ /// </param>
71
+ public CommonDataServiceForAppsSink ( System . Collections . Generic . IDictionary < string , object > additionalProperties = default ( System . Collections . Generic . IDictionary < string , object > ) , object writeBatchSize = default ( object ) , object writeBatchTimeout = default ( object ) , object sinkRetryCount = default ( object ) , object sinkRetryWait = default ( object ) , object maxConcurrentConnections = default ( object ) , object disableMetricsCollection = default ( object ) , object ignoreNullValues = default ( object ) , object alternateKeyName = default ( object ) , object bypassBusinessLogicExecution = default ( object ) , object bypassPowerAutomateFlows = default ( object ) )
63
72
64
73
: base ( additionalProperties , writeBatchSize , writeBatchTimeout , sinkRetryCount , sinkRetryWait , maxConcurrentConnections , disableMetricsCollection )
65
74
{
66
75
this . IgnoreNullValues = ignoreNullValues ;
67
76
this . AlternateKeyName = alternateKeyName ;
77
+ this . BypassBusinessLogicExecution = bypassBusinessLogicExecution ;
78
+ this . BypassPowerAutomateFlows = bypassPowerAutomateFlows ;
68
79
CustomInit ( ) ;
69
80
}
70
81
/// <summary>
@@ -95,6 +106,21 @@ static CommonDataServiceForAppsSink()
95
106
/// </summary>
96
107
[ Newtonsoft . Json . JsonProperty ( PropertyName = "alternateKeyName" ) ]
97
108
public object AlternateKeyName { get ; set ; }
109
+
110
+ /// <summary>
111
+ /// Gets or sets controls the bypass of Dataverse custom business logic. Type:
112
+ /// string (or Expression with resultType string). Type: string (or Expression
113
+ /// with resultType string).
114
+ /// </summary>
115
+ [ Newtonsoft . Json . JsonProperty ( PropertyName = "bypassBusinessLogicExecution" ) ]
116
+ public object BypassBusinessLogicExecution { get ; set ; }
117
+
118
+ /// <summary>
119
+ /// Gets or sets controls the bypass of Power Automate flows. Default is false.
120
+ /// Type: boolean (or Expression with resultType boolean).
121
+ /// </summary>
122
+ [ Newtonsoft . Json . JsonProperty ( PropertyName = "bypassPowerAutomateFlows" ) ]
123
+ public object BypassPowerAutomateFlows { get ; set ; }
98
124
/// <summary>
99
125
/// Gets or sets the write behavior for the operation.
100
126
/// </summary>
0 commit comments