Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion openapi/openapiv2.json
Original file line number Diff line number Diff line change
Expand Up @@ -16289,7 +16289,7 @@
"properties": {
"deploymentName": {
"type": "string",
"description": "Required. Worker Deployment name."
"description": "Required when `worker_versioning_mode==VERSIONED`."
},
"buildId": {
"type": "string",
Expand Down
2 changes: 1 addition & 1 deletion openapi/openapiv3.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14796,7 +14796,7 @@ components:
properties:
deploymentName:
type: string
description: Required. Worker Deployment name.
description: Required when `worker_versioning_mode==VERSIONED`.
buildId:
type: string
description: |-
Expand Down
2 changes: 1 addition & 1 deletion temporal/api/deployment/v1/message.proto
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import "temporal/api/common/v1/message.proto";
// Worker Deployment options set in SDK that need to be sent to server in every poll.
// Experimental. Worker Deployments are experimental and might significantly change in the future.
message WorkerDeploymentOptions {
// Required. Worker Deployment name.
// Required when `worker_versioning_mode==VERSIONED`.
string deployment_name = 1;
// The Build ID of the worker. Required when `worker_versioning_mode==VERSIONED`, in which case,
// the worker will be part of a Deployment Version.
Expand Down
Loading