Skip to main content

operations

Creates, updates, deletes, gets or lists an operations resource.

Overview

Nameoperations
TypeResource
Idazure.subscription.operations

Fields

The following fields are returned by SELECT queries:

Successful completion of the asynchronous operation

NameDatatypeDescription
subscriptionLinkstringThe 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:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectoperationIdGet the status of the pending Microsoft.Subscription API operations.
listselectLists all of the available 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.

NameDatatypeDescription
operationIdstringThe operation ID, which can be found from the Location field in the generate recommendation response header.

SELECT examples

Get the status of the pending Microsoft.Subscription API operations.

SELECT
subscriptionLink
FROM azure.subscription.operations
WHERE operationId = '{{ operationId }}' -- required
;