1syntax = "proto3"; 2 3package xds.core.v3; 4 5import "xds/annotations/v3/status.proto"; 6 7import "validate/validate.proto"; 8 9option java_outer_classname = "AuthorityProto"; 10option java_multiple_files = true; 11option java_package = "com.github.xds.core.v3"; 12option go_package = "github.com/cncf/xds/go/xds/core/v3"; 13 14option (xds.annotations.v3.file_status).work_in_progress = true; 15 16// xDS authority information. 17message Authority { 18 string name = 1 [(validate.rules).string = {min_len: 1}]; 19 20 // .. space reserved for additional authority addressing information, e.g. for 21 // resource signing, items such as CA trust chain, cert pinning may be added. 22} 23