helm/_proto/hapi/release/info.proto
Matt Butcher 3ddacb6b4b fix(proto): fix style issues and documentation
This fixes indentation, documentation, and removes unused protobuf
files.
2016-05-10 17:13:16 -06:00

20 lines
415 B
Protocol Buffer

syntax = "proto3";
package hapi.release;
import "google/protobuf/timestamp.proto";
import "hapi/release/status.proto";
option go_package = "release";
// Info describes release information.
message Info {
Status status = 1;
google.protobuf.Timestamp first_deployed = 2;
google.protobuf.Timestamp last_deployed = 3;
// Deleted tracks when this object was deleted.
google.protobuf.Timestamp deleted = 4;
}