Skip to main content

extensions_azure_async_operation_status

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

Overview

Nameextensions_azure_async_operation_status
TypeResource
Idazure.hdinsight.extensions_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, extensionName, 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
clusterNamestringThe name of the cluster.
extensionNamestringThe name of the cluster extension.
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.extensions_azure_async_operation_status
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND clusterName = '{{ clusterName }}' -- required
AND extensionName = '{{ extensionName }}' -- required
AND operationId = '{{ operationId }}' -- required
;