Skip to main content

integration_runtimes_auth_keys

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

Overview

Nameintegration_runtimes_auth_keys
TypeResource
Idazure.data_factory.integration_runtimes_auth_keys

Fields

NameDatatypeDescription
authKey1stringThe primary integration runtime authentication key.
authKey2stringThe secondary integration runtime authentication key.

Methods

NameAccessible byRequired ParamsDescription
listSELECTfactoryName, integrationRuntimeName, resourceGroupName, subscriptionIdRetrieves 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 }}';