Skip to main content

transactions_by_invoices

Creates, updates, deletes, gets or lists a transactions_by_invoices resource.

Overview

Nametransactions_by_invoices
TypeResource
Idazure.billing.transactions_by_invoices

Fields

NameDatatypeDescription
propertiesobjectA transaction.
tagsobjectDictionary 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

NameAccessible byRequired ParamsDescription
listSELECTbillingAccountName, invoiceNameLists 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 }}';