Skip to main content

billing_account_policies

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

Overview

Namebilling_account_policies
TypeResource
Idazure.subscription.billing_account_policies

Fields

The following fields are returned by SELECT queries:

Normal response for a successful query.

NameDatatypeDescription
idstringFully qualified ID for the policy.
namestringPolicy name.
propertiesobjectBilling account policies response properties.
systemDataobjectMetadata pertaining to creation and last modification of the resource.
typestringResource type.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectbillingAccountIdGet Billing Account Policy.

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
billingAccountIdstringBilling Account Id.

SELECT examples

Get Billing Account Policy.

SELECT
id,
name,
properties,
systemData,
type
FROM azure.subscription.billing_account_policies
WHERE billingAccountId = '{{ billingAccountId }}' -- required
;