vw_scheduled_actions
Creates, updates, deletes, gets or lists a vw_scheduled_actions
resource.
Overview
Name | vw_scheduled_actions |
Type | View |
Id | azure.cost_management.vw_scheduled_actions |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
eTag as e_tag,
kind as kind,
systemData as system_data,
JSON_EXTRACT(properties, '$.displayName') as "display_name",
JSON_EXTRACT(properties, '$.fileDestination') as "file_destination",
JSON_EXTRACT(properties, '$.notification') as "notification",
JSON_EXTRACT(properties, '$.notificationEmail') as "notification_email",
JSON_EXTRACT(properties, '$.schedule') as "schedule",
JSON_EXTRACT(properties, '$.scope') as "scope",
JSON_EXTRACT(properties, '$.status') as "status",
JSON_EXTRACT(properties, '$.viewId') as "view_id",
scope,
name
FROM azure.cost_management.scheduled_actions
WHERE scope = 'replace-me' AND name = 'replace-me';
SELECT
eTag as e_tag,
kind as kind,
systemData as system_data,
json_extract_path_text(properties, '$.displayName') as "display_name",
json_extract_path_text(properties, '$.fileDestination') as "file_destination",
json_extract_path_text(properties, '$.notification') as "notification",
json_extract_path_text(properties, '$.notificationEmail') as "notification_email",
json_extract_path_text(properties, '$.schedule') as "schedule",
json_extract_path_text(properties, '$.scope') as "scope",
json_extract_path_text(properties, '$.status') as "status",
json_extract_path_text(properties, '$.viewId') as "view_id",
scope,
name
FROM azure.cost_management.scheduled_actions
WHERE scope = 'replace-me' AND name = 'replace-me';