integration_runtimes_connection_info
Creates, updates, deletes, gets or lists a integration_runtimes_connection_info
resource.
Overview
Name | integration_runtimes_connection_info |
Type | Resource |
Id | azure.data_factory.integration_runtimes_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 | factoryName, integrationRuntimeName, resourceGroupName, subscriptionId | Gets the on-premises integration runtime connection information for encrypting the on-premises data source credentials. |
SELECT
examples
Gets the on-premises integration runtime connection information for encrypting the on-premises data source credentials.
SELECT
hostServiceUri,
identityCertThumbprint,
isIdentityCertExprired,
publicKey,
serviceToken,
version
FROM azure.data_factory.integration_runtimes_connection_info
WHERE factoryName = '{{ factoryName }}'
AND integrationRuntimeName = '{{ integrationRuntimeName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';