Azure Azureactivedirectory
Azure Active Directory is Microsoft's cloud identity and access management service for users, applications, and organizational resources.
- 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
diagnosticsettings_list— GET /providers/microsoft.aadiam/diagnosticSettings — Gets the active diagnostic settings list for AadIam.diagnosticsettings_get— GET /providers/microsoft.aadiam/diagnosticSettings/{name} — Gets the active diagnostic setting for AadIam.diagnosticsettingscategory_list— GET /providers/microsoft.aadiam/diagnosticSettingsCategories — Lists the diagnostic settings categories for AadIam.operations_list— GET /providers/microsoft.aadiam/operations — Operation to return the list of available operations.diagnosticsettings_createorupdate— PUT /providers/microsoft.aadiam/diagnosticSettings/{name} — Creates or updates diagnostic settings for AadIam.diagnosticsettings_delete— DELETE /providers/microsoft.aadiam/diagnosticSettings/{name} — Deletes existing diagnostic setting for AadIam.
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: diagnosticsettings_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: diagnosticsettings_list, diagnosticsettings_get, diagnosticsettingscategory_list, operations_list, diagnosticsettings_createorupdate, diagnosticsettings_delete |
name |
string | no | — | Path parameter name (required by some operations). |
body |
string | no | — | Request body as a JSON object string (for create/update operations). |
query |
string | no | — | Query-string parameters as a JSON object string, e.g. {"limit": 50}. Parsed and url-encoded onto the request. |