Skip to main content

configurations

Creates, updates, deletes, gets or lists a configurations resource.

Overview

Nameconfigurations
TypeResource
Idazure.hdinsight.configurations

Fields

The following fields are returned by SELECT queries:

OK response definition.

NameDatatypeDescription

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, resourceGroupName, clusterName, configurationNameThe configuration object for the specified cluster. This API is not recommended and might be removed in the future. Please consider using List configurations API instead.
listselectsubscriptionId, resourceGroupName, clusterNameGets all configuration information for an HDI cluster.
updateexecsubscriptionId, resourceGroupName, clusterName, configurationNameConfigures the HTTP settings on the specified cluster. This API is deprecated, please use UpdateGatewaySettings in cluster endpoint instead.

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.
configurationNamestringThe name of the cluster configuration.
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

The configuration object for the specified cluster. This API is not recommended and might be removed in the future. Please consider using List configurations API instead.

SELECT
*
FROM azure.hdinsight.configurations
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND clusterName = '{{ clusterName }}' -- required
AND configurationName = '{{ configurationName }}' -- required
;

Lifecycle Methods

Configures the HTTP settings on the specified cluster. This API is deprecated, please use UpdateGatewaySettings in cluster endpoint instead.

EXEC azure.hdinsight.configurations.update 
@subscriptionId='{{ subscriptionId }}' --required,
@resourceGroupName='{{ resourceGroupName }}' --required,
@clusterName='{{ clusterName }}' --required,
@configurationName='{{ configurationName }}' --required
;