Skip to main content

integration_runtime_connection_infos

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

Overview

Nameintegration_runtime_connection_infos
TypeResource
Idazure.synapse.integration_runtime_connection_infos

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
objectUnmatched properties from the message are deserialized to this collection.
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
getselectresource_group_name, workspace_name, integration_runtime_name, subscription_idGet integration runtime connection info. Get 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
integration_runtime_namestringIntegration runtime name. Required.
resource_group_namestringThe name of the resource group. The name is case insensitive. Required.
subscription_idstring
workspace_namestringThe name of the workspace. Required.

SELECT examples

Get integration runtime connection info. Get connection info for an integration runtime.

SELECT
,
hostServiceUri,
identityCertThumbprint,
isIdentityCertExprired,
publicKey,
serviceToken,
version
FROM azure.synapse.integration_runtime_connection_infos
WHERE resource_group_name = '{{ resource_group_name }}' -- required
AND workspace_name = '{{ workspace_name }}' -- required
AND integration_runtime_name = '{{ integration_runtime_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;