Skip to main content

applications_azure_async_operation_status

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

Overview

Nameapplications_azure_async_operation_status
TypeResource
Idazure.hdinsight.applications_azure_async_operation_status

Fields

The following fields are returned by SELECT queries:

OK response definition.

NameDatatypeDescription
errorobjectThe error message associated with the cluster creation.
statusstringThe async operation state.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, resourceGroupName, clusterName, applicationName, operationIdGets 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.

NameDatatypeDescription
applicationNamestringThe constant value for the application name.
clusterNamestringThe name of the cluster.
operationIdstringThe long running operation id.
resourceGroupNamestringThe name of the resource group.
subscriptionIdstringThe subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.

SELECT examples

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
;