Skip to main content

record_sets_all_by_dns_zones

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

Overview

Namerecord_sets_all_by_dns_zones
TypeResource
Idazure.dns.record_sets_all_by_dns_zones

Fields

NameDatatypeDescription
idstringThe ID of the record set.
namestringThe name of the record set.
etagstringThe etag of the record set.
propertiesobjectRepresents the properties of the records in the record set.
typestringThe type of the record set.

Methods

NameAccessible byRequired ParamsDescription
listSELECTresourceGroupName, subscriptionId, zoneNameLists all record sets in a DNS zone.

SELECT examples

Lists all record sets in a DNS zone.

SELECT
id,
name,
etag,
properties,
type
FROM azure.dns.record_sets_all_by_dns_zones
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND zoneName = '{{ zoneName }}';