vw_factories
Creates, updates, deletes, gets or lists a vw_factories
resource.
Overview
Name | vw_factories |
Type | View |
Id | azure.data_factory.vw_factories |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
id as id,
name as name,
location as location,
type as type,
tags as tags,
eTag as e_tag,
identity as identity,
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.createTime') as "create_time",
JSON_EXTRACT(properties, '$.version') as "version",
JSON_EXTRACT(properties, '$.purviewConfiguration') as "purview_configuration",
JSON_EXTRACT(properties, '$.repoConfiguration') as "repo_configuration",
JSON_EXTRACT(properties, '$.globalParameters') as "global_parameters",
JSON_EXTRACT(properties, '$.encryption') as "encryption",
JSON_EXTRACT(properties, '$.publicNetworkAccess') as "public_network_access",
subscriptionId,
resourceGroupName,
factoryName
FROM azure.data_factory.factories
WHERE subscriptionId = 'replace-me';
SELECT
id as id,
name as name,
location as location,
type as type,
tags as tags,
eTag as e_tag,
identity as identity,
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.createTime') as "create_time",
json_extract_path_text(properties, '$.version') as "version",
json_extract_path_text(properties, '$.purviewConfiguration') as "purview_configuration",
json_extract_path_text(properties, '$.repoConfiguration') as "repo_configuration",
json_extract_path_text(properties, '$.globalParameters') as "global_parameters",
json_extract_path_text(properties, '$.encryption') as "encryption",
json_extract_path_text(properties, '$.publicNetworkAccess') as "public_network_access",
subscriptionId,
resourceGroupName,
factoryName
FROM azure.data_factory.factories
WHERE subscriptionId = 'replace-me';