Class WildcardSelectionKey
When dynamically routing and dynamically authenticating requests, the route or authentication server associated with a selection key containing a wildcard is used if the context variable in an incoming request matches that key.
Inherited Members
Namespace: Oci.ApigatewayService.Models
Assembly: OCI.DotNetSDK.Apigateway.dll
Syntax
public class WildcardSelectionKey : DynamicSelectionKey
Properties
Expression
Declaration
[Required(ErrorMessage = "Expression is required.")]
[JsonProperty(PropertyName = "expression")]
public string Expression { get; set; }
Property Value
Type | Description |
---|---|
string | A selection key string containing a wildcard to match with the context variable in an incoming request. If the context variable matches the string, the request is sent to the route or authentication server associated with the selection key. Valid wildcards are '*' (zero or more characters) and '+' (one or more characters). The string can only contain one wildcard, and the wildcard must be at the start or the end of the string. |
Remarks
Required