Skip to main content

policies_by_billing_accounts

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

Overview

Namepolicies_by_billing_accounts
TypeResource
Idazure.billing.policies_by_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_updateINSERTbillingAccountNameUpdate the policies for a billing account of Enterprise Agreement type.

INSERT example

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

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