Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Namespace: microsoft.graph
Represents the details discovered when verifying a host or domain using a Cloudflare web application firewall (WAF) provider.
Inherits from webApplicationFirewallVerifiedDetails.
Properties
| Property | Type | Description |
|---|---|---|
| dnsConfiguration | webApplicationFirewallDnsConfiguration | DNS-related evidence discovered during verification. Inherited from webApplicationFirewallVerifiedDetails. |
| enabledCustomRules | cloudFlareRuleModel collection | Collection of Cloudflare custom rules that are currently enabled for the zone or host. |
| enabledRecommendedRulesets | cloudFlareRulesetModel collection | Collection of Cloudflare recommended rulesets that are enabled for the zone or host. |
| zoneId | String | Cloudflare-assigned identifier for the DNS zone associated with the verified host (for example, the Cloudflare Zone ID). This ID is used to correlate verification details with the Cloudflare account and to perform configuration operations via the provider's API. |
Relationships
None.
JSON representation
The following JSON representation shows the resource type.
{
"@odata.type": "#microsoft.graph.cloudFlareVerifiedDetailsModel",
"dnsConfiguration": {
"@odata.type": "microsoft.graph.webApplicationFirewallDnsConfiguration"
},
"zoneId": "String",
"enabledRecommendedRulesets": [
{
"@odata.type": "microsoft.graph.cloudFlareRulesetModel"
}
],
"enabledCustomRules": [
{
"@odata.type": "microsoft.graph.cloudFlareRuleModel"
}
]
}