vw_data_services
Creates, updates, deletes, gets or lists a vw_data_services
resource.
Overview
Name | vw_data_services |
Type | View |
Id | azure.hybrid_data_manager.vw_data_services |
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,
JSON_EXTRACT(properties, '$.state') as "state",
JSON_EXTRACT(properties, '$.supportedDataSinkTypes') as "supported_data_sink_types",
JSON_EXTRACT(properties, '$.supportedDataSourceTypes') as "supported_data_source_types",
subscriptionId,
resourceGroupName,
dataManagerName,
dataServiceName
FROM azure.hybrid_data_manager.data_services
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND dataManagerName = 'replace-me';
SELECT
id as id,
name as name,
type as type,
json_extract_path_text(properties, '$.state') as "state",
json_extract_path_text(properties, '$.supportedDataSinkTypes') as "supported_data_sink_types",
json_extract_path_text(properties, '$.supportedDataSourceTypes') as "supported_data_source_types",
subscriptionId,
resourceGroupName,
dataManagerName,
dataServiceName
FROM azure.hybrid_data_manager.data_services
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND dataManagerName = 'replace-me';