mirror of
https://github.com/helm/helm.git
synced 2026-04-15 21:59:50 -04:00
20 lines
415 B
Protocol Buffer
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;
|
|
}
|