зеркало из https://github.com/Azure/draft-classic.git
14 строки
507 B
Protocol Buffer
14 строки
507 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package storage;
|
|
|
|
import "google/protobuf/timestamp.proto";
|
|
|
|
// Object is the storage object for a draft applications build history.
|
|
message Object {
|
|
string buildID = 1; // build uuid generated during draft up
|
|
string release = 2; // name of associated helm release
|
|
bytes contextID = 3; // checksum of docker context
|
|
string logs_file_ref = 4; // reference to build logs file
|
|
google.protobuf.Timestamp created_at = 5; // time at which this object was created
|
|
} |