locations_azure_async_operation_status
Creates, updates, deletes, gets or lists a locations_azure_async_operation_status
resource.
Overview
Name | locations_azure_async_operation_status |
Type | Resource |
Id | azure.hdinsight.locations_azure_async_operation_status |
Fields
The following fields are returned by SELECT
queries:
- get
OK response definition.
Name | Datatype | Description |
---|---|---|
error | object | The error message associated with the cluster creation. |
status | string | The async operation state. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | subscriptionId , location , operationId | Get the async operation 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 |
---|---|---|
location | string | The Azure location (region) for which to make the request. |
operationId | string | The long running operation id. |
subscriptionId | string | The subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. |
SELECT
examples
- get
Get the async operation status.
SELECT
error,
status
FROM azure.hdinsight.locations_azure_async_operation_status
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND location = '{{ location }}' -- required
AND operationId = '{{ operationId }}' -- required
;