Microsoft Graph · Schema

webApplicationFirewallDnsConfiguration

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
isDomainVerified boolean Indicates whether the domain owning this DNS record has been verified by the WAF provider.
isProxied boolean Indicates whether traffic for this DNS record is proxied through the WAF provider's network (for example, using a CDN or reverse proxy).
name string The DNS record name (for example, www.contoso.com or contoso.com). This is the host or zone name to which the configuration applies.
recordType object
value string The value of the DNS record.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphwebapplicationfirewalldnsconfiguration-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.webApplicationFirewallDnsConfiguration",
  "title": "webApplicationFirewallDnsConfiguration",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "isDomainVerified": {
      "type": "boolean",
      "description": "Indicates whether the domain owning this DNS record has been verified by the WAF provider."
    },
    "isProxied": {
      "type": "boolean",
      "description": "Indicates whether traffic for this DNS record is proxied through the WAF provider's network (for example, using a CDN or reverse proxy)."
    },
    "name": {
      "type": "string",
      "description": "The DNS record name (for example, www.contoso.com or contoso.com). This is the host or zone name to which the configuration applies.",
      "nullable": true
    },
    "recordType": {
      "$ref": "#/components/schemas/microsoft.graph.webApplicationFirewallDnsRecordType"
    },
    "value": {
      "type": "string",
      "description": "The value of the DNS record.",
      "nullable": true
    },
    "@odata.type": {
      "type": "string"
    }
  }
}