Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions openapi/openapiv2.json
Original file line number Diff line number Diff line change
Expand Up @@ -15864,6 +15864,15 @@
"v1StopBatchOperationResponse": {
"type": "object"
},
"v1StorageDriverInfo": {
"type": "object",
"properties": {
"type": {
"type": "string",
"description": "The type of the driver, required."
}
}
},
"v1StructuredCalendarSpec": {
"type": "object",
"properties": {
Expand Down Expand Up @@ -16889,6 +16898,14 @@
"$ref": "#/definitions/v1PluginInfo"
},
"description": "Plugins currently in use by this SDK."
},
"drivers": {
"type": "array",
"items": {
"type": "object",
"$ref": "#/definitions/v1StorageDriverInfo"
},
"description": "Storage drivers in use by this SDK."
}
},
"description": "Worker info message, contains information about the worker and its current state.\nAll information is provided by the worker itself."
Expand Down
11 changes: 11 additions & 0 deletions openapi/openapiv3.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14042,6 +14042,12 @@ components:
StopBatchOperationResponse:
type: object
properties: {}
StorageDriverInfo:
type: object
properties:
type:
type: string
description: The type of the driver, required.
StructuredCalendarSpec:
type: object
properties:
Expand Down Expand Up @@ -15515,6 +15521,11 @@ components:
items:
$ref: '#/components/schemas/PluginInfo'
description: Plugins currently in use by this SDK.
drivers:
type: array
items:
$ref: '#/components/schemas/StorageDriverInfo'
description: Storage drivers in use by this SDK.
description: |-
Worker info message, contains information about the worker and its current state.
All information is provided by the worker itself.
Expand Down
8 changes: 8 additions & 0 deletions temporal/api/worker/v1/message.proto
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,9 @@ message WorkerHeartbeat {

// Plugins currently in use by this SDK.
repeated PluginInfo plugins = 23;

// Storage drivers in use by this SDK.
repeated StorageDriverInfo drivers = 24;
}

message WorkerInfo {
Expand All @@ -139,3 +142,8 @@ message PluginInfo {
// The version of the plugin, may be empty.
string version = 2;
}

message StorageDriverInfo {
// The type of the driver, required.
string type = 1;
}
Loading