vm_test_info.proto (16 lines of code) (raw):
// If you change this file, please run the `proto_gen.sh` script to update the
// generated Go file
syntax = "proto2";
package github_com.googlecloudplatform.cloud_image_tests;
option go_package = "./vm_test_info";
message Vm {
message Test {
optional string test_suite = 1;
optional string test_regex = 2;
}
optional Test test = 1;
optional string name = 2;
optional string id = 3;
optional string zone = 4;
optional string machine_type = 5;
}