Enum AccessRuleCriteria.Condition
- java.lang.Object
- 
- java.lang.Enum<AccessRuleCriteria.Condition>
- 
- com.oracle.bmc.waas.model.AccessRuleCriteria.Condition
 
 
- 
- All Implemented Interfaces:
- BmcEnum,- Serializable,- Comparable<AccessRuleCriteria.Condition>
 - Enclosing class:
- AccessRuleCriteria
 
 public static enum AccessRuleCriteria.Condition extends Enum<AccessRuleCriteria.Condition> implements BmcEnum The criteria the access rule and JavaScript Challenge uses to determine if action should be taken on a request.- URL_IS: Matches if the concatenation of request URL path and query is identical to the contents of the value field. URL must start with a /. - URL_IS_NOT: Matches if the concatenation of request URL path and query is not identical to the contents of the value field. URL must start with a /. - URL_STARTS_WITH: Matches if the concatenation of request URL path and query starts with the contents of the value field. URL must start with a /. - URL_PART_ENDS_WITH: Matches if the concatenation of request URL path and query ends with the contents of the value field. - URL_PART_CONTAINS: Matches if the concatenation of request URL path and query contains the contents of the value field.
- URL_REGEX: Matches if the concatenation of request URL path and query is described by the regular expression in the value field. The value must be a valid regular expression recognized by the PCRE library in Nginx (https://www.pcre.org). - URL_DOES_NOT_MATCH_REGEX: Matches if the concatenation of request URL path and query is not described by the regular expression in the value field. The value must be a valid regular expression recognized by the PCRE library in Nginx (https://www.pcre.org). - URL_DOES_NOT_START_WITH: Matches if the concatenation of request URL path and query does not start with the contents of the value field. - URL_PART_DOES_NOT_CONTAIN: Matches if the concatenation of request URL path and query does not contain the contents of the value field. - URL_PART_DOES_NOT_END_WITH: Matches if the concatenation of request URL path and query does not end with the contents of the value field. - IP_IS: Matches if the request originates from one of the IP addresses contained in the defined address list. The value in this case is string with one or multiple IPs or CIDR notations separated by new line symbol \
 Example:* "1.1.1.1\ 1.1.1.2\ 1.2.2.1/30" - **IP_IS_NOT:** Matches if the request does not originate from any of the IP addresses contained in the defined address list. The value in this case is string with one or multiple IPs or CIDR notations separated by new line symbol \ Example:* "1.1.1.1\ 1.1.1.2\ 1.2.2.1/30" - **IP_IN_LIST:** Matches if the request originates from one of the IP addresses contained in the referenced address list. The value in this case is OCID of the address list. - **IP_NOT_IN_LIST:** Matches if the request does not originate from any IP address contained in the referenced address list. The value field in this case is OCID of the address list. - **HTTP_HEADER_CONTAINS:** The HTTP_HEADER_CONTAINS criteria is defined using a compound value separated by a colon: a header field name and a header field value. host:test.example.com is an example of a criteria value where host is the header field name and test.example.com is the header field value. A request matches when the header field name is a case insensitive match and the header field value is a case insensitive, substring match. *Example:* With a criteria value of host:test.example.com, where host is the name of the field and test.example.com is the value of the host field, a request with the header values, Host: www.test.example.com will match, where as a request with header values of host: www.example.com or host: test.sub.example.com will not match. - **HTTP_METHOD_IS:** Matches if the request method is identical to one of the values listed in field. The value in this case is string with one or multiple HTTP methods separated by new line symbol \ The list of available methods: GET, HEAD, POST, PUT, DELETE, CONNECT, OPTIONS, TRACE, PATCH Example:* "GET\ POST" - **HTTP_METHOD_IS_NOT:** Matches if the request is not identical to any of the contents of the value field. The value in this case is string with one or multiple HTTP methods separated by new line symbol \ The list of available methods: GET, HEAD, POST, PUT, DELETE, CONNECT, OPTIONS, TRACE, PATCH Example:* "GET\ POST" - **COUNTRY_IS:** Matches if the request originates from one of countries in the value field. The value in this case is string with one or multiple countries separated by new line symbol \ Country codes are in ISO 3166-1 alpha-2 format. For a list of codes, see [ISO's website](https://www.iso.org/obp/ui/#search/code/). *Example:* "AL\ DZ\ AM" - **COUNTRY_IS_NOT:** Matches if the request does not originate from any of countries in the value field. The value in this case is string with one or multiple countries separated by new line symbol \ Country codes are in ISO 3166-1 alpha-2 format. For a list of codes, see [ISO's website](https://www.iso.org/obp/ui/#search/code/). *Example:* "AL\ DZ\ AM" - **USER_AGENT_IS:** Matches if the requesting user agent is identical to the contents of the value field. *Example:* Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:35.0) Gecko/20100101 Firefox/35.0 - **USER_AGENT_IS_NOT:** Matches if the requesting user agent is not identical to the contents of the value field. *Example:* Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:35.0) Gecko/20100101 Firefox/35.0 
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description CountryIsCountryIsNotHttpHeaderContainsHttpMethodIsHttpMethodIsNotIpInListIpIsIpIsNotIpNotInListUnknownEnumValueThis value is used if a service returns a value for this enum that is not recognized by this version of the SDK.UrlDoesNotMatchRegexUrlDoesNotStartWithUrlIsUrlIsNotUrlPartContainsUrlPartDoesNotContainUrlPartDoesNotEndWithUrlPartEndsWithUrlRegexUrlStartsWithUserAgentIsUserAgentIsNot
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static AccessRuleCriteria.Conditioncreate(String key)StringgetValue()static AccessRuleCriteria.ConditionvalueOf(String name)Returns the enum constant of this type with the specified name.static AccessRuleCriteria.Condition[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
UrlIspublic static final AccessRuleCriteria.Condition UrlIs 
 - 
UrlIsNotpublic static final AccessRuleCriteria.Condition UrlIsNot 
 - 
UrlStartsWithpublic static final AccessRuleCriteria.Condition UrlStartsWith 
 - 
UrlPartEndsWithpublic static final AccessRuleCriteria.Condition UrlPartEndsWith 
 - 
UrlPartContainspublic static final AccessRuleCriteria.Condition UrlPartContains 
 - 
UrlRegexpublic static final AccessRuleCriteria.Condition UrlRegex 
 - 
UrlDoesNotMatchRegexpublic static final AccessRuleCriteria.Condition UrlDoesNotMatchRegex 
 - 
UrlDoesNotStartWithpublic static final AccessRuleCriteria.Condition UrlDoesNotStartWith 
 - 
UrlPartDoesNotContainpublic static final AccessRuleCriteria.Condition UrlPartDoesNotContain 
 - 
UrlPartDoesNotEndWithpublic static final AccessRuleCriteria.Condition UrlPartDoesNotEndWith 
 - 
IpIspublic static final AccessRuleCriteria.Condition IpIs 
 - 
IpIsNotpublic static final AccessRuleCriteria.Condition IpIsNot 
 - 
IpInListpublic static final AccessRuleCriteria.Condition IpInList 
 - 
IpNotInListpublic static final AccessRuleCriteria.Condition IpNotInList 
 - 
HttpHeaderContainspublic static final AccessRuleCriteria.Condition HttpHeaderContains 
 - 
HttpMethodIspublic static final AccessRuleCriteria.Condition HttpMethodIs 
 - 
HttpMethodIsNotpublic static final AccessRuleCriteria.Condition HttpMethodIsNot 
 - 
CountryIspublic static final AccessRuleCriteria.Condition CountryIs 
 - 
CountryIsNotpublic static final AccessRuleCriteria.Condition CountryIsNot 
 - 
UserAgentIspublic static final AccessRuleCriteria.Condition UserAgentIs 
 - 
UserAgentIsNotpublic static final AccessRuleCriteria.Condition UserAgentIsNot 
 - 
UnknownEnumValuepublic static final AccessRuleCriteria.Condition UnknownEnumValue This value is used if a service returns a value for this enum that is not recognized by this version of the SDK.
 
- 
 - 
Method Detail- 
valuespublic static AccessRuleCriteria.Condition[] values() Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (AccessRuleCriteria.Condition c : AccessRuleCriteria.Condition.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static AccessRuleCriteria.Condition valueOf(String name) Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
- name- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
- IllegalArgumentException- if this enum type has no constant with the specified name
- NullPointerException- if the argument is null
 
 - 
createpublic static AccessRuleCriteria.Condition create(String key) 
 
- 
 
-