You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
helm/_proto/status.proto

18 lines
241 B

syntax = "proto3";
package hapi;
message StatusRequest {
string name = 1
}
message StatusResponseError {
oneof response {
Error = 1
StatusResponse = 2
}
}
message StatusResponse {
Release release = 1;
Status status = 2
}