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
5 changes: 3 additions & 2 deletions openapi/openapiv2.json
Original file line number Diff line number Diff line change
Expand Up @@ -14719,7 +14719,7 @@
"description": "provider_validation encapsulates the health signal for validating the compute provider."
}
},
"description": "A Worker Deployment (Deployment, for short) represents all workers serving\na shared set of Task Queues. Typically, a Deployment represents one service or\napplication.\nA Deployment contains multiple Deployment Versions, each representing a different\nversion of workers. (see documentation of WorkerDeploymentVersionInfo)\nDeployment records are created in Temporal server automatically when their\nfirst poller arrives to the server.\nComputeStatus represents compute-related configuration and health checks."
"description": "ComputeStatus represents compute-related configuration and health for a Worker Deployment Version."
},
"v1ConfigMetadata": {
"type": "object",
Expand Down Expand Up @@ -20250,7 +20250,8 @@
"$ref": "#/definitions/v1RoutingConfigUpdateState",
"description": "Indicates whether the routing_config has been fully propagated to all\nrelevant task queues and their partitions."
}
}
},
"description": "A Worker Deployment (Deployment, for short) represents all workers serving\na shared set of Task Queues. Typically, a Deployment represents one service or\napplication.\nA Deployment contains multiple Deployment Versions, each representing a different\nversion of workers. (see documentation of WorkerDeploymentVersionInfo)\nDeployment records are created in Temporal server automatically when their\nfirst poller arrives to the server."
},
"v1WorkerDeploymentOptions": {
"type": "object",
Expand Down
18 changes: 9 additions & 9 deletions openapi/openapiv3.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11118,15 +11118,7 @@ components:
allOf:
- $ref: '#/components/schemas/ComputeStatus_ProviderValidationStatus'
description: provider_validation encapsulates the health signal for validating the compute provider.
description: |-
A Worker Deployment (Deployment, for short) represents all workers serving
a shared set of Task Queues. Typically, a Deployment represents one service or
application.
A Deployment contains multiple Deployment Versions, each representing a different
version of workers. (see documentation of WorkerDeploymentVersionInfo)
Deployment records are created in Temporal server automatically when their
first poller arrives to the server.
ComputeStatus represents compute-related configuration and health checks.
description: ComputeStatus represents compute-related configuration and health for a Worker Deployment Version.
ComputeStatus_ProviderValidationStatus:
type: object
properties:
Expand Down Expand Up @@ -18529,6 +18521,14 @@ components:
Indicates whether the routing_config has been fully propagated to all
relevant task queues and their partitions.
format: enum
description: |-
A Worker Deployment (Deployment, for short) represents all workers serving
a shared set of Task Queues. Typically, a Deployment represents one service or
application.
A Deployment contains multiple Deployment Versions, each representing a different
version of workers. (see documentation of WorkerDeploymentVersionInfo)
Deployment records are created in Temporal server automatically when their
first poller arrives to the server.
WorkerDeploymentInfo_WorkerDeploymentVersionSummary:
type: object
properties:
Expand Down
16 changes: 8 additions & 8 deletions temporal/api/deployment/v1/message.proto
Original file line number Diff line number Diff line change
Expand Up @@ -184,14 +184,7 @@ message VersionDrainageInfo {
google.protobuf.Timestamp last_checked_time = 3;
}

// A Worker Deployment (Deployment, for short) represents all workers serving
// a shared set of Task Queues. Typically, a Deployment represents one service or
// application.
// A Deployment contains multiple Deployment Versions, each representing a different
// version of workers. (see documentation of WorkerDeploymentVersionInfo)
// Deployment records are created in Temporal server automatically when their
// first poller arrives to the server.
// ComputeStatus represents compute-related configuration and health checks.
// ComputeStatus represents compute-related configuration and health for a Worker Deployment Version.
message ComputeStatus {
// ProviderValidationStatus represents the result of the most recent
// connectivity check between Temporal and a customer's compute provider.
Expand All @@ -206,6 +199,13 @@ message ComputeStatus {
ProviderValidationStatus provider_validation = 1;
}

// A Worker Deployment (Deployment, for short) represents all workers serving
// a shared set of Task Queues. Typically, a Deployment represents one service or
// application.
// A Deployment contains multiple Deployment Versions, each representing a different
// version of workers. (see documentation of WorkerDeploymentVersionInfo)
// Deployment records are created in Temporal server automatically when their
// first poller arrives to the server.
message WorkerDeploymentInfo {
// Identifies a Worker Deployment. Must be unique within the namespace.
string name = 1;
Expand Down
Loading