Azure Privatedns
Azure Private DNS is a Microsoft Azure service for hosting and managing private DNS zones inside Azure virtual networks.
- 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
privatezones_list— GET /subscriptions/{subscriptionId}/providers/Microsoft.Network/privateDnsZones — Lists the Private DNS zones in all resource groups in a subscription.privatezones_listbyresourcegroup— GET /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/privateDnsZones — Lists the Private DNS zones within a resource group.privatezones_get— GET /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/privateDnsZones/{privateZoneName} — Gets a Private DNS zone. Retrieves the zone properties, but not the virtual netwrecordsets_list— GET /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/privateDnsZones/{privateZoneName}/ALL — Lists all record sets in a Private DNS zone.virtualnetworklinks_list— GET /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/privateDnsZones/{privateZoneName}/virtualNetworkLinks — Lists the virtual network links to the specified Private DNS zone.virtualnetworklinks_get— GET /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/privateDnsZones/{privateZoneName}/virtualNetworkLinks/{virtualNetworkLinkName} — Gets a virtual network link to the specified Private 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: privatezones_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: privatezones_list, privatezones_listbyresourcegroup, privatezones_get, recordsets_list, virtualnetworklinks_list, virtualnetworklinks_get |
privateZoneName |
string | no | — | Path parameter privateZoneName (required by some operations). |
resourceGroupName |
string | no | — | Path parameter resourceGroupName (required by some operations). |
subscriptionId |
string | no | — | Path parameter subscriptionId (required by some operations). |
virtualNetworkLinkName |
string | no | — | Path parameter virtualNetworkLinkName (required by some operations). |
query |
string | no | — | Optional query params as a JSON object string, e.g. {"limit": 10}. |