All Downloads are FREE. Search and download functionalities are using the official Maven repository.

olaris.polaris-all.1.7.3.source-code.model.proto Maven / Gradle / Ivy

There is a newer version: 2.0.0.0-RC1
Show newest version
syntax = "proto3";

package v1;

import "google/protobuf/wrappers.proto";

option java_outer_classname="ModelProto";
option java_package="com.tencent.polaris.client.pb";

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;
	}

	enum ValueType {
		TEXT = 0;
		PARAMETER = 1;
		VARIABLE = 2;
	}

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy