billing_account_policies
Creates, updates, deletes, gets or lists a billing_account_policies
resource.
Overview
Name | billing_account_policies |
Type | Resource |
Id | azure.subscription.billing_account_policies |
Fields
The following fields are returned by SELECT
queries:
- get
Normal response for a successful query.
Name | Datatype | Description |
---|---|---|
id | string | Fully qualified ID for the policy. |
name | string | Policy name. |
properties | object | Billing account policies response properties. |
systemData | object | Metadata pertaining to creation and last modification of the resource. |
type | string | Resource type. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | billingAccountId | Get 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.
Name | Datatype | Description |
---|---|---|
billingAccountId | string | Billing Account Id. |
SELECT
examples
- get
Get Billing Account Policy.
SELECT
id,
name,
properties,
systemData,
type
FROM azure.subscription.billing_account_policies
WHERE billingAccountId = '{{ billingAccountId }}' -- required
;