Generic Proxy Route Action Configuration (proto)

Warning

This API feature is currently work-in-progress. API features marked as work-in-progress are not considered stable, are not covered by the threat model, are not supported by the security team, and are subject to breaking changes. Do not use this feature without understanding each of the previous points.

extensions.filters.network.generic_proxy.action.v3.RouteAction

[extensions.filters.network.generic_proxy.action.v3.RouteAction proto]

Configuration for the route match action.

{
  "name": ...,
  "cluster": ...,
  "metadata": {...},
  "per_filter_config": {...},
  "timeout": {...},
  "retry_policy": {...}
}
name

(string) The name of the route action. This should be unique across all route actions.

cluster

(string, REQUIRED) Indicates the upstream cluster to which the request should be routed.

metadata

(config.core.v3.Metadata) Route metadata.

per_filter_config

(repeated map<string, Any>) Route level config for L7 generic filters. The key should be the related extension name in the generic filters.

timeout

(Duration) Specifies the upstream timeout for the route. If not specified, the default is 15s. This spans between the point at which the entire downstream request (i.e. end-of-stream) has been processed and when the upstream response has been completely processed. A value of 0 will disable the route’s timeout.

retry_policy

(config.core.v3.RetryPolicy) Specifies the retry policy for the route. If not specified, then no retries will be performed.

Note

Only simplest retry policy is supported and only num_retries field is used for generic proxy. The default value for num_retries is 1 means that the request will be tried once and no additional retries will be performed.