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
12 changes: 12 additions & 0 deletions openapi/openapiv2.json
Original file line number Diff line number Diff line change
Expand Up @@ -6812,6 +6812,18 @@
},
"routingConfig": {
"$ref": "#/definitions/v1RoutingConfig"
},
"latestVersionSummary": {
"$ref": "#/definitions/WorkerDeploymentInfoWorkerDeploymentVersionSummary",
"description": "Summary of the version that was added most recently in the Worker Deployment."
},
"currentVersionSummary": {
"$ref": "#/definitions/WorkerDeploymentInfoWorkerDeploymentVersionSummary",
"description": "Summary of the current version of the Worker Deployment."
},
"rampingVersionSummary": {
"$ref": "#/definitions/WorkerDeploymentInfoWorkerDeploymentVersionSummary",
"description": "Summary of the ramping version of the Worker Deployment."
}
},
"title": "A subset of WorkerDeploymentInfo"
Expand Down
12 changes: 12 additions & 0 deletions openapi/openapiv3.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8251,6 +8251,18 @@ components:
format: date-time
routingConfig:
$ref: '#/components/schemas/RoutingConfig'
latestVersionSummary:
allOf:
- $ref: '#/components/schemas/WorkerDeploymentInfo_WorkerDeploymentVersionSummary'
description: Summary of the version that was added most recently in the Worker Deployment.
currentVersionSummary:
allOf:
- $ref: '#/components/schemas/WorkerDeploymentInfo_WorkerDeploymentVersionSummary'
description: Summary of the current version of the Worker Deployment.
rampingVersionSummary:
allOf:
- $ref: '#/components/schemas/WorkerDeploymentInfo_WorkerDeploymentVersionSummary'
description: Summary of the ramping version of the Worker Deployment.
description: A subset of WorkerDeploymentInfo
ListWorkflowExecutionsResponse:
type: object
Expand Down
6 changes: 6 additions & 0 deletions temporal/api/workflowservice/v1/request_response.proto
Original file line number Diff line number Diff line change
Expand Up @@ -2146,6 +2146,12 @@ message ListWorkerDeploymentsResponse {
string name = 1;
google.protobuf.Timestamp create_time = 2;
temporal.api.deployment.v1.RoutingConfig routing_config = 3;
// Summary of the version that was added most recently in the Worker Deployment.
temporal.api.deployment.v1.WorkerDeploymentInfo.WorkerDeploymentVersionSummary latest_version_summary = 4;
// Summary of the current version of the Worker Deployment.
temporal.api.deployment.v1.WorkerDeploymentInfo.WorkerDeploymentVersionSummary current_version_summary = 5;
// Summary of the ramping version of the Worker Deployment.
temporal.api.deployment.v1.WorkerDeploymentInfo.WorkerDeploymentVersionSummary ramping_version_summary = 6;
}
}

Expand Down
Loading