vw_partner_transfers
Creates, updates, deletes, gets or lists a vw_partner_transfers
resource.
Overview
Name | vw_partner_transfers |
Type | View |
Id | azure.billing.vw_partner_transfers |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
tags as tags,
JSON_EXTRACT(properties, '$.expirationTime') as "expiration_time",
JSON_EXTRACT(properties, '$.transferStatus') as "transfer_status",
JSON_EXTRACT(properties, '$.recipientEmailId') as "recipient_email_id",
JSON_EXTRACT(properties, '$.initiatorCustomerType') as "initiator_customer_type",
JSON_EXTRACT(properties, '$.initiatorEmailId') as "initiator_email_id",
JSON_EXTRACT(properties, '$.resellerId') as "reseller_id",
JSON_EXTRACT(properties, '$.resellerName') as "reseller_name",
JSON_EXTRACT(properties, '$.canceledBy') as "canceled_by",
JSON_EXTRACT(properties, '$.detailedTransferStatus') as "detailed_transfer_status",
billingAccountName,
billingProfileName,
customerName,
transferName
FROM azure.billing.partner_transfers
WHERE billingAccountName = 'replace-me' AND billingProfileName = 'replace-me' AND customerName = 'replace-me';
SELECT
tags as tags,
json_extract_path_text(properties, '$.expirationTime') as "expiration_time",
json_extract_path_text(properties, '$.transferStatus') as "transfer_status",
json_extract_path_text(properties, '$.recipientEmailId') as "recipient_email_id",
json_extract_path_text(properties, '$.initiatorCustomerType') as "initiator_customer_type",
json_extract_path_text(properties, '$.initiatorEmailId') as "initiator_email_id",
json_extract_path_text(properties, '$.resellerId') as "reseller_id",
json_extract_path_text(properties, '$.resellerName') as "reseller_name",
json_extract_path_text(properties, '$.canceledBy') as "canceled_by",
json_extract_path_text(properties, '$.detailedTransferStatus') as "detailed_transfer_status",
billingAccountName,
billingProfileName,
customerName,
transferName
FROM azure.billing.partner_transfers
WHERE billingAccountName = 'replace-me' AND billingProfileName = 'replace-me' AND customerName = 'replace-me';