LBHttpRequestUriCondition
This condition is used to match URIs(Uniform Resource Identifier) of HTTP
request messages. The URI field can be specified as a regular expression.
If an HTTP request message is requesting an URI which matches specified
regular expression, it matches the condition.
The syntax of whole URI looks like this:
scheme:[//[user[:password]@]host[:port]][/path][?query][#fragment]
This condition matches only the path part of entire URI.
When match_type field is specified as REGEX, the uri field is used as a
regular expression to match URI path of HTTP requests. For example, to
match any URI that has “/image/” or “/images/”, uri field can be specified
as: “/image[s]?/”.
Named capturing groups can be used in the uri field to capture substrings
of matched URIs and store them in variables for use in LBRuleAction. For
example, specify uri field as:
“/news/(?
Properties
If true, case is significant when comparing URI.
A flag to indicate whether reverse the match result of this condition
Match type of URI
Possible values are: STARTS_WITH, ENDS_WITH, EQUALS, CONTAINS, REGEX
Type of load balancer rule condition
Possible values are: LBHttpRequestUriCondition, LBHttpRequestHeaderCondition, LBHttpRequestMethodCondition, LBHttpRequestUriArgumentsCondition, LBHttpRequestVersionCondition, LBHttpRequestCookieCondition, LBHttpRequestBodyCondition, LBHttpResponseHeaderCondition, LBTcpHeaderCondition, LBIpHeaderCondition, LBVariableCondition, LBHttpSslCondition
A string used to identify resource
JSON Example
{
"type": "string"
}