diff --git a/envoy/admin/v2alpha/config_dump.proto b/envoy/admin/v2alpha/config_dump.proto index f81b7a3d..8f78148f 100644 --- a/envoy/admin/v2alpha/config_dump.proto +++ b/envoy/admin/v2alpha/config_dump.proto @@ -17,17 +17,17 @@ import "gogoproto/gogo.proto"; // The :ref:`/config_dump ` admin endpoint uses this wrapper // message to maintain and serve arbitrary configuration information from any component in Envoy. message ConfigDump { - // This map is serialized and dumped in its entirety at the + // This list is serialized and dumped in its entirety at the // :ref:`/config_dump ` endpoint. // - // Keys are a short descriptor of the config object they map to. The following keys (and the - // messages they map to) are currently supported: + // The following configurations are currently supported and will be dumped in the order given + // below: // // * *bootstrap*: :ref:`BootstrapConfigDump ` - // * *listeners*: :ref:`ListenersConfigDump ` // * *clusters*: :ref:`ClustersConfigDump ` + // * *listeners*: :ref:`ListenersConfigDump ` // * *routes*: :ref:`RoutesConfigDump ` - map configs = 1 [(gogoproto.nullable) = false]; + repeated google.protobuf.Any configs = 1 [(gogoproto.nullable) = false]; } // This message describes the bootstrap configuration that Envoy was started with. This includes