syntax = "proto3";

package v1;

import "google/protobuf/wrappers.proto";

message Location {
	google.protobuf.StringValue region = 1;	
	google.protobuf.StringValue zone   = 2;	
	google.protobuf.StringValue campus = 3;	
}

message MatchString {
	enum MatchStringType {
		EXACT = 0;
		REGEX = 1;
	}

	MatchStringType type = 1;
	google.protobuf.StringValue value = 2;
}
