github.com/darkowlzz/helm@v2.5.1-0.20171213183701-6707fe0468d4+incompatible/_proto/hapi/release/test_run.proto (about) 1 2 // Copyright 2016 The Kubernetes Authors All rights reserved. 3 // 4 // Licensed under the Apache License, Version 2.0 (the "License"); 5 // you may not use this file except in compliance with the License. 6 // You may obtain a copy of the License at 7 // 8 // http://www.apache.org/licenses/LICENSE-2.0 9 // 10 // Unless required by applicable law or agreed to in writing, software 11 // distributed under the License is distributed on an "AS IS" BASIS, 12 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 // See the License for the specific language governing permissions and 14 // limitations under the License. 15 16 syntax = "proto3"; 17 18 package hapi.release; 19 20 import "google/protobuf/timestamp.proto"; 21 22 option go_package = "release"; 23 24 message TestRun { 25 enum Status { 26 UNKNOWN = 0; 27 SUCCESS = 1; 28 FAILURE = 2; 29 RUNNING = 3; 30 } 31 32 string name = 1; 33 Status status = 2; 34 string info = 3; 35 google.protobuf.Timestamp started_at = 4; 36 google.protobuf.Timestamp completed_at = 5; 37 }