Skip to main content

policies_by_customers

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

Overview

Namepolicies_by_customers
TypeResource
Idazure.billing.policies_by_customers

Fields

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

Methods

NameAccessible byRequired ParamsDescription
create_or_updateINSERTbillingAccountName, billingProfileName, customerNameUpdates the policies for a customer. 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_customers resource.

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