RegionUrlMapPathMatcherRouteRuleMatchRuleArgs

data class RegionUrlMapPathMatcherRouteRuleMatchRuleArgs(val fullPathMatch: Output<String>? = null, val headerMatches: Output<List<RegionUrlMapPathMatcherRouteRuleMatchRuleHeaderMatchArgs>>? = null, val ignoreCase: Output<Boolean>? = null, val metadataFilters: Output<List<RegionUrlMapPathMatcherRouteRuleMatchRuleMetadataFilterArgs>>? = null, val prefixMatch: Output<String>? = null, val queryParameterMatches: Output<List<RegionUrlMapPathMatcherRouteRuleMatchRuleQueryParameterMatchArgs>>? = null, val regexMatch: Output<String>? = null) : ConvertibleToJava<RegionUrlMapPathMatcherRouteRuleMatchRuleArgs>

Constructors

constructor(fullPathMatch: Output<String>? = null, headerMatches: Output<List<RegionUrlMapPathMatcherRouteRuleMatchRuleHeaderMatchArgs>>? = null, ignoreCase: Output<Boolean>? = null, metadataFilters: Output<List<RegionUrlMapPathMatcherRouteRuleMatchRuleMetadataFilterArgs>>? = null, prefixMatch: Output<String>? = null, queryParameterMatches: Output<List<RegionUrlMapPathMatcherRouteRuleMatchRuleQueryParameterMatchArgs>>? = null, regexMatch: Output<String>? = null)

Properties

Link copied to clipboard
val fullPathMatch: Output<String>? = null

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 between 1 and 1024 characters. Only one of prefixMatch, fullPathMatch or regexMatch must be specified.

Link copied to clipboard

Specifies a list of header match criteria, all of which must match corresponding headers in the request. Structure is documented below.

Link copied to clipboard
val ignoreCase: Output<Boolean>? = null

Specifies that prefixMatch and fullPathMatch matches are case sensitive. Defaults to false.

Link copied to clipboard

Opaque filter criteria used by Loadbalancer to restrict routing configuration to a limited set xDS compliant clients. In their xDS requests to Loadbalancer, xDS clients present node metadata. If a match takes place, 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 in the provided metadata. metadataFilters specified here can be overrides those specified in ForwardingRule that refers to this UrlMap. metadataFilters only applies to Loadbalancers that have their loadBalancingScheme set to INTERNAL_SELF_MANAGED. Structure is documented below.

Link copied to clipboard
val prefixMatch: Output<String>? = null

For satisfying the matchRule condition, the request's path must begin with the specified prefixMatch. prefixMatch must begin with a /. The value must be between 1 and 1024 characters. Only one of prefixMatch, fullPathMatch or regexMatch must be specified.

Link copied to clipboard

Specifies a list of query parameter match criteria, all of which must match corresponding query parameters in the request. Structure is documented below.

Link copied to clipboard
val regexMatch: Output<String>? = null

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 regular expression grammar please see en.cppreference.com/w/cpp/regex/ecmascript Only one of prefixMatch, fullPathMatch or regexMatch must be specified.

Functions

Link copied to clipboard
open override fun toJava(): RegionUrlMapPathMatcherRouteRuleMatchRuleArgs