Skip to main content

integration_runtimes_connection_info

Creates, updates, deletes, gets or lists an integration_runtimes_connection_info resource.

Overview

Nameintegration_runtimes_connection_info
TypeResource
Idazure.data_factory.integration_runtimes_connection_info

Fields

The following fields are returned by SELECT queries:

OK.

NameDatatypeDescription
hostServiceUristringThe on-premises integration runtime host URL.
identityCertThumbprintstringThe integration runtime SSL certificate thumbprint. Click-Once application uses it to do server validation.
isIdentityCertExpriredbooleanWhether the identity certificate is expired.
publicKeystringThe public key for encrypting a credential when transferring the credential to the integration runtime.
serviceTokenstringThe token generated in service. Callers use this token to authenticate to integration runtime.
versionstringThe integration runtime version.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, resourceGroupName, factoryName, integrationRuntimeNameapi-versionGets the on-premises integration runtime connection information for encrypting the on-premises data source credentials.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
factoryNamestringThe factory name.
integrationRuntimeNamestringThe integration runtime name.
resourceGroupNamestringThe resource group name.
subscriptionIdstringThe subscription identifier.
api-versionstringThe API version.

SELECT examples

Gets the on-premises integration runtime connection information for encrypting the on-premises data source credentials.

SELECT
hostServiceUri,
identityCertThumbprint,
isIdentityCertExprired,
publicKey,
serviceToken,
version
FROM azure.data_factory.integration_runtimes_connection_info
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND factoryName = '{{ factoryName }}' -- required
AND integrationRuntimeName = '{{ integrationRuntimeName }}' -- required
AND api-version = '{{ api-version }}'
;