Skip to content

Commit 1d82620

Browse files
authored
Add Nexus to GetSystemInfoResponse (#424)
* Add Nexus to GetSystemInfoResponse * regenerate openapi * comment
1 parent 07c7303 commit 1d82620

File tree

3 files changed

+13
-0
lines changed

3 files changed

+13
-0
lines changed

openapi/openapiv2.json

+4
Original file line numberDiff line numberDiff line change
@@ -5137,6 +5137,10 @@
51375137
"countGroupByExecutionStatus": {
51385138
"type": "boolean",
51395139
"title": "True if the server supports count group by execution status"
5140+
},
5141+
"nexus": {
5142+
"type": "boolean",
5143+
"description": "True if the server supports Nexus operations.\nThis flag is dependent both on server version and for Nexus to be enabled via server configuration."
51405144
}
51415145
},
51425146
"description": "System capability details."

openapi/openapiv3.yaml

+5
Original file line numberDiff line numberDiff line change
@@ -3400,6 +3400,11 @@ components:
34003400
countGroupByExecutionStatus:
34013401
type: boolean
34023402
description: True if the server supports count group by execution status
3403+
nexus:
3404+
type: boolean
3405+
description: |-
3406+
True if the server supports Nexus operations.
3407+
This flag is dependent both on server version and for Nexus to be enabled via server configuration.
34033408
description: System capability details.
34043409
GetWorkerBuildIdCompatibilityResponse:
34053410
type: object

temporal/api/workflowservice/v1/request_response.proto

+4
Original file line numberDiff line numberDiff line change
@@ -1008,6 +1008,10 @@ message GetSystemInfoResponse {
10081008
// True if the server supports count group by execution status
10091009
// (-- api-linter: core::0140::prepositions=disabled --)
10101010
bool count_group_by_execution_status = 10;
1011+
1012+
// True if the server supports Nexus operations.
1013+
// This flag is dependent both on server version and for Nexus to be enabled via server configuration.
1014+
bool nexus = 11;
10111015
}
10121016
}
10131017

0 commit comments

Comments
 (0)