{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CreatePrivateDnsRequest", "title": "CreatePrivateDnsRequest", "description": "Request schema for creating a Private DNS.", "type": "object", "properties": { "name": { "$ref": "#/components/schemas/PrivateDnsName" }, "private_dns_attachment_config": { "oneOf": [ { "$ref": "#/components/schemas/AwsPrivateHostedZoneAttachmentConfig" }, { "$ref": "#/components/schemas/AwsPrivateDnsResolverAttachmentConfig" }, { "$ref": "#/components/schemas/GcpPrivateHostedZoneAttachmentConfig" }, { "$ref": "#/components/schemas/AzurePrivateHostedZoneAttachmentConfig" }, { "$ref": "#/components/schemas/AzurePrivateDnsResolverAttachmentConfig" } ] } } }