clusters_gateway_settings
Creates, updates, deletes, gets or lists a clusters_gateway_settings
resource.
Overview
Name | clusters_gateway_settings |
Type | Resource |
Id | azure.hdinsight.clusters_gateway_settings |
Fields
Name | Datatype | Description |
---|---|---|
restAuthCredential.isEnabled | string | Indicates whether or not the gateway settings based authorization is enabled. |
restAuthCredential.password | string | The gateway settings user password. |
restAuthCredential.username | string | The gateway settings user name. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | clusterName, resourceGroupName, subscriptionId | Gets the gateway settings for the specified cluster. |
update | EXEC | clusterName, resourceGroupName, subscriptionId | Configures the gateway settings on the specified cluster. |
SELECT
examples
Gets the gateway settings for the specified cluster.
SELECT
restAuthCredential.isEnabled,
restAuthCredential.password,
restAuthCredential.username
FROM azure.hdinsight.clusters_gateway_settings
WHERE clusterName = '{{ clusterName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';