transfers
Creates, updates, deletes, gets or lists a transfers
resource.
Overview
Name | transfers |
Type | Resource |
Id | azure.billing.transfers |
Fields
- vw_transfers
- 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 |
detailed_transfer_status | text | field from the properties object |
expiration_time | text | field from the properties object |
initiator_email_id | text | field from the properties object |
invoiceSectionName | text | field from the properties object |
recipient_email_id | 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, invoiceSectionName, transferName | Gets a transfer request by ID. The operation is supported only for billing accounts with agreement type Microsoft Customer Agreement. |
list | SELECT | billingAccountName, billingProfileName, invoiceSectionName | Lists the transfer requests for an invoice section. The operation is supported only for billing accounts with agreement type Microsoft Customer Agreement. |
cancel | EXEC | billingAccountName, billingProfileName, invoiceSectionName, transferName | Cancels a transfer request. The operation is supported only for billing accounts with agreement type Microsoft Customer Agreement. |
initiate | EXEC | billingAccountName, billingProfileName, invoiceSectionName, transferName | Sends 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.
- vw_transfers
- transfers
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 }}';
SELECT
properties,
tags
FROM azure.billing.transfers
WHERE billingAccountName = '{{ billingAccountName }}'
AND billingProfileName = '{{ billingProfileName }}'
AND invoiceSectionName = '{{ invoiceSectionName }}';