Skip to main content

transfers

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

Overview

Nametransfers
TypeResource
Idazure.billing.transfers

Fields

NameDatatypeDescription
billingAccountNametextfield from the properties object
billingProfileNametextfield from the properties object
canceled_bytextfield from the properties object
detailed_transfer_statustextfield from the properties object
expiration_timetextfield from the properties object
initiator_email_idtextfield from the properties object
invoiceSectionNametextfield from the properties object
recipient_email_idtextfield from the properties object
tagstextDictionary 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 < > % & \ ? /
transferNametextfield from the properties object
transfer_statustextfield from the properties object

Methods

NameAccessible byRequired ParamsDescription
getSELECTbillingAccountName, billingProfileName, invoiceSectionName, transferNameGets a transfer request by ID. The operation is supported only for billing accounts with agreement type Microsoft Customer Agreement.
listSELECTbillingAccountName, billingProfileName, invoiceSectionNameLists the transfer requests for an invoice section. The operation is supported only for billing accounts with agreement type Microsoft Customer Agreement.
cancelEXECbillingAccountName, billingProfileName, invoiceSectionName, transferNameCancels a transfer request. The operation is supported only for billing accounts with agreement type Microsoft Customer Agreement.
initiateEXECbillingAccountName, billingProfileName, invoiceSectionName, transferNameSends a request to a user in another billing account to transfer billing ownership of their subscriptions. The operation is supported only for billing accounts with agreement type Microsoft Customer Agreement.

SELECT examples

Lists the transfer requests for an invoice section. The operation is supported only for billing accounts with agreement type Microsoft Customer Agreement.

SELECT
billingAccountName,
billingProfileName,
canceled_by,
detailed_transfer_status,
expiration_time,
initiator_email_id,
invoiceSectionName,
recipient_email_id,
tags,
transferName,
transfer_status
FROM azure.billing.vw_transfers
WHERE billingAccountName = '{{ billingAccountName }}'
AND billingProfileName = '{{ billingProfileName }}'
AND invoiceSectionName = '{{ invoiceSectionName }}';