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
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
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT | billingAccountName, billingProfileName, invoiceSectionName | Lists the billing permissions the caller has for an invoice section. |
SELECT
examples
Lists the billing permissions the caller has for an invoice section.
SELECT
actions,
notActions
FROM azure.billing.permissions_by_invoice_sections
WHERE billingAccountName = '{{ billingAccountName }}'
AND billingProfileName = '{{ billingProfileName }}'
AND invoiceSectionName = '{{ invoiceSectionName }}';