@@ -243,7 +243,7 @@ message PollWorkflowTaskQueueRequest {
243
243
string binary_checksum = 4 ;
244
244
// If set, the worker is opting in to versioning and wishes to only
245
245
// receive tasks that are considered compatible with the version capabilities provided.
246
- // Doing so only makes sense in conjunction with the `UpdateWorkerBuildIdOrdering ` API.
246
+ // Doing so only makes sense in conjunction with the `UpdateWorkerBuildIdCompatibility ` API.
247
247
// When this field has a `worker_build_id`, and `binary_checksum` is not
248
248
// set, that value should also be considered as the `binary_checksum`.
249
249
temporal.api.common.v1.WorkerVersionCapabilities worker_version_capabilities = 5 ;
@@ -366,7 +366,7 @@ message PollActivityTaskQueueRequest {
366
366
temporal.api.taskqueue.v1.TaskQueueMetadata task_queue_metadata = 4 ;
367
367
// If set, the worker is opting in to versioning and wishes to only
368
368
// receive tasks that are considered compatible with the capabilities provided.
369
- // Doing so only makes sense in conjunction with the `UpdateWorkerBuildIdOrdering ` API.
369
+ // Doing so only makes sense in conjunction with the `UpdateWorkerBuildIdCompatibility ` API.
370
370
temporal.api.common.v1.WorkerVersionCapabilities worker_version_capabilities = 5 ;
371
371
}
372
372
@@ -1054,10 +1054,10 @@ message ListSchedulesResponse {
1054
1054
}
1055
1055
1056
1056
// (-- api-linter: core::0134::request-mask-required=disabled
1057
- // aip.dev/not-precedent: UpdateWorkerBuildIdOrderingRequest doesn't follow Google API format --)
1057
+ // aip.dev/not-precedent: UpdateWorkerBuildIdCompatibilityRequest doesn't follow Google API format --)
1058
1058
// (-- api-linter: core::0134::request-resource-required=disabled
1059
- // aip.dev/not-precedent: UpdateWorkerBuildIdOrderingRequest RPC doesn't follow Google API format. --)
1060
- message UpdateWorkerBuildIdCompatabilityRequest {
1059
+ // aip.dev/not-precedent: UpdateWorkerBuildIdCompatibilityRequest RPC doesn't follow Google API format. --)
1060
+ message UpdateWorkerBuildIdCompatibilityRequest {
1061
1061
message AddNewCompatibleVersion {
1062
1062
// A new id to be added to an existing compatible set.
1063
1063
string new_build_id = 1 ;
@@ -1099,17 +1099,17 @@ message UpdateWorkerBuildIdCompatabilityRequest {
1099
1099
string promote_build_id_within_set = 6 ;
1100
1100
}
1101
1101
}
1102
- message UpdateWorkerBuildIdCompatabilityResponse {
1102
+ message UpdateWorkerBuildIdCompatibilityResponse {
1103
1103
// The id of the compatible set that the updated version was added to, or exists in. Users don't
1104
1104
// need to understand or care about this value, but it has value for debugging purposes.
1105
1105
string version_set_id = 1 ;
1106
1106
}
1107
1107
1108
1108
// (-- api-linter: core::0134::request-resource-required=disabled
1109
- // aip.dev/not-precedent: GetWorkerBuildIdOrderingRequest RPC doesn't follow Google API format. --)
1110
- message GetWorkerBuildIdCompatabilityRequest {
1109
+ // aip.dev/not-precedent: GetWorkerBuildIdCompatibilityRequest RPC doesn't follow Google API format. --)
1110
+ message GetWorkerBuildIdCompatibilityRequest {
1111
1111
string namespace = 1 ;
1112
- // Must be set, the task queue to interrogate about worker id ordering
1112
+ // Must be set, the task queue to interrogate about worker id compatibility.
1113
1113
string task_queue = 2 ;
1114
1114
// Limits how many compatible sets will be returned. Specify 1 to only return the current
1115
1115
// default major version set. 0 returns all sets.
@@ -1119,9 +1119,9 @@ message GetWorkerBuildIdCompatabilityRequest {
1119
1119
bool include_retirement_candidates = 4 ;
1120
1120
// If set, the response will include information about which versions have open workflows, and
1121
1121
// whether or not there are currently polling workers who are compatible with those versions.
1122
- bool include_poller_compatability = 5 ;
1122
+ bool include_poller_compatibility = 5 ;
1123
1123
}
1124
- message GetWorkerBuildIdCompatabilityResponse {
1124
+ message GetWorkerBuildIdCompatibilityResponse {
1125
1125
// Major version sets, in order from oldest to newest. The last element of the list will always
1126
1126
// be the current default major version. IE: New workflows will target the most recent version
1127
1127
// in that version set.
0 commit comments