Skip to main content

vw_data_exports

Creates, updates, deletes, gets or lists a vw_data_exports resource.

Overview

Namevw_data_exports
TypeView
Idazure.log_analytics.vw_data_exports

Fields

See the SQL Definition (view DDL) for fields returned by this view.

SQL Definition

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';