vw_identity_providers
Creates, updates, deletes, gets or lists a vw_identity_providers
resource.
Overview
Name | vw_identity_providers |
Type | View |
Id | azure.api_management.vw_identity_providers |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
JSON_EXTRACT(properties, '$.clientId') as "client_id",
JSON_EXTRACT(properties, '$.clientSecret') as "client_secret",
JSON_EXTRACT(properties, '$.type') as "type",
JSON_EXTRACT(properties, '$.signinTenant') as "signin_tenant",
JSON_EXTRACT(properties, '$.allowedTenants') as "allowed_tenants",
JSON_EXTRACT(properties, '$.authority') as "authority",
JSON_EXTRACT(properties, '$.signupPolicyName') as "signup_policy_name",
JSON_EXTRACT(properties, '$.signinPolicyName') as "signin_policy_name",
JSON_EXTRACT(properties, '$.profileEditingPolicyName') as "profile_editing_policy_name",
JSON_EXTRACT(properties, '$.passwordResetPolicyName') as "password_reset_policy_name",
JSON_EXTRACT(properties, '$.clientLibrary') as "client_library",
subscriptionId,
resourceGroupName,
serviceName,
identityProviderName
FROM azure.api_management.identity_providers
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND serviceName = 'replace-me';
SELECT
json_extract_path_text(properties, '$.clientId') as "client_id",
json_extract_path_text(properties, '$.clientSecret') as "client_secret",
json_extract_path_text(properties, '$.type') as "type",
json_extract_path_text(properties, '$.signinTenant') as "signin_tenant",
json_extract_path_text(properties, '$.allowedTenants') as "allowed_tenants",
json_extract_path_text(properties, '$.authority') as "authority",
json_extract_path_text(properties, '$.signupPolicyName') as "signup_policy_name",
json_extract_path_text(properties, '$.signinPolicyName') as "signin_policy_name",
json_extract_path_text(properties, '$.profileEditingPolicyName') as "profile_editing_policy_name",
json_extract_path_text(properties, '$.passwordResetPolicyName') as "password_reset_policy_name",
json_extract_path_text(properties, '$.clientLibrary') as "client_library",
subscriptionId,
resourceGroupName,
serviceName,
identityProviderName
FROM azure.api_management.identity_providers
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND serviceName = 'replace-me';