Skip to main content

accounts_invoice_sections_by_create_subscription_permissions

Creates, updates, deletes, gets or lists an accounts_invoice_sections_by_create_subscription_permissions resource.

Overview

Nameaccounts_invoice_sections_by_create_subscription_permissions
TypeResource
Idazure.billing.accounts_invoice_sections_by_create_subscription_permissions

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
billingProfileDisplayNamestringThe name of the billing profile.
billingProfileIdstringThe fully qualified ID that uniquely identifies a billing profile.
billingProfileSpendingLimitstringThe billing profile spending limit.
billingProfileStatusstringThe status of the billing profile.
billingProfileStatusReasonCodestringReason for the specified billing profile status.
billingProfileSystemIdstringThe system generated unique identifier for a billing profile.
enabledAzurePlansarrayEnabled azure plans for the associated billing profile.
invoiceSectionDisplayNamestringThe name of the invoice section.
invoiceSectionIdstringThe fully qualified ID that uniquely identifies an invoice section.
invoiceSectionSystemIdstringThe system generated unique identifier for an invoice section.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectbillingAccountNamefilterLists 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.

NameDatatypeDescription
billingAccountNamestringThe ID that uniquely identifies a billing account.
filterstringThe filter query option allows clients to filter a collection of resources that are addressed by a request URL.

SELECT examples

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 }}'
;