pub struct HttpRouteRuleMatch {
pub full_path_match: Option<String>,
pub header_matches: Option<Vec<HttpHeaderMatch>>,
pub ignore_case: Option<bool>,
pub metadata_filters: Option<Vec<MetadataFilter>>,
pub path_template_match: Option<String>,
pub prefix_match: Option<String>,
pub query_parameter_matches: Option<Vec<HttpQueryParameterMatch>>,
pub regex_match: Option<String>,
}
Expand description
HttpRouteRuleMatch specifies a set of criteria for matching requests to an HttpRouteRule. All specified criteria must be satisfied for a match to occur.
This type is not used in any activity, and only used as part of another schema.
Fields§
§full_path_match: Option<String>
For satisfying the matchRule condition, the path of the request must exactly match the value specified in fullPathMatch after removing any query parameters and anchor that may be part of the original URL. fullPathMatch must be from 1 to 1024 characters. Only one of prefixMatch, fullPathMatch or regexMatch must be specified.
header_matches: Option<Vec<HttpHeaderMatch>>
Specifies a list of header match criteria, all of which must match corresponding headers in the request.
ignore_case: Option<bool>
Specifies that prefixMatch and fullPathMatch matches are case sensitive. The default value is false. ignoreCase must not be used with regexMatch. Not supported when the URL map is bound to a target gRPC proxy.
metadata_filters: Option<Vec<MetadataFilter>>
Opaque filter criteria used by the load balancer to restrict routing configuration to a limited set of xDS compliant clients. In their xDS requests to the load balancer, xDS clients present node metadata. When there is a match, the relevant routing configuration is made available to those proxies. For each metadataFilter in this list, if its filterMatchCriteria is set to MATCH_ANY, at least one of the filterLabels must match the corresponding label provided in the metadata. If its filterMatchCriteria is set to MATCH_ALL, then all of its filterLabels must match with corresponding labels provided in the metadata. If multiple metadata filters are specified, all of them need to be satisfied in order to be considered a match. metadataFilters specified here is applied after those specified in ForwardingRule that refers to the UrlMap this HttpRouteRuleMatch belongs to. metadataFilters only applies to load balancers that have loadBalancingScheme set to INTERNAL_SELF_MANAGED. Not supported when the URL map is bound to a target gRPC proxy that has validateForProxyless field set to true.
path_template_match: Option<String>
If specified, the route is a pattern match expression that must match the :path header once the query string is removed. A pattern match allows you to match - The value must be between 1 and 1024 characters - The pattern must start with a leading slash (“/”) - There may be no more than 5 operators in pattern Precisely one of prefix_match, full_path_match, regex_match or path_template_match must be set.
prefix_match: Option<String>
For satisfying the matchRule condition, the request’s path must begin with the specified prefixMatch. prefixMatch must begin with a /. The value must be from 1 to 1024 characters. Only one of prefixMatch, fullPathMatch or regexMatch must be specified.
query_parameter_matches: Option<Vec<HttpQueryParameterMatch>>
Specifies a list of query parameter match criteria, all of which must match corresponding query parameters in the request. Not supported when the URL map is bound to a target gRPC proxy.
regex_match: Option<String>
For satisfying the matchRule condition, the path of the request must satisfy the regular expression specified in regexMatch after removing any query parameters and anchor supplied with the original URL. For more information about regular expression syntax, see Syntax. Only one of prefixMatch, fullPathMatch or regexMatch must be specified. Regular expressions can only be used when the loadBalancingScheme is set to INTERNAL_SELF_MANAGED.
Trait Implementations§
Source§impl Clone for HttpRouteRuleMatch
impl Clone for HttpRouteRuleMatch
Source§fn clone(&self) -> HttpRouteRuleMatch
fn clone(&self) -> HttpRouteRuleMatch
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for HttpRouteRuleMatch
impl Debug for HttpRouteRuleMatch
Source§impl Default for HttpRouteRuleMatch
impl Default for HttpRouteRuleMatch
Source§fn default() -> HttpRouteRuleMatch
fn default() -> HttpRouteRuleMatch
Source§impl<'de> Deserialize<'de> for HttpRouteRuleMatch
impl<'de> Deserialize<'de> for HttpRouteRuleMatch
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 Serialize for HttpRouteRuleMatch
impl Serialize for HttpRouteRuleMatch
impl Part for HttpRouteRuleMatch
Auto Trait Implementations§
impl Freeze for HttpRouteRuleMatch
impl RefUnwindSafe for HttpRouteRuleMatch
impl Send for HttpRouteRuleMatch
impl Sync for HttpRouteRuleMatch
impl Unpin for HttpRouteRuleMatch
impl UnwindSafe for HttpRouteRuleMatch
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§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more