classic_administrators
Creates, updates, deletes, gets or lists a classic_administrators resource.
Overview
| Name | classic_administrators |
| Type | Resource |
| Id | azure.authorization.classic_administrators |
Fields
The following fields are returned by SELECT queries:
- list
| Name | Datatype | Description |
|---|---|---|
id | string | The ID of the administrator. |
name | string | The name of the administrator. |
emailAddress | string | The email address of the administrator. |
role | string | The role of the administrator. |
type | string | The type of the administrator. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | subscription_id | Gets service administrator, account administrator, and co-administrators for the subscription. |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
subscription_id | string |
SELECT examples
- list
Gets service administrator, account administrator, and co-administrators for the subscription.
SELECT
id,
name,
emailAddress,
role,
type
FROM azure.authorization.classic_administrators
WHERE subscription_id = '{{ subscription_id }}' -- required
;