vw_billing_account_policies
Creates, updates, deletes, gets or lists a vw_billing_account_policies
resource.
Overview
Name | vw_billing_account_policies |
Type | View |
Id | azure.subscription.vw_billing_account_policies |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
id as id,
name as name,
type as type,
systemData as system_data,
JSON_EXTRACT(properties, '$.serviceTenants') as "service_tenants",
JSON_EXTRACT(properties, '$.allowTransfers') as "allow_transfers",
billingAccountId
FROM azure.subscription.billing_account_policies
WHERE billingAccountId = 'replace-me';
SELECT
id as id,
name as name,
type as type,
systemData as system_data,
json_extract_path_text(properties, '$.serviceTenants') as "service_tenants",
json_extract_path_text(properties, '$.allowTransfers') as "allow_transfers",
billingAccountId
FROM azure.subscription.billing_account_policies
WHERE billingAccountId = 'replace-me';