xds.core.v3.authority.proto Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of akka-grpc-interop-tests_2.13 Show documentation
Show all versions of akka-grpc-interop-tests_2.13 Show documentation
Akka gRPC - Support for building streaming gRPC servers and clients on top of Akka Streams.
syntax = "proto3";
package xds.core.v3;
import "xds/annotations/v3/status.proto";
import "validate/validate.proto";
option java_outer_classname = "AuthorityProto";
option java_multiple_files = true;
option java_package = "com.github.xds.core.v3";
option go_package = "github.com/cncf/xds/go/xds/core/v3";
option (xds.annotations.v3.file_status).work_in_progress = true;
// xDS authority information.
message Authority {
string name = 1 [(validate.rules).string = {min_len: 1}];
// .. space reserved for additional authority addressing information, e.g. for
// resource signing, items such as CA trust chain, cert pinning may be added.
}