Skip to main content

policies_by_customer_at_billing_accounts

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

Overview

Namepolicies_by_customer_at_billing_accounts
TypeResource
Idazure.billing.policies_by_customer_at_billing_accounts

Fields

SELECT not supported for this resource, use SHOW METHODS to view available operations for the resource.

Methods

NameAccessible byRequired ParamsDescription
create_or_updateINSERTbillingAccountName, customerNameUpdates the policies for a customer at billing account scope. This operation is supported only for billing accounts with agreement type Microsoft Partner Agreement.

INSERT example

Use the following StackQL query and manifest file to create a new policies_by_customer_at_billing_accounts resource.

/*+ create */
INSERT INTO azure.billing.policies_by_customer_at_billing_accounts (
billingAccountName,
customerName,
tags,
properties
)
SELECT
'{{ billingAccountName }}',
'{{ customerName }}',
'{{ tags }}',
'{{ properties }}'
;