// Original file: deps/envoy-api/envoy/config/route/v3/route_components.proto import type { UInt32Value as _google_protobuf_UInt32Value, UInt32Value__Output as _google_protobuf_UInt32Value__Output } from '../../../../google/protobuf/UInt32Value'; import type { Metadata as _envoy_config_core_v3_Metadata, Metadata__Output as _envoy_config_core_v3_Metadata__Output } from '../../../../envoy/config/core/v3/Metadata'; import type { HeaderValueOption as _envoy_config_core_v3_HeaderValueOption, HeaderValueOption__Output as _envoy_config_core_v3_HeaderValueOption__Output } from '../../../../envoy/config/core/v3/HeaderValueOption'; import type { Any as _google_protobuf_Any, Any__Output as _google_protobuf_Any__Output } from '../../../../google/protobuf/Any'; /** * [#next-free-field: 13] */ export interface _envoy_config_route_v3_WeightedCluster_ClusterWeight { /** * Only one of ``name`` and ``cluster_header`` may be specified. * [#next-major-version: Need to add back the validation rule: (validate.rules).string = {min_len: 1}] * Name of the upstream cluster. The cluster must exist in the * :ref:`cluster manager configuration `. */ 'name'?: (string); /** * Only one of ``name`` and ``cluster_header`` may be specified. * [#next-major-version: Need to add back the validation rule: (validate.rules).string = {min_len: 1 }] * Envoy will determine the cluster to route to by reading the value of the * HTTP header named by cluster_header from the request headers. If the * header is not found or the referenced cluster does not exist, Envoy will * return a 404 response. * * .. attention:: * * Internally, Envoy always uses the HTTP/2 ``:authority`` header to represent the HTTP/1 * ``Host`` header. Thus, if attempting to match on ``Host``, match on ``:authority`` instead. * * .. note:: * * If the header appears multiple times only the first value is used. */ 'cluster_header'?: (string); /** * The weight of the cluster. This value is relative to the other clusters' * weights. When a request matches the route, the choice of an upstream cluster * is determined by its weight. The sum of weights across all * entries in the clusters array must be greater than 0, and must not exceed * uint32_t maximal value (4294967295). */ 'weight'?: (_google_protobuf_UInt32Value | null); /** * Optional endpoint metadata match criteria used by the subset load balancer. Only endpoints in * the upstream cluster with metadata matching what is set in this field will be considered for * load balancing. Note that this will be merged with what's provided in * :ref:`RouteAction.metadata_match `, with * values here taking precedence. The filter name should be specified as ``envoy.lb``. */ 'metadata_match'?: (_envoy_config_core_v3_Metadata | null); /** * Specifies a list of headers to be added to requests when this cluster is selected * through the enclosing :ref:`envoy_v3_api_msg_config.route.v3.RouteAction`. * Headers specified at this level are applied before headers from the enclosing * :ref:`envoy_v3_api_msg_config.route.v3.Route`, :ref:`envoy_v3_api_msg_config.route.v3.VirtualHost`, and * :ref:`envoy_v3_api_msg_config.route.v3.RouteConfiguration`. For more information, including details on * header value syntax, see the documentation on :ref:`custom request headers * `. */ 'request_headers_to_add'?: (_envoy_config_core_v3_HeaderValueOption)[]; /** * Specifies a list of HTTP headers that should be removed from each request when * this cluster is selected through the enclosing :ref:`envoy_v3_api_msg_config.route.v3.RouteAction`. */ 'request_headers_to_remove'?: (string)[]; /** * Specifies a list of headers to be added to responses when this cluster is selected * through the enclosing :ref:`envoy_v3_api_msg_config.route.v3.RouteAction`. * Headers specified at this level are applied before headers from the enclosing * :ref:`envoy_v3_api_msg_config.route.v3.Route`, :ref:`envoy_v3_api_msg_config.route.v3.VirtualHost`, and * :ref:`envoy_v3_api_msg_config.route.v3.RouteConfiguration`. For more information, including details on * header value syntax, see the documentation on :ref:`custom request headers * `. */ 'response_headers_to_add'?: (_envoy_config_core_v3_HeaderValueOption)[]; /** * Specifies a list of headers to be removed from responses when this cluster is selected * through the enclosing :ref:`envoy_v3_api_msg_config.route.v3.RouteAction`. */ 'response_headers_to_remove'?: (string)[]; /** * This field can be used to provide weighted cluster specific per filter config. The key should match the * :ref:`filter config name * `. * See :ref:`Http filter route specific config ` * for details. * [#comment: An entry's value may be wrapped in a * :ref:`FilterConfig` * message to specify additional options.] */ 'typed_per_filter_config'?: ({[key: string]: _google_protobuf_Any}); /** * Indicates that during forwarding, the host header will be swapped with * this value. */ 'host_rewrite_literal'?: (string); 'host_rewrite_specifier'?: "host_rewrite_literal"; } /** * [#next-free-field: 13] */ export interface _envoy_config_route_v3_WeightedCluster_ClusterWeight__Output { /** * Only one of ``name`` and ``cluster_header`` may be specified. * [#next-major-version: Need to add back the validation rule: (validate.rules).string = {min_len: 1}] * Name of the upstream cluster. The cluster must exist in the * :ref:`cluster manager configuration `. */ 'name': (string); /** * Only one of ``name`` and ``cluster_header`` may be specified. * [#next-major-version: Need to add back the validation rule: (validate.rules).string = {min_len: 1 }] * Envoy will determine the cluster to route to by reading the value of the * HTTP header named by cluster_header from the request headers. If the * header is not found or the referenced cluster does not exist, Envoy will * return a 404 response. * * .. attention:: * * Internally, Envoy always uses the HTTP/2 ``:authority`` header to represent the HTTP/1 * ``Host`` header. Thus, if attempting to match on ``Host``, match on ``:authority`` instead. * * .. note:: * * If the header appears multiple times only the first value is used. */ 'cluster_header': (string); /** * The weight of the cluster. This value is relative to the other clusters' * weights. When a request matches the route, the choice of an upstream cluster * is determined by its weight. The sum of weights across all * entries in the clusters array must be greater than 0, and must not exceed * uint32_t maximal value (4294967295). */ 'weight': (_google_protobuf_UInt32Value__Output | null); /** * Optional endpoint metadata match criteria used by the subset load balancer. Only endpoints in * the upstream cluster with metadata matching what is set in this field will be considered for * load balancing. Note that this will be merged with what's provided in * :ref:`RouteAction.metadata_match `, with * values here taking precedence. The filter name should be specified as ``envoy.lb``. */ 'metadata_match': (_envoy_config_core_v3_Metadata__Output | null); /** * Specifies a list of headers to be added to requests when this cluster is selected * through the enclosing :ref:`envoy_v3_api_msg_config.route.v3.RouteAction`. * Headers specified at this level are applied before headers from the enclosing * :ref:`envoy_v3_api_msg_config.route.v3.Route`, :ref:`envoy_v3_api_msg_config.route.v3.VirtualHost`, and * :ref:`envoy_v3_api_msg_config.route.v3.RouteConfiguration`. For more information, including details on * header value syntax, see the documentation on :ref:`custom request headers * `. */ 'request_headers_to_add': (_envoy_config_core_v3_HeaderValueOption__Output)[]; /** * Specifies a list of HTTP headers that should be removed from each request when * this cluster is selected through the enclosing :ref:`envoy_v3_api_msg_config.route.v3.RouteAction`. */ 'request_headers_to_remove': (string)[]; /** * Specifies a list of headers to be added to responses when this cluster is selected * through the enclosing :ref:`envoy_v3_api_msg_config.route.v3.RouteAction`. * Headers specified at this level are applied before headers from the enclosing * :ref:`envoy_v3_api_msg_config.route.v3.Route`, :ref:`envoy_v3_api_msg_config.route.v3.VirtualHost`, and * :ref:`envoy_v3_api_msg_config.route.v3.RouteConfiguration`. For more information, including details on * header value syntax, see the documentation on :ref:`custom request headers * `. */ 'response_headers_to_add': (_envoy_config_core_v3_HeaderValueOption__Output)[]; /** * Specifies a list of headers to be removed from responses when this cluster is selected * through the enclosing :ref:`envoy_v3_api_msg_config.route.v3.RouteAction`. */ 'response_headers_to_remove': (string)[]; /** * This field can be used to provide weighted cluster specific per filter config. The key should match the * :ref:`filter config name * `. * See :ref:`Http filter route specific config ` * for details. * [#comment: An entry's value may be wrapped in a * :ref:`FilterConfig` * message to specify additional options.] */ 'typed_per_filter_config': ({[key: string]: _google_protobuf_Any__Output}); /** * Indicates that during forwarding, the host header will be swapped with * this value. */ 'host_rewrite_literal'?: (string); 'host_rewrite_specifier'?: "host_rewrite_literal"; } /** * Compared to the :ref:`cluster ` field that specifies a * single upstream cluster as the target of a request, the :ref:`weighted_clusters * ` option allows for specification of * multiple upstream clusters along with weights that indicate the percentage of * traffic to be forwarded to each cluster. The router selects an upstream cluster based on the * weights. */ export interface WeightedCluster { /** * Specifies one or more upstream clusters associated with the route. */ 'clusters'?: (_envoy_config_route_v3_WeightedCluster_ClusterWeight)[]; /** * Specifies the runtime key prefix that should be used to construct the * runtime keys associated with each cluster. When the ``runtime_key_prefix`` is * specified, the router will look for weights associated with each upstream * cluster under the key ``runtime_key_prefix`` + ``.`` + ``cluster[i].name`` where * ``cluster[i]`` denotes an entry in the clusters array field. If the runtime * key for the cluster does not exist, the value specified in the * configuration file will be used as the default weight. See the :ref:`runtime documentation * ` for how key names map to the underlying implementation. */ 'runtime_key_prefix'?: (string); /** * Specifies the total weight across all clusters. The sum of all cluster weights must equal this * value, if this is greater than 0. * This field is now deprecated, and the client will use the sum of all * cluster weights. It is up to the management server to supply the correct weights. * @deprecated */ 'total_weight'?: (_google_protobuf_UInt32Value | null); /** * Specifies the header name that is used to look up the random value passed in the request header. * This is used to ensure consistent cluster picking across multiple proxy levels for weighted traffic. * If header is not present or invalid, Envoy will fall back to use the internally generated random value. * This header is expected to be single-valued header as we only want to have one selected value throughout * the process for the consistency. And the value is a unsigned number between 0 and UINT64_MAX. */ 'header_name'?: (string); 'random_value_specifier'?: "header_name"; } /** * Compared to the :ref:`cluster ` field that specifies a * single upstream cluster as the target of a request, the :ref:`weighted_clusters * ` option allows for specification of * multiple upstream clusters along with weights that indicate the percentage of * traffic to be forwarded to each cluster. The router selects an upstream cluster based on the * weights. */ export interface WeightedCluster__Output { /** * Specifies one or more upstream clusters associated with the route. */ 'clusters': (_envoy_config_route_v3_WeightedCluster_ClusterWeight__Output)[]; /** * Specifies the runtime key prefix that should be used to construct the * runtime keys associated with each cluster. When the ``runtime_key_prefix`` is * specified, the router will look for weights associated with each upstream * cluster under the key ``runtime_key_prefix`` + ``.`` + ``cluster[i].name`` where * ``cluster[i]`` denotes an entry in the clusters array field. If the runtime * key for the cluster does not exist, the value specified in the * configuration file will be used as the default weight. See the :ref:`runtime documentation * ` for how key names map to the underlying implementation. */ 'runtime_key_prefix': (string); /** * Specifies the total weight across all clusters. The sum of all cluster weights must equal this * value, if this is greater than 0. * This field is now deprecated, and the client will use the sum of all * cluster weights. It is up to the management server to supply the correct weights. * @deprecated */ 'total_weight': (_google_protobuf_UInt32Value__Output | null); /** * Specifies the header name that is used to look up the random value passed in the request header. * This is used to ensure consistent cluster picking across multiple proxy levels for weighted traffic. * If header is not present or invalid, Envoy will fall back to use the internally generated random value. * This header is expected to be single-valued header as we only want to have one selected value throughout * the process for the consistency. And the value is a unsigned number between 0 and UINT64_MAX. */ 'header_name'?: (string); 'random_value_specifier'?: "header_name"; }