Class ProtectionCapabilityExclusions
Identifies specific HTTP message parameters to exclude from inspection by a protection capability.
Inherited Members
Namespace: Oci.WafService.Models
Assembly: OCI.DotNetSDK.Waf.dll
Syntax
public class ProtectionCapabilityExclusions
Properties
Args
Declaration
[JsonProperty(PropertyName = "args")]
public List<string> Args { get; set; }
Property Value
Type | Description |
---|---|
List<string> | List of URL query parameter values from form-urlencoded XML, JSON, AMP, or POST payloads to exclude from inspecting. Example: If we have query parameter 'argumentName=argumentValue' and args=['argumentName'], both 'argumentName' and 'argumentValue' will not be inspected. |
RequestCookies
Declaration
[JsonProperty(PropertyName = "requestCookies")]
public List<string> RequestCookies { get; set; }
Property Value
Type | Description |
---|---|
List<string> | List of HTTP request cookie values (by cookie name) to exclude from inspecting. Example: If we have cookie 'cookieName=cookieValue' and requestCookies=['cookieName'], both 'cookieName' and 'cookieValue' will not be inspected. |