integration_runtime_connection_info
Creates, updates, deletes, gets or lists an integration_runtime_connection_info
resource.
Overview
Name | integration_runtime_connection_info |
Type | Resource |
Id | azure.synapse.integration_runtime_connection_info |
Fields
The following fields are returned by SELECT
queries:
- get
OK.
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
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | subscriptionId , resourceGroupName , workspaceName , integrationRuntimeName | 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.
Name | Datatype | Description |
---|---|---|
integrationRuntimeName | string | Integration runtime name |
resourceGroupName | string | The name of the resource group. The name is case insensitive. |
subscriptionId | string | The ID of the target subscription. |
workspaceName | string | The name of the workspace. |
SELECT
examples
- get
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
;