configurations
Creates, updates, deletes, gets or lists a configurations
resource.
Overview
Name | configurations |
Type | Resource |
Id | azure.hdinsight.configurations |
Fields
SELECT
not supported for this resource, use SHOW METHODS
to view available operations for the resource.
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | clusterName, configurationName, resourceGroupName, subscriptionId | 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. |
list | SELECT | clusterName, resourceGroupName, subscriptionId | Gets all configuration information for an HDI cluster. |
update | EXEC | clusterName, configurationName, resourceGroupName, subscriptionId | Configures the HTTP settings on the specified cluster. This API is deprecated, please use UpdateGatewaySettings in cluster endpoint instead. |
SELECT
examples
Gets all configuration information for an HDI cluster.
SELECT
FROM azure.hdinsight.configurations
WHERE clusterName = '{{ clusterName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';