accounts_invoice_sections_by_create_subscription_permissions
Creates, updates, deletes, gets or lists an accounts_invoice_sections_by_create_subscription_permissions
resource.
Overview
Name | accounts_invoice_sections_by_create_subscription_permissions |
Type | Resource |
Id | azure.billing.accounts_invoice_sections_by_create_subscription_permissions |
Fields
The following fields are returned by SELECT
queries:
- list
Name | Datatype | Description |
---|---|---|
billingProfileDisplayName | string | The name of the billing profile. |
billingProfileId | string | The fully qualified ID that uniquely identifies a billing profile. |
billingProfileSpendingLimit | string | The billing profile spending limit. |
billingProfileStatus | string | The status of the billing profile. |
billingProfileStatusReasonCode | string | Reason for the specified billing profile status. |
billingProfileSystemId | string | The system generated unique identifier for a billing profile. |
enabledAzurePlans | array | Enabled azure plans for the associated billing profile. |
invoiceSectionDisplayName | string | The name of the invoice section. |
invoiceSectionId | string | The fully qualified ID that uniquely identifies an invoice section. |
invoiceSectionSystemId | string | The system generated unique identifier for an invoice section. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | billingAccountName | filter | Lists the invoice sections for which the user has permission to create Azure subscriptions. The operation is supported only for billing accounts with agreement type Microsoft Customer Agreement. |
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. |
filter | string | The filter query option allows clients to filter a collection of resources that are addressed by a request URL. |
SELECT
examples
- list
Lists the invoice sections for which the user has permission to create Azure subscriptions. The operation is supported only for billing accounts with agreement type Microsoft Customer Agreement.
SELECT
billingProfileDisplayName,
billingProfileId,
billingProfileSpendingLimit,
billingProfileStatus,
billingProfileStatusReasonCode,
billingProfileSystemId,
enabledAzurePlans,
invoiceSectionDisplayName,
invoiceSectionId,
invoiceSectionSystemId
FROM azure.billing.accounts_invoice_sections_by_create_subscription_permissions
WHERE billingAccountName = '{{ billingAccountName }}' -- required
AND filter = '{{ filter }}'
;