deployprogress
This commit is contained in:
@ -5,6 +5,7 @@ import "protos/empty.proto";
|
||||
service Operation {
|
||||
rpc Query(stream OperationQueryRequest) returns (stream OperationQueryResponse) {}
|
||||
rpc Refresh(OperationQueryRequest) returns (Empty) {}
|
||||
rpc ReportDeployingProgress(DeployingProgress) returns (Empty) {}
|
||||
}
|
||||
|
||||
message VersionAndArgs {
|
||||
@ -42,4 +43,13 @@ message ProcessDescription {
|
||||
message OperationQueryResponse {
|
||||
string operation = 1;
|
||||
map<string, string> args = 2;
|
||||
}
|
||||
|
||||
message DeployingProgress {
|
||||
string hostname = 1;
|
||||
string name = 2;
|
||||
string version = 3;
|
||||
string state = 4;
|
||||
int64 progress = 5;
|
||||
int64 total = 6;
|
||||
}
|
||||
Reference in New Issue
Block a user