record_sets_all_by_dns_zones
Creates, updates, deletes, gets or lists a record_sets_all_by_dns_zones
resource.
Overview
Name | record_sets_all_by_dns_zones |
Type | Resource |
Id | azure.dns.record_sets_all_by_dns_zones |
Fields
Name | Datatype | Description |
---|---|---|
id | string | The ID of the record set. |
name | string | The name of the record set. |
etag | string | The etag of the record set. |
properties | object | Represents the properties of the records in the record set. |
type | string | The type of the record set. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT | resourceGroupName, subscriptionId, zoneName | Lists 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 }}';