Skip to content

Commit f133e5d

Browse files
committed
add placeholder implementations of workflow rule rpcs
1 parent 06a8212 commit f133e5d

1 file changed

Lines changed: 26 additions & 1 deletion

File tree

client/src/raw.rs

Lines changed: 26 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -836,7 +836,7 @@ proxier! {
836836
|r| {
837837
let labels = namespaced_request!(r);
838838
r.extensions_mut().insert(labels);
839-
}
839+
}
840840
);
841841
(
842842
count_workflow_executions,
@@ -847,6 +847,31 @@ proxier! {
847847
r.extensions_mut().insert(labels);
848848
}
849849
);
850+
(
851+
create_workflow_rule,
852+
CreateWorkflowRuleRequest,
853+
CreateWorkflowRuleResponse
854+
);
855+
(
856+
describe_workflow_rule,
857+
DescribeWorkflowRuleRequest,
858+
DescribeWorkflowRuleResponse
859+
);
860+
(
861+
delete_workflow_rule,
862+
DeleteWorkflowRuleRequest,
863+
DeleteWorkflowRuleResponse
864+
);
865+
(
866+
list_workflow_rules,
867+
ListWorkflowRulesRequest,
868+
ListWorkflowRulesResponse
869+
);
870+
(
871+
trigger_workflow_rule,
872+
TriggerWorkflowRuleRequest,
873+
TriggerWorkflowRuleResponse
874+
);
850875
(
851876
get_search_attributes,
852877
GetSearchAttributesRequest,

0 commit comments

Comments
 (0)