role_definition_by_invoice_sections
Creates, updates, deletes, gets or lists a role_definition_by_invoice_sections
resource.
Overview
Name | role_definition_by_invoice_sections |
Type | Resource |
Id | azure.billing.role_definition_by_invoice_sections |
Fields
- vw_role_definition_by_invoice_sections
- role_definition_by_invoice_sections
Name | Datatype | Description |
---|---|---|
description | text | field from the properties object |
billingAccountName | text | field from the properties object |
billingProfileName | text | field from the properties object |
invoiceSectionName | text | field from the properties object |
permissions | text | field from the properties object |
roleDefinitionName | text | field from the properties object |
role_name | text | field from the properties object |
tags | text | Dictionary of metadata associated with the resource. It may not be populated for all resource types. Maximum key/value length supported of 256 characters. Keys/value should not empty value nor null. Keys can not contain < > % & \ ? / |
Name | Datatype | Description |
---|---|---|
properties | object | The properties of a role definition. |
tags | object | Dictionary of metadata associated with the resource. It may not be populated for all resource types. Maximum key/value length supported of 256 characters. Keys/value should not empty value nor null. Keys can not contain < > % & \ ? / |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | billingAccountName, billingProfileName, invoiceSectionName, roleDefinitionName | Gets the definition for a role on an invoice section. The operation is supported only for billing accounts with agreement type Microsoft Customer Agreement. |
list | SELECT | billingAccountName, billingProfileName, invoiceSectionName | Lists the role definitions for an invoice section. The operation is supported for billing accounts with agreement type Microsoft Partner Agreement or Microsoft Customer Agreement. |
SELECT
examples
Lists the role definitions for an invoice section. The operation is supported for billing accounts with agreement type Microsoft Partner Agreement or Microsoft Customer Agreement.
- vw_role_definition_by_invoice_sections
- role_definition_by_invoice_sections
SELECT
description,
billingAccountName,
billingProfileName,
invoiceSectionName,
permissions,
roleDefinitionName,
role_name,
tags
FROM azure.billing.vw_role_definition_by_invoice_sections
WHERE billingAccountName = '{{ billingAccountName }}'
AND billingProfileName = '{{ billingProfileName }}'
AND invoiceSectionName = '{{ invoiceSectionName }}';
SELECT
properties,
tags
FROM azure.billing.role_definition_by_invoice_sections
WHERE billingAccountName = '{{ billingAccountName }}'
AND billingProfileName = '{{ billingProfileName }}'
AND invoiceSectionName = '{{ invoiceSectionName }}';