Skip to main content

dns_private_zones

Creates, updates, deletes, gets or lists a dns_private_zones resource.

Overview

Namedns_private_zones
TypeResource
Idazure_isv.oracle.dns_private_zones

Fields

The following fields are returned by SELECT queries:

Azure operation completed successfully.

NameDatatypeDescription
propertiesobjectThe resource-specific properties for this resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, location, dnsprivatezonenameGet a DnsPrivateZone
list_by_locationselectsubscriptionId, locationList DnsPrivateZone resources by Location

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
dnsprivatezonenamestringDnsPrivateZone name
locationstringThe name of the Azure region.
subscriptionIdstring (uuid)The ID of the target subscription. The value must be an UUID.

SELECT examples

Get a DnsPrivateZone

SELECT
properties
FROM azure_isv.oracle.dns_private_zones
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND location = '{{ location }}' -- required
AND dnsprivatezonename = '{{ dnsprivatezonename }}' -- required
;