vw_clients
Creates, updates, deletes, gets or lists a vw_clients
resource.
Overview
Name | vw_clients |
Type | View |
Id | azure.event_grid.vw_clients |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
id as id,
name as name,
type as type,
systemData as system_data,
JSON_EXTRACT(properties, '$.description') as "description",
JSON_EXTRACT(properties, '$.authenticationName') as "authentication_name",
JSON_EXTRACT(properties, '$.clientCertificateAuthentication') as "client_certificate_authentication",
JSON_EXTRACT(properties, '$.state') as "state",
JSON_EXTRACT(properties, '$.attributes') as "attributes",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
subscriptionId,
resourceGroupName,
namespaceName,
clientName
FROM azure.event_grid.clients
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND namespaceName = 'replace-me';
SELECT
id as id,
name as name,
type as type,
systemData as system_data,
json_extract_path_text(properties, '$.description') as "description",
json_extract_path_text(properties, '$.authenticationName') as "authentication_name",
json_extract_path_text(properties, '$.clientCertificateAuthentication') as "client_certificate_authentication",
json_extract_path_text(properties, '$.state') as "state",
json_extract_path_text(properties, '$.attributes') as "attributes",
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
subscriptionId,
resourceGroupName,
namespaceName,
clientName
FROM azure.event_grid.clients
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND namespaceName = 'replace-me';