Edit

Share via


webApplicationFirewallVerificationResult resource type

Namespace: microsoft.graph

Important

APIs under the /beta version in Microsoft Graph are subject to change. Use of these APIs in production applications is not supported. To determine whether an API is available in v1.0, use the Version selector.

Represents the result of a verification operation performed against a host or domain with a web application firewall (WAF) provider.

Properties

Property Type Description
errors genericError collection List of errors encountered during the verification process.
status webApplicationFirewallVerificationStatus Overall status of the verification operation. The possible values are: success (verification passed), warning (verification completed with warnings), failure (verification failed), unknownFutureValue.
verifiedOnDateTime DateTimeOffset UTC timestamp when the verification was performed or last updated. This indicates when the verification result was produced.
warnings genericError collection List of warnings produced during verification.

Relationships

None.

JSON representation

The following JSON representation shows the resource type.

{
  "@odata.type": "#microsoft.graph.webApplicationFirewallVerificationResult",
  "status": "String",
  "verifiedOnDateTime": "String (timestamp)",
  "errors": [
    {
      "@odata.type": "microsoft.graph.genericError"
    }
  ],
  "warnings": [
    {
      "@odata.type": "microsoft.graph.genericError"
    }
  ]
}