1syntax = "proto3";
2
3package xds.core.v3;
4
5import "udpa/annotations/status.proto";
6
7option java_outer_classname = "ContextParamsProto";
8option java_multiple_files = true;
9option java_package = "com.github.udpa.xds.core.v3";
10
11option (udpa.annotations.file_status).work_in_progress = true;
12
13// Additional parameters that can be used to select resource variants. These include any
14// global context parameters, per-resource type client feature capabilities and per-resource
15// type functional attributes. All per-resource type attributes will be `xds.resource.`
16// prefixed and some of these are documented below:
17// `xds.resource.listening_address`: The value is "IP:port" (e.g. "10.1.1.3:8080") which is
18//   the listening address of a Listener. Used in a Listener resource query.
19message ContextParams {
20    map<string, string> params = 1;
21}
22