vw_data_exports
Creates, updates, deletes, gets or lists a vw_data_exports
resource.
Overview
Name | vw_data_exports |
Type | View |
Id | azure.log_analytics.vw_data_exports |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
JSON_EXTRACT(properties, '$.dataExportId') as "data_export_id",
JSON_EXTRACT(properties, '$.tableNames') as "table_names",
JSON_EXTRACT(properties, '$.destination') as "destination",
JSON_EXTRACT(properties, '$.enable') as "enable",
JSON_EXTRACT(properties, '$.createdDate') as "created_date",
JSON_EXTRACT(properties, '$.lastModifiedDate') as "last_modified_date",
subscriptionId,
resourceGroupName,
workspaceName,
dataExportName
FROM azure.log_analytics.data_exports
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND workspaceName = 'replace-me';
SELECT
json_extract_path_text(properties, '$.dataExportId') as "data_export_id",
json_extract_path_text(properties, '$.tableNames') as "table_names",
json_extract_path_text(properties, '$.destination') as "destination",
json_extract_path_text(properties, '$.enable') as "enable",
json_extract_path_text(properties, '$.createdDate') as "created_date",
json_extract_path_text(properties, '$.lastModifiedDate') as "last_modified_date",
subscriptionId,
resourceGroupName,
workspaceName,
dataExportName
FROM azure.log_analytics.data_exports
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND workspaceName = 'replace-me';