@@ -164,7 +164,7 @@ type (
164
164
165
165
// UpdateWorkflowWithOptionsRequest encapsulates the parameters for
166
166
// sending an update to a workflow execution.
167
- // NOTE: Experimental
167
+ // WARNING: Worker versioning is currently experimental
168
168
UpdateWorkflowWithOptionsRequest = internal.UpdateWorkflowWithOptionsRequest
169
169
170
170
// WorkflowUpdateHandle represents a running or completed workflow
@@ -178,16 +178,37 @@ type (
178
178
GetWorkflowUpdateHandleOptions = internal.GetWorkflowUpdateHandleOptions
179
179
180
180
// UpdateWorkerBuildIdCompatibilityOptions is the input to Client.UpdateWorkerBuildIdCompatibility.
181
- // NOTE: Experimental
181
+ // WARNING: Worker versioning is currently experimental
182
182
UpdateWorkerBuildIdCompatibilityOptions = internal.UpdateWorkerBuildIdCompatibilityOptions
183
183
184
184
// GetWorkerBuildIdCompatibilityOptions is the input to Client.GetWorkerBuildIdCompatibility.
185
- // NOTE: Experimental
185
+ // WARNING: Worker versioning is currently experimental
186
186
GetWorkerBuildIdCompatibilityOptions = internal.GetWorkerBuildIdCompatibilityOptions
187
187
188
188
// WorkerBuildIDVersionSets is the response for Client.GetWorkerBuildIdCompatibility.
189
+ // WARNING: Worker versioning is currently experimental
189
190
WorkerBuildIDVersionSets = internal.WorkerBuildIDVersionSets
190
191
192
+ // BuildIDOpAddNewIDInNewDefaultSet is an operation for UpdateWorkerBuildIdCompatibilityOptions
193
+ // to add a new BuildID in a new default set.
194
+ // WARNING: Worker versioning is currently experimental
195
+ BuildIDOpAddNewIDInNewDefaultSet = internal.BuildIDOpAddNewIDInNewDefaultSet
196
+
197
+ // BuildIDOpAddNewCompatibleVersion is an operation for UpdateWorkerBuildIdCompatibilityOptions
198
+ // to add a new BuildID to an existing compatible set.
199
+ // WARNING: Worker versioning is currently experimental
200
+ BuildIDOpAddNewCompatibleVersion = internal.BuildIDOpAddNewCompatibleVersion
201
+
202
+ // BuildIDOpPromoteSet is an operation for UpdateWorkerBuildIdCompatibilityOptions to promote a
203
+ // set to be the default set by targeting an existing BuildID.
204
+ // WARNING: Worker versioning is currently experimental
205
+ BuildIDOpPromoteSet = internal.BuildIDOpPromoteSet
206
+
207
+ // BuildIDOpPromoteIDWithinSet is an operation for UpdateWorkerBuildIdCompatibilityOptions to
208
+ // promote a BuildID within a set to be the default.
209
+ // WARNING: Worker versioning is currently experimental
210
+ BuildIDOpPromoteIDWithinSet = internal.BuildIDOpPromoteIDWithinSet
211
+
191
212
// Client is the client for starting and getting information about a workflow executions as well as
192
213
// completing activities asynchronously.
193
214
Client interface {
@@ -477,12 +498,12 @@ type (
477
498
// UpdateWorkerBuildIdCompatibility
478
499
// Allows you to update the worker-build-id based version sets for a particular task queue. This is used in
479
500
// conjunction with workers who specify their build id and thus opt into the feature.
480
- // NOTE: Experimental
501
+ // WARNING: Worker versioning is currently experimental
481
502
UpdateWorkerBuildIdCompatibility (ctx context.Context , options * UpdateWorkerBuildIdCompatibilityOptions ) error
482
503
483
504
// GetWorkerBuildIdCompatibility
484
505
// Returns the worker-build-id based version sets for a particular task queue.
485
- // NOTE: Experimental
506
+ // WARNING: Worker versioning is currently experimental
486
507
GetWorkerBuildIdCompatibility (ctx context.Context , options * GetWorkerBuildIdCompatibilityOptions ) (* WorkerBuildIDVersionSets , error )
487
508
488
509
// CheckHealth performs a server health check using the gRPC health check
0 commit comments