Skip to content

Commit 895384d

Browse files
committed
add fields to list and describe
1 parent 801d7ee commit 895384d

3 files changed

Lines changed: 18 additions & 0 deletions

File tree

openapi/openapiv2.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15212,6 +15212,16 @@
1521215212
"reason": {
1521315213
"type": "string",
1521415214
"title": "Reason indicates the reason to stop a operation"
15215+
},
15216+
"query": {
15217+
"type": "string"
15218+
},
15219+
"executions": {
15220+
"type": "array",
15221+
"items": {
15222+
"type": "object",
15223+
"$ref": "#/definitions/v1Execution"
15224+
}
1521515225
}
1521615226
}
1521715227
},

openapi/openapiv3.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11683,6 +11683,12 @@ components:
1168311683
reason:
1168411684
type: string
1168511685
description: Reason indicates the reason to stop a operation
11686+
query:
11687+
type: string
11688+
executions:
11689+
type: array
11690+
items:
11691+
$ref: '#/components/schemas/Execution'
1168611692
DescribeDeploymentResponse:
1168711693
type: object
1168811694
properties:

temporal/api/workflowservice/v1/request_response.proto

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1906,6 +1906,8 @@ message DescribeBatchOperationResponse {
19061906
string identity = 9;
19071907
// Reason indicates the reason to stop a operation
19081908
string reason = 10;
1909+
string query = 11;
1910+
repeated temporal.api.common.v1.Execution executions = 12;
19091911
}
19101912

19111913
message ListBatchOperationsRequest {

0 commit comments

Comments
 (0)