@@ -179,6 +179,9 @@ async fn client_invoke(mut retry_client: CoreClient, call: RpcCall) -> BridgeRes
179
179
"CreateSchedule" => {
180
180
rpc_call ! ( retry_client, call, create_schedule)
181
181
}
182
+ "CreateWorkflowRule" => {
183
+ rpc_call ! ( retry_client, call, create_workflow_rule)
184
+ }
182
185
"DeleteSchedule" => {
183
186
rpc_call ! ( retry_client, call, delete_schedule)
184
187
}
@@ -191,6 +194,9 @@ async fn client_invoke(mut retry_client: CoreClient, call: RpcCall) -> BridgeRes
191
194
"DeleteWorkflowExecution" => {
192
195
rpc_call ! ( retry_client, call, delete_workflow_execution)
193
196
}
197
+ "DeleteWorkflowRule" => {
198
+ rpc_call ! ( retry_client, call, delete_workflow_rule)
199
+ }
194
200
"DescribeBatchOperation" => {
195
201
rpc_call ! ( retry_client, call, describe_batch_operation)
196
202
}
@@ -210,6 +216,9 @@ async fn client_invoke(mut retry_client: CoreClient, call: RpcCall) -> BridgeRes
210
216
"DescribeWorkflowExecution" => {
211
217
rpc_call ! ( retry_client, call, describe_workflow_execution)
212
218
}
219
+ "DescribeWorkflowRule" => {
220
+ rpc_call ! ( retry_client, call, describe_workflow_rule)
221
+ }
213
222
"ExecuteMultiOperation" => rpc_call ! ( retry_client, call, execute_multi_operation) ,
214
223
"GetClusterInfo" => rpc_call ! ( retry_client, call, get_cluster_info) ,
215
224
"GetCurrentDeployment" => rpc_call ! ( retry_client, call, get_current_deployment) ,
@@ -266,6 +275,9 @@ async fn client_invoke(mut retry_client: CoreClient, call: RpcCall) -> BridgeRes
266
275
"ListWorkflowExecutions" => {
267
276
rpc_call ! ( retry_client, call, list_workflow_executions)
268
277
}
278
+ "ListWorkflowRules" => {
279
+ rpc_call ! ( retry_client, call, list_workflow_rules)
280
+ }
269
281
"PatchSchedule" => {
270
282
rpc_call ! ( retry_client, call, patch_schedule)
271
283
}
@@ -368,6 +380,9 @@ async fn client_invoke(mut retry_client: CoreClient, call: RpcCall) -> BridgeRes
368
380
"TerminateWorkflowExecution" => {
369
381
rpc_call ! ( retry_client, call, terminate_workflow_execution)
370
382
}
383
+ "TriggerWorkflowRule" => {
384
+ rpc_call ! ( retry_client, call, trigger_workflow_rule)
385
+ }
371
386
"UnpauseActivity" => {
372
387
rpc_call ! ( retry_client, call, unpause_activity)
373
388
}
0 commit comments