Skip to content

Commit fd35d7a

Browse files
committed
add client identity to update-metadata request
1 parent e1251ac commit fd35d7a

3 files changed

Lines changed: 9 additions & 0 deletions

File tree

openapi/openapiv2.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8275,6 +8275,10 @@
82758275
"type": "string"
82768276
},
82778277
"description": "List of keys to remove from the metadata."
8278+
},
8279+
"identity": {
8280+
"type": "string",
8281+
"description": "Optional. The identity of the client who initiated this request."
82788282
}
82798283
},
82808284
"description": "Used to update the user-defined metadata of a Worker Deployment Version."

openapi/openapiv3.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11944,6 +11944,9 @@ components:
1194411944
items:
1194511945
type: string
1194611946
description: List of keys to remove from the metadata.
11947+
identity:
11948+
type: string
11949+
description: Optional. The identity of the client who initiated this request.
1194711950
description: Used to update the user-defined metadata of a Worker Deployment Version.
1194811951
UpdateWorkerDeploymentVersionMetadataResponse:
1194911952
type: object

temporal/api/workflowservice/v1/request_response.proto

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2212,6 +2212,8 @@ message UpdateWorkerDeploymentVersionMetadataRequest {
22122212
map<string, temporal.api.common.v1.Payload> upsert_entries = 3;
22132213
// List of keys to remove from the metadata.
22142214
repeated string remove_entries = 4;
2215+
// Optional. The identity of the client who initiated this request.
2216+
string identity = 6;
22152217
}
22162218

22172219
message UpdateWorkerDeploymentVersionMetadataResponse {

0 commit comments

Comments
 (0)