transactions_by_invoices
Creates, updates, deletes, gets or lists a transactions_by_invoices
resource.
Overview
Name | transactions_by_invoices |
Type | Resource |
Id | azure.billing.transactions_by_invoices |
Fields
Name | Datatype | Description |
---|---|---|
properties | object | A transaction. |
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 |
---|---|---|---|
list | SELECT | billingAccountName, invoiceName | Lists the transactions for an invoice. Transactions include purchases, refunds and Azure usage charges. |
SELECT
examples
Lists the transactions for an invoice. Transactions include purchases, refunds and Azure usage charges.
SELECT
properties,
tags
FROM azure.billing.transactions_by_invoices
WHERE billingAccountName = '{{ billingAccountName }}'
AND invoiceName = '{{ invoiceName }}';