Skip to content

Commit

Permalink
feat: Add termination reason and timestamp (#2223)
Browse files Browse the repository at this point in the history
  • Loading branch information
karolisg authored Nov 16, 2023
1 parent 7845abf commit 632cb94
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions dozer-types/protos/cloud.proto
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,7 @@ enum DeploymentStatus {
RUNNING = 1;
SUCCESS = 2;
FAILED = 3;
TERMINATED = 4;
}

message ListVersionsRequest { string app_id = 1; }
Expand All @@ -185,6 +186,8 @@ message DeploymentInfo {
DeploymentStatus status = 3;
optional google.protobuf.Timestamp created_at = 4;
optional google.protobuf.Timestamp updated_at = 5;
optional google.protobuf.Timestamp terminated_at = 6;
optional string termination_reason = 7;
}

message GetDeploymentStatusRequest {
Expand Down

0 comments on commit 632cb94

Please sign in to comment.