@@ -297,8 +297,16 @@ message GetPlanOutputRequest {
|
||||
string stage_id = 2;
|
||||
}
|
||||
message GetPlanOutputResponse {
|
||||
string plan_output = 1;
|
||||
string status = 2; // RUNNING, AWAITING_APPROVAL, APPROVED, REJECTED
|
||||
string plan_output = 1; // deprecated: use outputs
|
||||
string status = 2; // RUNNING, AWAITING_APPROVAL, APPROVED, REJECTED
|
||||
repeated PlanDestinationOutput outputs = 3;
|
||||
}
|
||||
|
||||
message PlanDestinationOutput {
|
||||
string destination_id = 1;
|
||||
string destination_name = 2;
|
||||
string plan_output = 3;
|
||||
string status = 4; // SUCCEEDED, FAILED, RUNNING, etc.
|
||||
}
|
||||
|
||||
service ReleaseService {
|
||||
|
||||
Reference in New Issue
Block a user