dns_private_zones
Creates, updates, deletes, gets or lists a dns_private_zones
resource.
Overview
Name | dns_private_zones |
Type | Resource |
Id | azure_isv.oracle.dns_private_zones |
Fields
- vw_dns_private_zones
- dns_private_zones
Name | Datatype | Description |
---|---|---|
dnsprivatezonename | text | field from the properties object |
is_protected | text | field from the properties object |
lifecycle_state | text | field from the properties object |
location | text | field from the properties object |
ocid | text | field from the properties object |
provisioning_state | text | field from the properties object |
self | text | field from the properties object |
serial | text | field from the properties object |
subscriptionId | text | field from the properties object |
time_created | text | field from the properties object |
version | text | field from the properties object |
view_id | text | field from the properties object |
zone_type | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
properties | object | Zones resource model |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | dnsprivatezonename, location, subscriptionId | Get a DnsPrivateZone |
list_by_location | SELECT | location, subscriptionId | List DnsPrivateZone resources by Location |
SELECT
examples
List DnsPrivateZone resources by Location
- vw_dns_private_zones
- dns_private_zones
SELECT
dnsprivatezonename,
is_protected,
lifecycle_state,
location,
ocid,
provisioning_state,
self,
serial,
subscriptionId,
time_created,
version,
view_id,
zone_type
FROM azure_isv.oracle.vw_dns_private_zones
WHERE location = '{{ location }}'
AND subscriptionId = '{{ subscriptionId }}';
SELECT
properties
FROM azure_isv.oracle.dns_private_zones
WHERE location = '{{ location }}'
AND subscriptionId = '{{ subscriptionId }}';