pub struct GRPCRouteRulesFilters {
pub extension_ref: Option<GRPCRouteRulesFiltersExtensionRef>,
pub request_header_modifier: Option<GRPCRouteRulesFiltersRequestHeaderModifier>,
pub request_mirror: Option<GRPCRouteRulesFiltersRequestMirror>,
pub response_header_modifier: Option<GRPCRouteRulesFiltersResponseHeaderModifier>,
pub type: GRPCRouteRulesFiltersType,
}
Expand description
GRPCRouteFilter defines processing steps that must be completed during the request or response lifecycle. GRPCRouteFilters are meant as an extension point to express processing that may be done in Gateway implementations. Some examples include request or response modification, implementing authentication strategies, rate-limiting, and traffic shaping. API guarantee/conformance is defined based on the type of the filter.
Fields§
§extension_ref: Option<GRPCRouteRulesFiltersExtensionRef>
ExtensionRef is an optional, implementation-specific extension to the “filter” behavior. For example, resource “myroutefilter” in group “networking.example.net”). ExtensionRef MUST NOT be used for core and extended filters.
Support: Implementation-specific
This filter can be used multiple times within the same rule.
request_header_modifier: Option<GRPCRouteRulesFiltersRequestHeaderModifier>
RequestHeaderModifier defines a schema for a filter that modifies request headers.
Support: Core
request_mirror: Option<GRPCRouteRulesFiltersRequestMirror>
RequestMirror defines a schema for a filter that mirrors requests. Requests are sent to the specified destination, but responses from that destination are ignored.
This filter can be used multiple times within the same rule. Note that not all implementations will be able to support mirroring to multiple backends.
Support: Extended
response_header_modifier: Option<GRPCRouteRulesFiltersResponseHeaderModifier>
ResponseHeaderModifier defines a schema for a filter that modifies response headers.
Support: Extended
type: GRPCRouteRulesFiltersType
Type identifies the type of filter to apply. As with other API fields, types are classified into three conformance levels:
-
Core: Filter types and their corresponding configuration defined by “Support: Core” in this package, e.g. “RequestHeaderModifier”. All implementations supporting GRPCRoute MUST support core filters.
-
Extended: Filter types and their corresponding configuration defined by “Support: Extended” in this package, e.g. “RequestMirror”. Implementers are encouraged to support extended filters.
-
Implementation-specific: Filters that are defined and supported by specific vendors. In the future, filters showing convergence in behavior across multiple implementations will be considered for inclusion in extended or core conformance levels. Filter-specific configuration for such filters is specified using the ExtensionRef field.
Type
MUST be set to “ExtensionRef” for custom filters.
Implementers are encouraged to define custom implementation types to extend the core API with implementation-specific behavior.
If a reference to a custom filter type cannot be resolved, the filter MUST NOT be skipped. Instead, requests that would have been processed by that filter MUST receive a HTTP error response.
Trait Implementations§
source§impl Clone for GRPCRouteRulesFilters
impl Clone for GRPCRouteRulesFilters
source§fn clone(&self) -> GRPCRouteRulesFilters
fn clone(&self) -> GRPCRouteRulesFilters
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for GRPCRouteRulesFilters
impl Debug for GRPCRouteRulesFilters
source§impl Default for GRPCRouteRulesFilters
impl Default for GRPCRouteRulesFilters
source§fn default() -> GRPCRouteRulesFilters
fn default() -> GRPCRouteRulesFilters
source§impl<'de> Deserialize<'de> for GRPCRouteRulesFilters
impl<'de> Deserialize<'de> for GRPCRouteRulesFilters
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
source§impl JsonSchema for GRPCRouteRulesFilters
impl JsonSchema for GRPCRouteRulesFilters
source§fn schema_name() -> String
fn schema_name() -> String
source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
source§fn json_schema(gen: &mut SchemaGenerator) -> Schema
fn json_schema(gen: &mut SchemaGenerator) -> Schema
source§fn is_referenceable() -> bool
fn is_referenceable() -> bool
$ref
keyword. Read moresource§impl PartialEq for GRPCRouteRulesFilters
impl PartialEq for GRPCRouteRulesFilters
source§impl Serialize for GRPCRouteRulesFilters
impl Serialize for GRPCRouteRulesFilters
impl StructuralPartialEq for GRPCRouteRulesFilters
Auto Trait Implementations§
impl Freeze for GRPCRouteRulesFilters
impl RefUnwindSafe for GRPCRouteRulesFilters
impl Send for GRPCRouteRulesFilters
impl Sync for GRPCRouteRulesFilters
impl Unpin for GRPCRouteRulesFilters
impl UnwindSafe for GRPCRouteRulesFilters
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)