vw_ciam_tenants
Creates, updates, deletes, gets or lists a vw_ciam_tenants
resource.
Overview
Name | vw_ciam_tenants |
Type | View |
Id | azure.aad_b2c.vw_ciam_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, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.createTenantProperties') as "create_tenant_properties",
JSON_EXTRACT(properties, '$.domainName') as "domain_name",
JSON_EXTRACT(properties, '$.billingConfig') as "billing_config",
JSON_EXTRACT(properties, '$.tenantId') as "tenant_id",
subscriptionId,
resourceGroupName,
resourceName
FROM azure.aad_b2c.ciam_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, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.createTenantProperties') as "create_tenant_properties",
json_extract_path_text(properties, '$.domainName') as "domain_name",
json_extract_path_text(properties, '$.billingConfig') as "billing_config",
json_extract_path_text(properties, '$.tenantId') as "tenant_id",
subscriptionId,
resourceGroupName,
resourceName
FROM azure.aad_b2c.ciam_tenants
WHERE subscriptionId = 'replace-me';