APIs.io Engineering Platform · Schema
zero-trust-gateway_dns_resolver_settings_v6
APIs.ioEngineeringPlatform
Properties
| Name | Type | Description |
|---|---|---|
| ip | string | IPv6 address of upstream resolver. |
| port | integer | A port number to use for upstream resolver. Defaults to 53 if unspecified. |
| route_through_private_network | boolean | Whether to connect to this resolver over a private network. Must be set when vnet_id is set. |
| vnet_id | string | Optionally specify a virtual network for this resolver. Uses default virtual network id if omitted. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/zero-trust-gateway_dns_resolver_settings_v6",
"title": "zero-trust-gateway_dns_resolver_settings_v6",
"properties": {
"ip": {
"description": "IPv6 address of upstream resolver.",
"example": "2001:DB8::",
"type": "string"
},
"port": {
"description": "A port number to use for upstream resolver. Defaults to 53 if unspecified.",
"example": 5053,
"type": "integer"
},
"route_through_private_network": {
"description": "Whether to connect to this resolver over a private network. Must be set when vnet_id is set.",
"example": true,
"type": "boolean"
},
"vnet_id": {
"description": "Optionally specify a virtual network for this resolver. Uses default virtual network id if omitted.",
"example": "f174e90a-fafe-4643-bbbc-4a0ed4fc8415",
"type": "string"
}
},
"required": [
"ip"
],
"type": "object"
}