Azure Networking · Schema

DhcpOptions

DhcpOptions contains an array of DNS servers.

AzureCloudInfrastructureMicrosoftNetworking

Properties

Name Type Description
dnsServers array The list of DNS servers IP addresses.
View JSON Schema on GitHub

JSON Schema

microsoft-azure-networking-dhcpoptions-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DhcpOptions",
  "title": "DhcpOptions",
  "type": "object",
  "description": "DhcpOptions contains an array of DNS servers.",
  "properties": {
    "dnsServers": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "The list of DNS servers IP addresses."
    }
  }
}