Skip to main content

integration_runtime_connection_info

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

Overview

Nameintegration_runtime_connection_info
TypeResource
Idazure.synapse.integration_runtime_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, workspaceName, integrationRuntimeNameGet connection info for an integration runtime

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
integrationRuntimeNamestringIntegration runtime name
resourceGroupNamestringThe name of the resource group. The name is case insensitive.
subscriptionIdstringThe ID of the target subscription.
workspaceNamestringThe name of the workspace.

SELECT examples

Get connection info for an integration runtime

SELECT
hostServiceUri,
identityCertThumbprint,
isIdentityCertExprired,
publicKey,
serviceToken,
version
FROM azure.synapse.integration_runtime_connection_info
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND workspaceName = '{{ workspaceName }}' -- required
AND integrationRuntimeName = '{{ integrationRuntimeName }}' -- required
;