integration_runtimes_auth_keys
Creates, updates, deletes, gets or lists a integration_runtimes_auth_keys
resource.
Overview
Name | integration_runtimes_auth_keys |
Type | Resource |
Id | azure.data_factory.integration_runtimes_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 | factoryName, integrationRuntimeName, resourceGroupName, subscriptionId | Retrieves the authentication keys for an integration runtime. |
SELECT
examples
Retrieves the authentication keys for an integration runtime.
SELECT
authKey1,
authKey2
FROM azure.data_factory.integration_runtimes_auth_keys
WHERE factoryName = '{{ factoryName }}'
AND integrationRuntimeName = '{{ integrationRuntimeName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';