Skip to main content

recipient_transfers

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

Overview

Namerecipient_transfers
TypeResource
Idazure.billing.recipient_transfers

Fields

The following fields are returned by SELECT queries:

Details of the transfers with given Id.

NameDatatypeDescription
propertiesobjectDetails of the transfer.
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

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselecttransferName
listselect
acceptexectransferName
validateexectransferName
declineexectransferName

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
transferNamestringThe ID that uniquely identifies a transfer request.

SELECT examples

Details of the transfers with given Id.

SELECT
properties,
tags
FROM azure.billing.recipient_transfers
WHERE transferName = '{{ transferName }}' -- required
;

Lifecycle Methods

Details of the accepted transfer.

EXEC azure.billing.recipient_transfers.accept 
@transferName='{{ transferName }}' --required
@@json=
'{
"properties": "{{ properties }}"
}'
;