subscription_operation
Creates, updates, deletes, gets or lists a subscription_operation resource.
Overview
| Name | subscription_operation |
| Type | Resource |
| Id | azure.subscription.subscription_operation |
Fields
The following fields are returned by SELECT queries:
- get
| Name | Datatype | Description |
|---|---|---|
subscriptionLink | string | The link to the new subscription. Use this link to check the status of subscription creation operation. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | operation_id | Get the status of the pending Microsoft.Subscription API operations. |
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 |
|---|---|---|
operation_id | string | The operation ID, which can be found from the Location field in the generate recommendation response header. Required. |
SELECT examples
- get
Get the status of the pending Microsoft.Subscription API operations.
SELECT
subscriptionLink
FROM azure.subscription.subscription_operation
WHERE operation_id = '{{ operation_id }}' -- required
;