vw_blob_inventory_policies
Creates, updates, deletes, gets or lists a vw_blob_inventory_policies
resource.
Overview
Name | vw_blob_inventory_policies |
Type | View |
Id | azure.storage.vw_blob_inventory_policies |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
id as id,
name as name,
systemData as system_data,
type as type,
JSON_EXTRACT(properties, '$.lastModifiedTime') as "last_modified_time",
JSON_EXTRACT(properties, '$.policy') as "policy",
subscriptionId,
resourceGroupName,
accountName,
blobInventoryPolicyName
FROM azure.storage.blob_inventory_policies
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND accountName = 'replace-me';
SELECT
id as id,
name as name,
systemData as system_data,
type as type,
json_extract_path_text(properties, '$.lastModifiedTime') as "last_modified_time",
json_extract_path_text(properties, '$.policy') as "policy",
subscriptionId,
resourceGroupName,
accountName,
blobInventoryPolicyName
FROM azure.storage.blob_inventory_policies
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND accountName = 'replace-me';