public interface GrpcJsonTranscoderOrBuilder
extends com.google.protobuf.MessageOrBuilder
| Modifier and Type | Method and Description |
|---|---|
GrpcJsonTranscoder.DescriptorSetCase |
getDescriptorSetCase() |
String |
getIgnoredQueryParameters(int index)
A list of query parameters to be ignored for transcoding method mapping.
|
com.google.protobuf.ByteString |
getIgnoredQueryParametersBytes(int index)
A list of query parameters to be ignored for transcoding method mapping.
|
int |
getIgnoredQueryParametersCount()
A list of query parameters to be ignored for transcoding method mapping.
|
List<String> |
getIgnoredQueryParametersList()
A list of query parameters to be ignored for transcoding method mapping.
|
boolean |
getMatchIncomingRequestRoute()
Whether to keep the incoming request route after the outgoing headers have been transformed to
the match the upstream gRPC service.
|
GrpcJsonTranscoder.PrintOptions |
getPrintOptions()
Control options for response JSON.
|
GrpcJsonTranscoder.PrintOptionsOrBuilder |
getPrintOptionsOrBuilder()
Control options for response JSON.
|
String |
getProtoDescriptor()
Supplies the filename of
:ref:`the proto descriptor set <config_grpc_json_generate_proto_descriptor_set>` for the gRPC
services.
|
com.google.protobuf.ByteString |
getProtoDescriptorBin()
Supplies the binary content of
:ref:`the proto descriptor set <config_grpc_json_generate_proto_descriptor_set>` for the gRPC
services.
|
com.google.protobuf.ByteString |
getProtoDescriptorBytes()
Supplies the filename of
:ref:`the proto descriptor set <config_grpc_json_generate_proto_descriptor_set>` for the gRPC
services.
|
String |
getServices(int index)
A list of strings that
supplies the fully qualified service names (i.e.
|
com.google.protobuf.ByteString |
getServicesBytes(int index)
A list of strings that
supplies the fully qualified service names (i.e.
|
int |
getServicesCount()
A list of strings that
supplies the fully qualified service names (i.e.
|
List<String> |
getServicesList()
A list of strings that
supplies the fully qualified service names (i.e.
|
boolean |
hasPrintOptions()
Control options for response JSON.
|
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneofString getProtoDescriptor()
Supplies the filename of :ref:`the proto descriptor set <config_grpc_json_generate_proto_descriptor_set>` for the gRPC services.
string proto_descriptor = 1;com.google.protobuf.ByteString getProtoDescriptorBytes()
Supplies the filename of :ref:`the proto descriptor set <config_grpc_json_generate_proto_descriptor_set>` for the gRPC services.
string proto_descriptor = 1;com.google.protobuf.ByteString getProtoDescriptorBin()
Supplies the binary content of :ref:`the proto descriptor set <config_grpc_json_generate_proto_descriptor_set>` for the gRPC services.
bytes proto_descriptor_bin = 4;List<String> getServicesList()
A list of strings that supplies the fully qualified service names (i.e. "package_name.service_name") that the transcoder will translate. If the service name doesn't exist in ``proto_descriptor``, Envoy will fail at startup. The ``proto_descriptor`` may contain more services than the service names specified here, but they won't be translated.
repeated string services = 2 [(.validate.rules) = { ... }int getServicesCount()
A list of strings that supplies the fully qualified service names (i.e. "package_name.service_name") that the transcoder will translate. If the service name doesn't exist in ``proto_descriptor``, Envoy will fail at startup. The ``proto_descriptor`` may contain more services than the service names specified here, but they won't be translated.
repeated string services = 2 [(.validate.rules) = { ... }String getServices(int index)
A list of strings that supplies the fully qualified service names (i.e. "package_name.service_name") that the transcoder will translate. If the service name doesn't exist in ``proto_descriptor``, Envoy will fail at startup. The ``proto_descriptor`` may contain more services than the service names specified here, but they won't be translated.
repeated string services = 2 [(.validate.rules) = { ... }com.google.protobuf.ByteString getServicesBytes(int index)
A list of strings that supplies the fully qualified service names (i.e. "package_name.service_name") that the transcoder will translate. If the service name doesn't exist in ``proto_descriptor``, Envoy will fail at startup. The ``proto_descriptor`` may contain more services than the service names specified here, but they won't be translated.
repeated string services = 2 [(.validate.rules) = { ... }boolean hasPrintOptions()
Control options for response JSON. These options are passed directly to `JsonPrintOptions <https://developers.google.com/protocol-buffers/docs/reference/cpp/ google.protobuf.util.json_util#JsonPrintOptions>`_.
.envoy.config.filter.http.transcoder.v2.GrpcJsonTranscoder.PrintOptions print_options = 3;GrpcJsonTranscoder.PrintOptions getPrintOptions()
Control options for response JSON. These options are passed directly to `JsonPrintOptions <https://developers.google.com/protocol-buffers/docs/reference/cpp/ google.protobuf.util.json_util#JsonPrintOptions>`_.
.envoy.config.filter.http.transcoder.v2.GrpcJsonTranscoder.PrintOptions print_options = 3;GrpcJsonTranscoder.PrintOptionsOrBuilder getPrintOptionsOrBuilder()
Control options for response JSON. These options are passed directly to `JsonPrintOptions <https://developers.google.com/protocol-buffers/docs/reference/cpp/ google.protobuf.util.json_util#JsonPrintOptions>`_.
.envoy.config.filter.http.transcoder.v2.GrpcJsonTranscoder.PrintOptions print_options = 3;boolean getMatchIncomingRequestRoute()
Whether to keep the incoming request route after the outgoing headers have been transformed to the match the upstream gRPC service. Note: This means that routes for gRPC services that are not transcoded cannot be used in combination with *match_incoming_request_route*.
bool match_incoming_request_route = 5;List<String> getIgnoredQueryParametersList()
A list of query parameters to be ignored for transcoding method mapping.
By default, the transcoder filter will not transcode a request if there are any
unknown/invalid query parameters.
Example :
.. code-block:: proto
service Bookstore {
rpc GetShelf(GetShelfRequest) returns (Shelf) {
option (google.api.http) = {
get: "/shelves/{shelf}"
};
}
}
message GetShelfRequest {
int64 shelf = 1;
}
message Shelf {}
The request ``/shelves/100?foo=bar`` will not be mapped to ``GetShelf``` because variable
binding for ``foo`` is not defined. Adding ``foo`` to ``ignored_query_parameters`` will allow
the same request to be mapped to ``GetShelf``.
repeated string ignored_query_parameters = 6;int getIgnoredQueryParametersCount()
A list of query parameters to be ignored for transcoding method mapping.
By default, the transcoder filter will not transcode a request if there are any
unknown/invalid query parameters.
Example :
.. code-block:: proto
service Bookstore {
rpc GetShelf(GetShelfRequest) returns (Shelf) {
option (google.api.http) = {
get: "/shelves/{shelf}"
};
}
}
message GetShelfRequest {
int64 shelf = 1;
}
message Shelf {}
The request ``/shelves/100?foo=bar`` will not be mapped to ``GetShelf``` because variable
binding for ``foo`` is not defined. Adding ``foo`` to ``ignored_query_parameters`` will allow
the same request to be mapped to ``GetShelf``.
repeated string ignored_query_parameters = 6;String getIgnoredQueryParameters(int index)
A list of query parameters to be ignored for transcoding method mapping.
By default, the transcoder filter will not transcode a request if there are any
unknown/invalid query parameters.
Example :
.. code-block:: proto
service Bookstore {
rpc GetShelf(GetShelfRequest) returns (Shelf) {
option (google.api.http) = {
get: "/shelves/{shelf}"
};
}
}
message GetShelfRequest {
int64 shelf = 1;
}
message Shelf {}
The request ``/shelves/100?foo=bar`` will not be mapped to ``GetShelf``` because variable
binding for ``foo`` is not defined. Adding ``foo`` to ``ignored_query_parameters`` will allow
the same request to be mapped to ``GetShelf``.
repeated string ignored_query_parameters = 6;com.google.protobuf.ByteString getIgnoredQueryParametersBytes(int index)
A list of query parameters to be ignored for transcoding method mapping.
By default, the transcoder filter will not transcode a request if there are any
unknown/invalid query parameters.
Example :
.. code-block:: proto
service Bookstore {
rpc GetShelf(GetShelfRequest) returns (Shelf) {
option (google.api.http) = {
get: "/shelves/{shelf}"
};
}
}
message GetShelfRequest {
int64 shelf = 1;
}
message Shelf {}
The request ``/shelves/100?foo=bar`` will not be mapped to ``GetShelf``` because variable
binding for ``foo`` is not defined. Adding ``foo`` to ``ignored_query_parameters`` will allow
the same request to be mapped to ``GetShelf``.
repeated string ignored_query_parameters = 6;GrpcJsonTranscoder.DescriptorSetCase getDescriptorSetCase()
Copyright © 2018–2019 The Envoy Project. All rights reserved.