Azure Dns
Azure DNS is an Azure service for hosting and managing DNS zones and domain name records.
- Base URL:
https://management.azure.com - Auth: OAuth 2.0 (user-delegated) — attach an InTouch
oauthcredential. Mint one withitcli.py /oauth <provider>(device-code) or/google-auth(Google); the server auto-refreshes the access token before each run, so the connector never handles or stores tokens.
Operations
zones_list— GET /subscriptions/{subscriptionId}/providers/Microsoft.Network/dnszones — Lists the DNS zones in all resource groups in a subscription.zones_listbyresourcegroup— GET /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/dnsZones — Lists the DNS zones within a resource group.zones_get— GET /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/dnsZones/{zoneName} — Gets a DNS zone. Retrieves the zone properties, but not the record sets within trecordsets_listallbydnszone— GET /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/dnsZones/{zoneName}/all — Lists all record sets in a DNS zone.recordsets_listbydnszone— GET /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/dnsZones/{zoneName}/recordsets — Lists all record sets in a DNS zone.recordsets_listbytype— GET /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/dnsZones/{zoneName}/{recordType} — Lists the record sets of a specified type in a DNS zone.
Inputs
- a linked
oauthcredential (no key inputs) — the server injects a freshAuthorization: Bearerfrom it operation— one of the operations above- path parameters when an operation's path contains
{...} query— optional JSON object of query paramsbody— JSON object for create/update ops
Example
operation: zones_list
# (attach an 'oauth' credential to the task — no inline secrets)
Publishes
The keys a later task may reference as {{taskName.key}}. Referencing anything not listed here resolves to nothing at run time.
erroroperationresultstatus
Input Properties
Every property this tool accepts, from its own tool.iml.
| Property | Type | Required | Default | Description |
|---|---|---|---|---|
operation |
string | yes | — | One of: zones_list, zones_listbyresourcegroup, zones_get, recordsets_listallbydnszone, recordsets_listbydnszone, recordsets_listbytype |
recordType |
string | no | — | Path parameter recordType (required by some operations). |
resourceGroupName |
string | no | — | Path parameter resourceGroupName (required by some operations). |
subscriptionId |
string | no | — | Path parameter subscriptionId (required by some operations). |
zoneName |
string | no | — | Path parameter zoneName (required by some operations). |
query |
string | no | — | Optional query params as a JSON object string, e.g. {"limit": 10}. |