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
- vw_billing_account_policies
- billing_account_policies
Name | Datatype | Description |
---|---|---|
id | text | Fully qualified ID for the policy. |
name | text | Policy name. |
allow_transfers | text | field from the properties object |
billingAccountId | text | field from the properties object |
service_tenants | text | field from the properties object |
system_data | text | field from the properties object |
type | text | Resource type. |
Name | Datatype | Description |
---|---|---|
id | string | Fully qualified ID for the policy. |
name | string | Policy name. |
properties | object | Put billing account policies response properties. |
systemData | object | Metadata pertaining to creation and last modification of the resource. |
type | string | Resource type. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | billingAccountId | Get Billing Account Policy. |
SELECT
examples
Get Billing Account Policy.
- vw_billing_account_policies
- billing_account_policies
SELECT
id,
name,
allow_transfers,
billingAccountId,
service_tenants,
system_data,
type
FROM azure.subscription.vw_billing_account_policies
WHERE billingAccountId = '{{ billingAccountId }}';
SELECT
id,
name,
properties,
systemData,
type
FROM azure.subscription.billing_account_policies
WHERE billingAccountId = '{{ billingAccountId }}';