Skip to main content

classic_administrators

Creates, updates, deletes, gets or lists a classic_administrators resource.

Overview

Nameclassic_administrators
TypeResource
Idazure.authorization.classic_administrators

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringThe ID of the administrator.
namestringThe name of the administrator.
emailAddressstringThe email address of the administrator.
rolestringThe role of the administrator.
typestringThe type of the administrator.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectsubscription_idGets 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.

NameDatatypeDescription
subscription_idstring

SELECT examples

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
;