integration_runtime_connection_info
Creates, updates, deletes, gets or lists a integration_runtime_connection_info
resource.
Overview
Name | integration_runtime_connection_info |
Type | Resource |
Id | azure.synapse.integration_runtime_connection_info |
Fields
Name | Datatype | Description |
---|---|---|
hostServiceUri | string | The on-premises integration runtime host URL. |
identityCertThumbprint | string | The integration runtime SSL certificate thumbprint. Click-Once application uses it to do server validation. |
isIdentityCertExprired | boolean | Whether the identity certificate is expired. |
publicKey | string | The public key for encrypting a credential when transferring the credential to the integration runtime. |
serviceToken | string | The token generated in service. Callers use this token to authenticate to integration runtime. |
version | string | The integration runtime version. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | integrationRuntimeName, resourceGroupName, subscriptionId, workspaceName | Get 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 }}';