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