vw_sender_usernames
Creates, updates, deletes, gets or lists a vw_sender_usernames
resource.
Overview
Name | vw_sender_usernames |
Type | View |
Id | azure.communication.vw_sender_usernames |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
JSON_EXTRACT(properties, '$.dataLocation') as "data_location",
JSON_EXTRACT(properties, '$.username') as "username",
JSON_EXTRACT(properties, '$.displayName') as "display_name",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
subscriptionId,
resourceGroupName,
emailServiceName,
domainName,
senderUsername
FROM azure.communication.sender_usernames
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND emailServiceName = 'replace-me' AND domainName = 'replace-me';
SELECT
json_extract_path_text(properties, '$.dataLocation') as "data_location",
json_extract_path_text(properties, '$.username') as "username",
json_extract_path_text(properties, '$.displayName') as "display_name",
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
subscriptionId,
resourceGroupName,
emailServiceName,
domainName,
senderUsername
FROM azure.communication.sender_usernames
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND emailServiceName = 'replace-me' AND domainName = 'replace-me';