Get desktop application:
View/edit binary Protocol Buffers messages
This message can be used to support per route config approach later even though the Istio doesn't support that so far.
Used in:
The field extractions for requests. The key is the field path within the grpc request. For example, we can define ``foo.bar.name`` if we want to extract ``Request.foo.bar.name``. .. code-block:: proto message Request { Foo foo = 1; } message Foo { Bar bar = 1; } message Bar { string name = 1; }
The proto descriptor set binary for the gRPC services. It could be passed by a local file through ``Datasource.filename`` or embedded in the ``Datasource.inline_bytes``.
Specify the extraction info. The key is the fully qualified gRPC method name. ``${package}.${Service}.${Method}``, like ``endpoints.examples.bookstore.BookStore.GetShelf`` The value is the field extractions for individual gRPC method.
Used in:
The dynamic metadata namespace. If empty, "envoy.filters.http.grpc_field_extraction" will be used by default. Unimplemented. Uses "envoy.filters.http.grpc_field_extraction" for now.