You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"description": "Indicates whether a change to the Routing Config has been\npropagated to all relevant Task Queues and their partitions.\n\n - ROUTING_CONFIG_UPDATE_STATE_IN_PROGRESS: Update to the RoutingConfig is currently in progress.\n - ROUTING_CONFIG_UPDATE_STATE_COMPLETED: Update to the RoutingConfig has completed successfully."
15266
15266
},
15267
+
"v1RuntimeInfo": {
15268
+
"type": "object",
15269
+
"properties": {
15270
+
"name": {
15271
+
"type": "string",
15272
+
"title": "Runtime name"
15273
+
},
15274
+
"version": {
15275
+
"type": "string",
15276
+
"title": "Runtime version"
15277
+
},
15278
+
"provider": {
15279
+
"type": "string",
15280
+
"title": "Name of a known provider"
15281
+
}
15282
+
},
15283
+
"description": "Information about the language runtime executing the worker."
15284
+
},
15267
15285
"v1Schedule": {
15268
15286
"type": "object",
15269
15287
"properties": {
@@ -16990,6 +17008,10 @@
16990
17008
"$ref": "#/definitions/v1StorageDriverInfo"
16991
17009
},
16992
17010
"description": "Storage drivers in use by this SDK."
17011
+
},
17012
+
"runtimeInfo": {
17013
+
"$ref": "#/definitions/v1RuntimeInfo",
17014
+
"description": "Information about the language runtime executing the worker."
16993
17015
}
16994
17016
},
16995
17017
"description": "Worker info message, contains information about the worker and its current state.\nAll information is provided by the worker itself."
@@ -17091,6 +17113,10 @@
17091
17113
"$ref": "#/definitions/v1StorageDriverInfo"
17092
17114
},
17093
17115
"description": "Storage drivers in use by this SDK."
17116
+
},
17117
+
"runtimeInfo": {
17118
+
"$ref": "#/definitions/v1RuntimeInfo",
17119
+
"description": "Information about the language runtime executing the worker."
17094
17120
}
17095
17121
},
17096
17122
"description": "Limited worker information returned in the list response.\nWhen adding fields here, ensure that it is also added to WorkerInfo (as it carries the full worker information)."
Copy file name to clipboardExpand all lines: openapi/openapiv3.yaml
+21Lines changed: 21 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -12792,6 +12792,19 @@ components:
12792
12792
revisionNumber:
12793
12793
type: string
12794
12794
description: "Monotonically increasing value which is incremented on every mutation \n to any field of this message to achieve eventual consistency between task queues and their partitions."
12795
+
RuntimeInfo:
12796
+
type: object
12797
+
properties:
12798
+
name:
12799
+
type: string
12800
+
description: Runtime name
12801
+
version:
12802
+
type: string
12803
+
description: Runtime version
12804
+
provider:
12805
+
type: string
12806
+
description: Name of a known provider
12807
+
description: Information about the language runtime executing the worker.
12795
12808
Schedule:
12796
12809
type: object
12797
12810
properties:
@@ -15590,6 +15603,10 @@ components:
15590
15603
items:
15591
15604
$ref: '#/components/schemas/StorageDriverInfo'
15592
15605
description: Storage drivers in use by this SDK.
15606
+
runtimeInfo:
15607
+
allOf:
15608
+
- $ref: '#/components/schemas/RuntimeInfo'
15609
+
description: Information about the language runtime executing the worker.
15593
15610
description: |-
15594
15611
Worker info message, contains information about the worker and its current state.
15595
15612
All information is provided by the worker itself.
@@ -15692,6 +15709,10 @@ components:
15692
15709
items:
15693
15710
$ref: '#/components/schemas/StorageDriverInfo'
15694
15711
description: Storage drivers in use by this SDK.
15712
+
runtimeInfo:
15713
+
allOf:
15714
+
- $ref: '#/components/schemas/RuntimeInfo'
15715
+
description: Information about the language runtime executing the worker.
15695
15716
description: |-
15696
15717
Limited worker information returned in the list response.
15697
15718
When adding fields here, ensure that it is also added to WorkerInfo (as it carries the full worker information).
0 commit comments