Skip to main content

integration_runtime_connection_info

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

Overview

Nameintegration_runtime_connection_info
TypeResource
Idazure.synapse.integration_runtime_connection_info

Fields

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

NameAccessible byRequired ParamsDescription
getSELECTintegrationRuntimeName, resourceGroupName, subscriptionId, workspaceNameGet connection info for an integration runtime

SELECT examples

Get connection info for an integration runtime

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