permissions_by_invoice_sections
Creates, updates, deletes, gets or lists a permissions_by_invoice_sections resource.
Overview
| Name | permissions_by_invoice_sections |
| Type | Resource |
| Id | azure.billing.permissions_by_invoice_sections |
Fields
The following fields are returned by SELECT queries:
- list
The list of billingPermissions a caller has on an invoice section.
| Name | Datatype | Description |
|---|---|---|
actions | array | The set of actions that the caller is allowed to perform. |
notActions | array | The set of actions that the caller is not allowed to perform. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | billingAccountName, billingProfileName, invoiceSectionName | Lists the billing permissions the caller has for an invoice section. |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
billingAccountName | string | The ID that uniquely identifies a billing account. |
billingProfileName | string | The ID that uniquely identifies a billing profile. |
invoiceSectionName | string | The ID that uniquely identifies an invoice section. |
SELECT examples
- list
Lists the billing permissions the caller has for an invoice section.
SELECT
actions,
notActions
FROM azure.billing.permissions_by_invoice_sections
WHERE billingAccountName = '{{ billingAccountName }}' -- required
AND billingProfileName = '{{ billingProfileName }}' -- required
AND invoiceSectionName = '{{ invoiceSectionName }}' -- required
;