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
+
},
15279
+
"description": "Information about the language runtime executing the worker."
15280
+
},
15267
15281
"v1Schedule": {
15268
15282
"type": "object",
15269
15283
"properties": {
@@ -16990,6 +17004,10 @@
16990
17004
"$ref": "#/definitions/v1StorageDriverInfo"
16991
17005
},
16992
17006
"description": "Storage drivers in use by this SDK."
17007
+
},
17008
+
"runtimeInfo": {
17009
+
"$ref": "#/definitions/v1RuntimeInfo",
17010
+
"description": "Information about the language runtime executing the worker."
16993
17011
}
16994
17012
},
16995
17013
"description": "Worker info message, contains information about the worker and its current state.\nAll information is provided by the worker itself."
@@ -17091,6 +17109,10 @@
17091
17109
"$ref": "#/definitions/v1StorageDriverInfo"
17092
17110
},
17093
17111
"description": "Storage drivers in use by this SDK."
17112
+
},
17113
+
"runtimeInfo": {
17114
+
"$ref": "#/definitions/v1RuntimeInfo",
17115
+
"description": "Information about the language runtime executing the worker."
17094
17116
}
17095
17117
},
17096
17118
"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
+18Lines changed: 18 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -12792,6 +12792,16 @@ 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
+
description: Information about the language runtime executing the worker.
12795
12805
Schedule:
12796
12806
type: object
12797
12807
properties:
@@ -15590,6 +15600,10 @@ components:
15590
15600
items:
15591
15601
$ref: '#/components/schemas/StorageDriverInfo'
15592
15602
description: Storage drivers in use by this SDK.
15603
+
runtimeInfo:
15604
+
allOf:
15605
+
- $ref: '#/components/schemas/RuntimeInfo'
15606
+
description: Information about the language runtime executing the worker.
15593
15607
description: |-
15594
15608
Worker info message, contains information about the worker and its current state.
15595
15609
All information is provided by the worker itself.
@@ -15692,6 +15706,10 @@ components:
15692
15706
items:
15693
15707
$ref: '#/components/schemas/StorageDriverInfo'
15694
15708
description: Storage drivers in use by this SDK.
15709
+
runtimeInfo:
15710
+
allOf:
15711
+
- $ref: '#/components/schemas/RuntimeInfo'
15712
+
description: Information about the language runtime executing the worker.
15695
15713
description: |-
15696
15714
Limited worker information returned in the list response.
15697
15715
When adding fields here, ensure that it is also added to WorkerInfo (as it carries the full worker information).
0 commit comments