applications_azure_async_operation_status
Creates, updates, deletes, gets or lists an applications_azure_async_operation_status resource.
Overview
| Name | applications_azure_async_operation_status |
| Type | Resource |
| Id | azure.hdinsight.applications_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, resourceGroupName, clusterName, applicationName, operationId | Gets 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 |
|---|---|---|
applicationName | string | The constant value for the application name. |
clusterName | string | The name of the cluster. |
operationId | string | The long running operation id. |
resourceGroupName | string | The name of the resource group. |
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
Gets the async operation status.
SELECT
error,
status
FROM azure.hdinsight.applications_azure_async_operation_status
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND clusterName = '{{ clusterName }}' -- required
AND applicationName = '{{ applicationName }}' -- required
AND operationId = '{{ operationId }}' -- required
;