@@ -39,7 +39,7 @@ message ConfigDump {
3939// the static portions of an Envoy configuration by reusing the output as the bootstrap
4040// configuration for another Envoy.
4141message BootstrapConfigDump {
42- envoy. config.bootstrap.v2.Bootstrap bootstrap = 1 ;
42+ config.bootstrap.v2.Bootstrap bootstrap = 1 ;
4343
4444 // The timestamp when the BootstrapConfig was last updated.
4545 google.protobuf.Timestamp last_updated = 2 ;
@@ -48,16 +48,12 @@ message BootstrapConfigDump {
4848// Envoy's listener manager fills this message with all currently known listeners. Listener
4949// configuration information can be used to recreate an Envoy configuration by populating all
5050// listeners as static listeners or by returning them in a LDS response.
51+ // [#next-free-field: 6]
5152message ListenersConfigDump {
52- // This is the :ref:`version_info <envoy_api_field_DiscoveryResponse.version_info>` in the
53- // last processed LDS discovery response. If there are only static bootstrap listeners, this field
54- // will be "".
55- string version_info = 1 ;
56-
5753 // Describes a statically loaded listener.
5854 message StaticListener {
5955 // The listener config.
60- envoy. api.v2.Listener listener = 1 ;
56+ api.v2.Listener listener = 1 ;
6157
6258 // The timestamp when the Listener was last updated.
6359 google.protobuf.Timestamp last_updated = 2 ;
@@ -72,12 +68,17 @@ message ListenersConfigDump {
7268 string version_info = 1 ;
7369
7470 // The listener config.
75- envoy. api.v2.Listener listener = 2 ;
71+ api.v2.Listener listener = 2 ;
7672
7773 // The timestamp when the Listener was last updated.
7874 google.protobuf.Timestamp last_updated = 3 ;
7975 }
8076
77+ // This is the :ref:`version_info <envoy_api_field_DiscoveryResponse.version_info>` in the
78+ // last processed LDS discovery response. If there are only static bootstrap listeners, this field
79+ // will be "".
80+ string version_info = 1 ;
81+
8182 // The statically loaded listener configs.
8283 repeated StaticListener static_listeners = 2 ;
8384
@@ -102,15 +103,10 @@ message ListenersConfigDump {
102103// configuration information can be used to recreate an Envoy configuration by populating all
103104// clusters as static clusters or by returning them in a CDS response.
104105message ClustersConfigDump {
105- // This is the :ref:`version_info <envoy_api_field_DiscoveryResponse.version_info>` in the
106- // last processed CDS discovery response. If there are only static bootstrap clusters, this field
107- // will be "".
108- string version_info = 1 ;
109-
110106 // Describes a statically loaded cluster.
111107 message StaticCluster {
112108 // The cluster config.
113- envoy. api.v2.Cluster cluster = 1 ;
109+ api.v2.Cluster cluster = 1 ;
114110
115111 // The timestamp when the Cluster was last updated.
116112 google.protobuf.Timestamp last_updated = 2 ;
@@ -125,12 +121,17 @@ message ClustersConfigDump {
125121 string version_info = 1 ;
126122
127123 // The cluster config.
128- envoy. api.v2.Cluster cluster = 2 ;
124+ api.v2.Cluster cluster = 2 ;
129125
130126 // The timestamp when the Cluster was last updated.
131127 google.protobuf.Timestamp last_updated = 3 ;
132128 }
133129
130+ // This is the :ref:`version_info <envoy_api_field_DiscoveryResponse.version_info>` in the
131+ // last processed CDS discovery response. If there are only static bootstrap clusters, this field
132+ // will be "".
133+ string version_info = 1 ;
134+
134135 // The statically loaded cluster configs.
135136 repeated StaticCluster static_clusters = 2 ;
136137
@@ -153,7 +154,7 @@ message ClustersConfigDump {
153154message RoutesConfigDump {
154155 message StaticRouteConfig {
155156 // The route config.
156- envoy. api.v2.RouteConfiguration route_config = 1 ;
157+ api.v2.RouteConfiguration route_config = 1 ;
157158
158159 // The timestamp when the Route was last updated.
159160 google.protobuf.Timestamp last_updated = 2 ;
@@ -166,7 +167,7 @@ message RoutesConfigDump {
166167 string version_info = 1 ;
167168
168169 // The route config.
169- envoy. api.v2.RouteConfiguration route_config = 2 ;
170+ api.v2.RouteConfiguration route_config = 2 ;
170171
171172 // The timestamp when the Route was last updated.
172173 google.protobuf.Timestamp last_updated = 3 ;
@@ -189,7 +190,7 @@ message ScopedRoutesConfigDump {
189190 string name = 1 ;
190191
191192 // The scoped route configurations.
192- repeated envoy. api.v2.ScopedRouteConfiguration scoped_route_configs = 2 ;
193+ repeated api.v2.ScopedRouteConfiguration scoped_route_configs = 2 ;
193194
194195 // The timestamp when the scoped route config set was last updated.
195196 google.protobuf.Timestamp last_updated = 3 ;
@@ -205,7 +206,7 @@ message ScopedRoutesConfigDump {
205206 string version_info = 2 ;
206207
207208 // The scoped route configurations.
208- repeated envoy. api.v2.ScopedRouteConfiguration scoped_route_configs = 3 ;
209+ repeated api.v2.ScopedRouteConfiguration scoped_route_configs = 3 ;
209210
210211 // The timestamp when the scoped route config set was last updated.
211212 google.protobuf.Timestamp last_updated = 4 ;
@@ -234,7 +235,7 @@ message SecretsConfigDump {
234235 // The actual secret information.
235236 // Security sensitive information is redacted (replaced with "[redacted]") for
236237 // private keys and passwords in TLS certificates.
237- envoy. api.v2.auth.Secret secret = 4 ;
238+ api.v2.auth.Secret secret = 4 ;
238239 }
239240
240241 // StaticSecret specifies statically loaded secret in bootstrap.
@@ -248,7 +249,7 @@ message SecretsConfigDump {
248249 // The actual secret information.
249250 // Security sensitive information is redacted (replaced with "[redacted]") for
250251 // private keys and passwords in TLS certificates.
251- envoy. api.v2.auth.Secret secret = 3 ;
252+ api.v2.auth.Secret secret = 3 ;
252253 }
253254
254255 // The statically loaded secrets.
0 commit comments