integration_runtime_auth_keys
Creates, updates, deletes, gets or lists a integration_runtime_auth_keys
resource.
Overview
Name | integration_runtime_auth_keys |
Type | Resource |
Id | azure.synapse.integration_runtime_auth_keys |
Fields
Name | Datatype | Description |
---|---|---|
authKey1 | string | The primary integration runtime authentication key. |
authKey2 | string | The secondary integration runtime authentication key. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT | integrationRuntimeName, resourceGroupName, subscriptionId, workspaceName | List authentication keys in an integration runtime |
regenerate | EXEC | integrationRuntimeName, resourceGroupName, subscriptionId, workspaceName | Regenerate the authentication key for an integration runtime |
SELECT
examples
List authentication keys in an integration runtime
SELECT
authKey1,
authKey2
FROM azure.synapse.integration_runtime_auth_keys
WHERE integrationRuntimeName = '{{ integrationRuntimeName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND workspaceName = '{{ workspaceName }}';