vw_b2c_tenants
Creates, updates, deletes, gets or lists a vw_b2c_tenants
resource.
Overview
Name | vw_b2c_tenants |
Type | View |
Id | azure.aad_b2c.vw_b2c_tenants |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
id as id,
name as name,
location as location,
type as type,
sku as sku,
tags as tags,
systemData as system_data,
JSON_EXTRACT(properties, '$.billingConfig') as "billing_config",
JSON_EXTRACT(properties, '$.tenantId') as "tenant_id",
JSON_EXTRACT(properties, '$.isGoLocalTenant') as "is_go_local_tenant",
subscriptionId,
resourceGroupName,
resourceName
FROM azure.aad_b2c.b2c_tenants
WHERE subscriptionId = 'replace-me';
SELECT
id as id,
name as name,
location as location,
type as type,
sku as sku,
tags as tags,
systemData as system_data,
json_extract_path_text(properties, '$.billingConfig') as "billing_config",
json_extract_path_text(properties, '$.tenantId') as "tenant_id",
json_extract_path_text(properties, '$.isGoLocalTenant') as "is_go_local_tenant",
subscriptionId,
resourceGroupName,
resourceName
FROM azure.aad_b2c.b2c_tenants
WHERE subscriptionId = 'replace-me';