vw_role_definition_by_invoice_sections
Creates, updates, deletes, gets or lists a vw_role_definition_by_invoice_sections
resource.
Overview
Name | vw_role_definition_by_invoice_sections |
Type | View |
Id | azure.billing.vw_role_definition_by_invoice_sections |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
tags as tags,
JSON_EXTRACT(properties, '$.description') as "description",
JSON_EXTRACT(properties, '$.permissions') as "permissions",
JSON_EXTRACT(properties, '$.roleName') as "role_name",
billingAccountName,
billingProfileName,
invoiceSectionName,
roleDefinitionName
FROM azure.billing.role_definition_by_invoice_sections
WHERE billingAccountName = 'replace-me' AND billingProfileName = 'replace-me' AND invoiceSectionName = 'replace-me';
SELECT
tags as tags,
json_extract_path_text(properties, '$.description') as "description",
json_extract_path_text(properties, '$.permissions') as "permissions",
json_extract_path_text(properties, '$.roleName') as "role_name",
billingAccountName,
billingProfileName,
invoiceSectionName,
roleDefinitionName
FROM azure.billing.role_definition_by_invoice_sections
WHERE billingAccountName = 'replace-me' AND billingProfileName = 'replace-me' AND invoiceSectionName = 'replace-me';