operations
Creates, updates, deletes, gets or lists an operations
resource.
Overview
Name | operations |
Type | Resource |
Id | azure.management_groups.operations |
Fields
The following fields are returned by SELECT
queries:
- list
OK. The request has succeeded.
Name | Datatype | Description |
---|---|---|
name | string | Operation name: {provider}/{resource}/{operation}. |
display | object | The object that represents the operation. (title: Display) |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | Lists all of the available Management REST API operations. | ||
check_name_availability | exec | Checks if the specified management group name is valid and unique | ||
start_tenant_backfill | exec | Starts backfilling subscriptions for the Tenant. | ||
tenant_backfill_status | exec | Gets tenant backfill status |
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 |
---|
SELECT
examples
- list
Lists all of the available Management REST API operations.
SELECT
name,
display
FROM azure.management_groups.operations
;
Lifecycle Methods
- check_name_availability
- start_tenant_backfill
- tenant_backfill_status
Checks if the specified management group name is valid and unique
EXEC azure.management_groups.operations.check_name_availability
@@json=
'{
"name": "{{ name }}",
"type": "{{ type }}"
}'
;
Starts backfilling subscriptions for the Tenant.
EXEC azure.management_groups.operations.start_tenant_backfill
;
Gets tenant backfill status
EXEC azure.management_groups.operations.tenant_backfill_status
;