Skip to main content

partner_transfers

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

Overview

Namepartner_transfers
TypeResource
Idazure.billing.partner_transfers

Fields

NameDatatypeDescription
billingAccountNametextfield from the properties object
billingProfileNametextfield from the properties object
canceled_bytextfield from the properties object
customerNametextfield from the properties object
detailed_transfer_statustextfield from the properties object
expiration_timetextfield from the properties object
initiator_customer_typetextfield from the properties object
initiator_email_idtextfield from the properties object
recipient_email_idtextfield from the properties object
reseller_idtextfield from the properties object
reseller_nametextfield 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, customerName, transferNameGets a transfer request by ID. The operation is supported only for billing accounts with agreement type Microsoft Partner Agreement.
listSELECTbillingAccountName, billingProfileName, customerNameLists the transfer requests sent to a customer. The operation is supported only for billing accounts with agreement type Microsoft Partner Agreement.
cancelEXECbillingAccountName, billingProfileName, customerName, transferNameCancels a transfer request. The operation is supported only for billing accounts with agreement type Microsoft Partner Agreement.
initiateEXECbillingAccountName, billingProfileName, customerName, transferNameSends a request to a user in a customer's billing account to transfer billing ownership of their subscriptions. The operation is supported only for billing accounts with agreement type Microsoft Partner Agreement.

SELECT examples

Lists the transfer requests sent to a customer. The operation is supported only for billing accounts with agreement type Microsoft Partner Agreement.

SELECT
billingAccountName,
billingProfileName,
canceled_by,
customerName,
detailed_transfer_status,
expiration_time,
initiator_customer_type,
initiator_email_id,
recipient_email_id,
reseller_id,
reseller_name,
tags,
transferName,
transfer_status
FROM azure.billing.vw_partner_transfers
WHERE billingAccountName = '{{ billingAccountName }}'
AND billingProfileName = '{{ billingProfileName }}'
AND customerName = '{{ customerName }}';