vw_webhooks
Creates, updates, deletes, gets or lists a vw_webhooks
resource.
Overview
Name | vw_webhooks |
Type | View |
Id | azure_extras.app_compliance_automation.vw_webhooks |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
JSON_EXTRACT(properties, '$.webhookId') as "webhook_id",
JSON_EXTRACT(properties, '$.status') as "status",
JSON_EXTRACT(properties, '$.tenantId') as "tenant_id",
JSON_EXTRACT(properties, '$.sendAllEvents') as "send_all_events",
JSON_EXTRACT(properties, '$.events') as "events",
JSON_EXTRACT(properties, '$.payloadUrl') as "payload_url",
JSON_EXTRACT(properties, '$.contentType') as "content_type",
JSON_EXTRACT(properties, '$.webhookKey') as "webhook_key",
JSON_EXTRACT(properties, '$.updateWebhookKey') as "update_webhook_key",
JSON_EXTRACT(properties, '$.webhookKeyEnabled') as "webhook_key_enabled",
JSON_EXTRACT(properties, '$.enableSslVerification') as "enable_ssl_verification",
JSON_EXTRACT(properties, '$.deliveryStatus') as "delivery_status",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
reportName,
webhookName
FROM azure_extras.app_compliance_automation.webhooks
WHERE reportName = 'replace-me';
SELECT
json_extract_path_text(properties, '$.webhookId') as "webhook_id",
json_extract_path_text(properties, '$.status') as "status",
json_extract_path_text(properties, '$.tenantId') as "tenant_id",
json_extract_path_text(properties, '$.sendAllEvents') as "send_all_events",
json_extract_path_text(properties, '$.events') as "events",
json_extract_path_text(properties, '$.payloadUrl') as "payload_url",
json_extract_path_text(properties, '$.contentType') as "content_type",
json_extract_path_text(properties, '$.webhookKey') as "webhook_key",
json_extract_path_text(properties, '$.updateWebhookKey') as "update_webhook_key",
json_extract_path_text(properties, '$.webhookKeyEnabled') as "webhook_key_enabled",
json_extract_path_text(properties, '$.enableSslVerification') as "enable_ssl_verification",
json_extract_path_text(properties, '$.deliveryStatus') as "delivery_status",
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
reportName,
webhookName
FROM azure_extras.app_compliance_automation.webhooks
WHERE reportName = 'replace-me';