partner_transfers
Creates, updates, deletes, gets or lists a partner_transfers
resource.
Overview
Name | partner_transfers |
Type | Resource |
Id | azure.billing.partner_transfers |
Fields
- vw_partner_transfers
- partner_transfers
Name | Datatype | Description |
---|---|---|
billingAccountName | text | field from the properties object |
billingProfileName | text | field from the properties object |
canceled_by | text | field from the properties object |
customerName | text | field from the properties object |
detailed_transfer_status | text | field from the properties object |
expiration_time | text | field from the properties object |
initiator_customer_type | text | field from the properties object |
initiator_email_id | text | field from the properties object |
recipient_email_id | text | field from the properties object |
reseller_id | text | field from the properties object |
reseller_name | text | field from the properties object |
tags | text | 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 < > % & \ ? / |
transferName | text | field from the properties object |
transfer_status | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
properties | object | Transfer Details. |
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 |
---|---|---|---|
get | SELECT | billingAccountName, billingProfileName, customerName, transferName | Gets a transfer request by ID. The operation is supported only for billing accounts with agreement type Microsoft Partner Agreement. |
list | SELECT | billingAccountName, billingProfileName, customerName | Lists the transfer requests sent to a customer. The operation is supported only for billing accounts with agreement type Microsoft Partner Agreement. |
cancel | EXEC | billingAccountName, billingProfileName, customerName, transferName | Cancels a transfer request. The operation is supported only for billing accounts with agreement type Microsoft Partner Agreement. |
initiate | EXEC | billingAccountName, billingProfileName, customerName, transferName | Sends 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.
- vw_partner_transfers
- partner_transfers
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 }}';
SELECT
properties,
tags
FROM azure.billing.partner_transfers
WHERE billingAccountName = '{{ billingAccountName }}'
AND billingProfileName = '{{ billingProfileName }}'
AND customerName = '{{ customerName }}';