Skip to content

Commit c3779da

Browse files
authored
Fairness Keys & Weights (#322)
1 parent 248dc46 commit c3779da

File tree

29 files changed

+583
-163
lines changed

29 files changed

+583
-163
lines changed

temporalio/Cargo.lock

Lines changed: 135 additions & 125 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

temporalio/ext/sdk-core

Submodule sdk-core updated 46 files

temporalio/ext/src/client_rpc_generated.rs

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,9 @@ impl Client {
115115
WorkflowService,
116116
execute_multi_operation
117117
),
118+
"fetch_worker_config" => {
119+
rpc_call!(self, callback, call, WorkflowService, fetch_worker_config)
120+
}
118121
"get_cluster_info" => {
119122
rpc_call!(self, callback, call, WorkflowService, get_cluster_info)
120123
}
@@ -480,13 +483,23 @@ impl Client {
480483
"update_schedule" => {
481484
rpc_call!(self, callback, call, WorkflowService, update_schedule)
482485
}
486+
"update_task_queue_config" => rpc_call!(
487+
self,
488+
callback,
489+
call,
490+
WorkflowService,
491+
update_task_queue_config
492+
),
483493
"update_worker_build_id_compatibility" => rpc_call!(
484494
self,
485495
callback,
486496
call,
487497
WorkflowService,
488498
update_worker_build_id_compatibility
489499
),
500+
"update_worker_config" => {
501+
rpc_call!(self, callback, call, WorkflowService, update_worker_config)
502+
}
490503
"update_worker_deployment_version_metadata" => rpc_call!(
491504
self,
492505
callback,
@@ -574,6 +587,9 @@ impl Client {
574587
rpc_call!(self, callback, call, CloudService, add_user_group_member)
575588
}
576589
"create_api_key" => rpc_call!(self, callback, call, CloudService, create_api_key),
590+
"create_connectivity_rule" => {
591+
rpc_call!(self, callback, call, CloudService, create_connectivity_rule)
592+
}
577593
"create_namespace" => {
578594
rpc_call!(self, callback, call, CloudService, create_namespace)
579595
}
@@ -595,6 +611,9 @@ impl Client {
595611
rpc_call!(self, callback, call, CloudService, create_user_group)
596612
}
597613
"delete_api_key" => rpc_call!(self, callback, call, CloudService, delete_api_key),
614+
"delete_connectivity_rule" => {
615+
rpc_call!(self, callback, call, CloudService, delete_connectivity_rule)
616+
}
598617
"delete_namespace" => {
599618
rpc_call!(self, callback, call, CloudService, delete_namespace)
600619
}
@@ -631,6 +650,12 @@ impl Client {
631650
"get_async_operation" => {
632651
rpc_call!(self, callback, call, CloudService, get_async_operation)
633652
}
653+
"get_connectivity_rule" => {
654+
rpc_call!(self, callback, call, CloudService, get_connectivity_rule)
655+
}
656+
"get_connectivity_rules" => {
657+
rpc_call!(self, callback, call, CloudService, get_connectivity_rules)
658+
}
634659
"get_namespace" => rpc_call!(self, callback, call, CloudService, get_namespace),
635660
"get_namespace_export_sink" => rpc_call!(
636661
self,
@@ -705,6 +730,9 @@ impl Client {
705730
CloudService,
706731
update_namespace_export_sink
707732
),
733+
"update_namespace_tags" => {
734+
rpc_call!(self, callback, call, CloudService, update_namespace_tags)
735+
}
708736
"update_nexus_endpoint" => {
709737
rpc_call!(self, callback, call, CloudService, update_nexus_endpoint)
710738
}

temporalio/lib/temporalio/api/batch/v1/message.rb

Lines changed: 4 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

temporalio/lib/temporalio/api/cloud/cloudservice/v1/request_response.rb

Lines changed: 12 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)