@@ -188,7 +188,7 @@ type (
188
188
StartWorkflowOptions = internal.StartWorkflowOptions
189
189
190
190
// WithStartWorkflowOperation defines how to start a workflow when using UpdateWithStartWorkflow.
191
- // See [Client.NewWithStartWorkflowOperation] and [Client.UpdateWithStartWorkflow].
191
+ // See [client. Client.NewWithStartWorkflowOperation] and [client. Client.UpdateWithStartWorkflow].
192
192
// NOTE: Experimental
193
193
WithStartWorkflowOperation = internal.WithStartWorkflowOperation
194
194
@@ -299,7 +299,7 @@ type (
299
299
UpdateWorkflowOptions = internal.UpdateWorkflowOptions
300
300
301
301
// UpdateWithStartWorkflowOptions encapsulates the parameters used by UpdateWithStartWorkflow.
302
- // See [Client.UpdateWithStartWorkflow] and [Client.NewWithStartWorkflowOperation].
302
+ // See [client. Client.UpdateWithStartWorkflow] and [client. Client.NewWithStartWorkflowOperation].
303
303
// NOTE: Experimental
304
304
UpdateWithStartWorkflowOptions = internal.UpdateWithStartWorkflowOptions
305
305
@@ -341,49 +341,49 @@ type (
341
341
// NOTE: Experimental
342
342
DeploymentMetadataUpdate = internal.DeploymentMetadataUpdate
343
343
344
- // DeploymentDescribeOptions provides options for [DeploymentClient.Describe].
344
+ // DeploymentDescribeOptions provides options for [internal. DeploymentClient.Describe].
345
345
// NOTE: Experimental
346
346
DeploymentDescribeOptions = internal.DeploymentDescribeOptions
347
347
348
- // DeploymentDescription is the response type for [DeploymentClient.Describe].
348
+ // DeploymentDescription is the response type for [internal. DeploymentClient.Describe].
349
349
// NOTE: Experimental
350
350
DeploymentDescription = internal.DeploymentDescription
351
351
352
- // DeploymentGetReachabilityOptions provides options for [DeploymentClient.GetReachability].
352
+ // DeploymentGetReachabilityOptions provides options for [internal. DeploymentClient.GetReachability].
353
353
// NOTE: Experimental
354
354
DeploymentGetReachabilityOptions = internal.DeploymentGetReachabilityOptions
355
355
356
- // DeploymentGetCurrentOptions provides options for [DeploymentClient.GetCurrent].
356
+ // DeploymentGetCurrentOptions provides options for [internal. DeploymentClient.GetCurrent].
357
357
// NOTE: Experimental
358
358
DeploymentGetCurrentOptions = internal.DeploymentGetCurrentOptions
359
359
360
- // DeploymentGetCurrentResponse is the response type for [DeploymentClient.GetCurrent].
360
+ // DeploymentGetCurrentResponse is the response type for [internal. DeploymentClient.GetCurrent].
361
361
// NOTE: Experimental
362
362
DeploymentGetCurrentResponse = internal.DeploymentGetCurrentResponse
363
363
364
- // DeploymentSetCurrentOptions provides options for [DeploymentClient.SetCurrent].
364
+ // DeploymentSetCurrentOptions provides options for [internal. DeploymentClient.SetCurrent].
365
365
// NOTE: Experimental
366
366
DeploymentSetCurrentOptions = internal.DeploymentSetCurrentOptions
367
367
368
- // DeploymentSetCurrentResponse is the response type for [DeploymentClient.SetCurrent].
368
+ // DeploymentSetCurrentResponse is the response type for [internal. DeploymentClient.SetCurrent].
369
369
// NOTE: Experimental
370
370
DeploymentSetCurrentResponse = internal.DeploymentSetCurrentResponse
371
371
372
372
// DeploymentClient is the server interface to manage deployments.
373
373
// NOTE: Experimental
374
374
DeploymentClient = internal.DeploymentClient
375
375
376
- // UpdateWorkflowExecutionOptionsRequest is a request for [Client.UpdateWorkflowExecutionOptions].
376
+ // UpdateWorkflowExecutionOptionsRequest is a request for [client. Client.UpdateWorkflowExecutionOptions].
377
377
// NOTE: Experimental
378
378
UpdateWorkflowExecutionOptionsRequest = internal.UpdateWorkflowExecutionOptionsRequest
379
379
380
380
// WorkflowExecutionOptions contains a set of properties of an existing workflow
381
- // that can be overriden using [UpdateWorkflowExecutionOptions].
381
+ // that can be overriden using [client.Client. UpdateWorkflowExecutionOptions].
382
382
// NOTE: Experimental
383
383
WorkflowExecutionOptions = internal.WorkflowExecutionOptions
384
384
385
385
// WorkflowExecutionOptionsChanges describes changes to [WorkflowExecutionOptions]
386
- // in the [UpdateWorkflowExecutionOptions] API.
386
+ // in the [client.Client. UpdateWorkflowExecutionOptions] API.
387
387
// NOTE: Experimental
388
388
WorkflowExecutionOptionsChanges = internal.WorkflowExecutionOptionsChanges
389
389
@@ -461,27 +461,27 @@ type (
461
461
// Deprecated: Replaced by the new worker versioning api.
462
462
TaskQueueReachability = internal.TaskQueueReachability
463
463
464
- // DescribeTaskQueueEnhancedOptions is the input to [Client.DescribeTaskQueueEnhanced].
464
+ // DescribeTaskQueueEnhancedOptions is the input to [client. Client.DescribeTaskQueueEnhanced].
465
465
DescribeTaskQueueEnhancedOptions = internal.DescribeTaskQueueEnhancedOptions
466
466
467
467
// TaskQueueVersionSelection is a task queue filter based on versioning.
468
- // It is an optional component of [Client. DescribeTaskQueueEnhancedOptions].
468
+ // It is an optional component of [DescribeTaskQueueEnhancedOptions].
469
469
// WARNING: Worker versioning is currently experimental.
470
470
TaskQueueVersionSelection = internal.TaskQueueVersionSelection
471
471
472
- // TaskQueueDescription is the response to [Client.DescribeTaskQueueEnhanced].
472
+ // TaskQueueDescription is the response to [client. Client.DescribeTaskQueueEnhanced].
473
473
TaskQueueDescription = internal.TaskQueueDescription
474
474
475
475
// TaskQueueVersionInfo includes task queue information per Build ID.
476
- // It is part of [Client. TaskQueueDescription].
476
+ // It is part of [TaskQueueDescription].
477
477
TaskQueueVersionInfo = internal.TaskQueueVersionInfo
478
478
479
479
// TaskQueueTypeInfo specifies task queue information per task type and Build ID.
480
- // It is included in [Client. TaskQueueVersionInfo].
480
+ // It is included in [TaskQueueVersionInfo].
481
481
TaskQueueTypeInfo = internal.TaskQueueTypeInfo
482
482
483
483
// TaskQueuePollerInfo provides information about a worker/client polling a task queue.
484
- // It is used by [Client. TaskQueueTypeInfo].
484
+ // It is used by [TaskQueueTypeInfo].
485
485
TaskQueuePollerInfo = internal.TaskQueuePollerInfo
486
486
487
487
// TaskQueueStats contains statistics about task queue backlog and activity.
@@ -492,18 +492,18 @@ type (
492
492
493
493
// WorkerVersionCapabilities includes a worker's build identifier
494
494
// and whether it is choosing to use the versioning feature.
495
- // It is an optional component of [Client. TaskQueuePollerInfo].
495
+ // It is an optional component of [TaskQueuePollerInfo].
496
496
// WARNING: Worker versioning is currently experimental.
497
497
WorkerVersionCapabilities = internal.WorkerVersionCapabilities
498
498
499
- // UpdateWorkerVersioningRulesOptions is the input to [Client.UpdateWorkerVersioningRules].
499
+ // UpdateWorkerVersioningRulesOptions is the input to [client. Client.UpdateWorkerVersioningRules].
500
500
// WARNING: Worker versioning is currently experimental.
501
501
UpdateWorkerVersioningRulesOptions = internal.UpdateWorkerVersioningRulesOptions
502
502
503
- // VersioningConflictToken is a conflict token to serialize calls to Client.UpdateWorkerVersioningRules.
503
+ // VersioningConflictToken is a conflict token to serialize calls to [client. Client.UpdateWorkerVersioningRules] .
504
504
// An update with an old token fails with `serviceerror.FailedPrecondition`.
505
- // The current token can be obtained with [GetWorkerVersioningRules],
506
- // or returned by a successful [UpdateWorkerVersioningRules].
505
+ // The current token can be obtained with [client.Client. GetWorkerVersioningRules],
506
+ // or returned by a successful [client.Client. UpdateWorkerVersioningRules].
507
507
// WARNING: Worker versioning is currently experimental.
508
508
VersioningConflictToken = internal.VersioningConflictToken
509
509
@@ -590,11 +590,11 @@ type (
590
590
// WARNING: Worker versioning is currently experimental.
591
591
VersioningOperationCommitBuildID = internal.VersioningOperationCommitBuildID
592
592
593
- // GetWorkerVersioningOptions is the input to [Client.GetWorkerVersioningRules].
593
+ // GetWorkerVersioningOptions is the input to [client. Client.GetWorkerVersioningRules].
594
594
// WARNING: Worker versioning is currently experimental.
595
595
GetWorkerVersioningOptions = internal.GetWorkerVersioningOptions
596
596
597
- // WorkerVersioningRules is the response for [Client.GetWorkerVersioningRules].
597
+ // WorkerVersioningRules is the response for [client. Client.GetWorkerVersioningRules].
598
598
// WARNING: Worker versioning is currently experimental.
599
599
WorkerVersioningRules = internal.WorkerVersioningRules
600
600
@@ -677,7 +677,7 @@ type (
677
677
options StartWorkflowOptions , workflow interface {}, workflowArgs ... interface {}) (WorkflowRun , error )
678
678
679
679
// NewWithStartWorkflowOperation returns a WithStartWorkflowOperation for use with UpdateWithStartWorkflow.
680
- // See [Client.UpdateWithStartWorkflow].
680
+ // See [client. Client.UpdateWithStartWorkflow].
681
681
// NOTE: Experimental
682
682
NewWithStartWorkflowOperation (options StartWorkflowOptions , workflow interface {}, args ... interface {}) WithStartWorkflowOperation
683
683
@@ -913,13 +913,13 @@ type (
913
913
// Allows you to update the worker-build-id based version sets for a particular task queue. This is used in
914
914
// conjunction with workers who specify their build id and thus opt into the feature.
915
915
//
916
- // Deprecated: Use [UpdateWorkerVersioningRules] with the versioning api.
916
+ // Deprecated: Use [client.Client. UpdateWorkerVersioningRules] with the versioning api.
917
917
UpdateWorkerBuildIdCompatibility (ctx context.Context , options * UpdateWorkerBuildIdCompatibilityOptions ) error
918
918
919
919
// GetWorkerBuildIdCompatibility
920
920
// Returns the worker-build-id based version sets for a particular task queue.
921
921
//
922
- // Deprecated: Use [GetWorkerVersioningRules] with the versioning api.
922
+ // Deprecated: Use [client.Client. GetWorkerVersioningRules] with the versioning api.
923
923
GetWorkerBuildIdCompatibility (ctx context.Context , options * GetWorkerBuildIdCompatibilityOptions ) (* WorkerBuildIDVersionSets , error )
924
924
925
925
// GetWorkerTaskReachability
@@ -1164,7 +1164,7 @@ var (
1164
1164
)
1165
1165
1166
1166
// NewValue creates a new [converter.EncodedValue] which can be used to decode binary data returned by Temporal. For example:
1167
- // User had Activity.RecordHeartbeat(ctx, "my-heartbeat") and then got response from calling Client.DescribeWorkflowExecution.
1167
+ // User had Activity.RecordHeartbeat(ctx, "my-heartbeat") and then got response from calling [client. Client.DescribeWorkflowExecution] .
1168
1168
// The response contains binary field PendingActivityInfo.HeartbeatDetails,
1169
1169
// which can be decoded by using:
1170
1170
//
@@ -1175,7 +1175,7 @@ func NewValue(data *commonpb.Payloads) converter.EncodedValue {
1175
1175
}
1176
1176
1177
1177
// NewValues creates a new [converter.EncodedValues] which can be used to decode binary data returned by Temporal. For example:
1178
- // User had Activity.RecordHeartbeat(ctx, "my-heartbeat", 123) and then got response from calling Client.DescribeWorkflowExecution.
1178
+ // User had Activity.RecordHeartbeat(ctx, "my-heartbeat", 123) and then got response from calling [client. Client.DescribeWorkflowExecution] .
1179
1179
// The response contains binary field PendingActivityInfo.HeartbeatDetails,
1180
1180
// which can be decoded by using:
1181
1181
//
0 commit comments