vw_azure_ad_only_authentications
Creates, updates, deletes, gets or lists a vw_azure_ad_only_authentications
resource.
Overview
Name | vw_azure_ad_only_authentications |
Type | View |
Id | azure.synapse.vw_azure_ad_only_authentications |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
JSON_EXTRACT(properties, '$.azureADOnlyAuthentication') as "azure_ad_only_authentication",
JSON_EXTRACT(properties, '$.state') as "state",
JSON_EXTRACT(properties, '$.creationDate') as "creation_date",
subscriptionId,
resourceGroupName,
workspaceName,
azureADOnlyAuthenticationName
FROM azure.synapse.azure_ad_only_authentications
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND workspaceName = 'replace-me';
SELECT
json_extract_path_text(properties, '$.azureADOnlyAuthentication') as "azure_ad_only_authentication",
json_extract_path_text(properties, '$.state') as "state",
json_extract_path_text(properties, '$.creationDate') as "creation_date",
subscriptionId,
resourceGroupName,
workspaceName,
azureADOnlyAuthenticationName
FROM azure.synapse.azure_ad_only_authentications
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND workspaceName = 'replace-me';