vw_integration_runtimes
Creates, updates, deletes, gets or lists a vw_integration_runtimes
resource.
Overview
Name | vw_integration_runtimes |
Type | View |
Id | azure.data_factory.vw_integration_runtimes |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
id as id,
name as name,
type as type,
etag as etag,
JSON_EXTRACT(properties, '$.type') as "type",
JSON_EXTRACT(properties, '$.description') as "description",
subscriptionId,
resourceGroupName,
factoryName,
integrationRuntimeName
FROM azure.data_factory.integration_runtimes
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND factoryName = 'replace-me';
SELECT
id as id,
name as name,
type as type,
etag as etag,
json_extract_path_text(properties, '$.type') as "type",
json_extract_path_text(properties, '$.description') as "description",
subscriptionId,
resourceGroupName,
factoryName,
integrationRuntimeName
FROM azure.data_factory.integration_runtimes
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND factoryName = 'replace-me';