agreements
Creates, updates, deletes, gets or lists a agreements
resource.
Overview
Name | agreements |
Type | Resource |
Id | azure.billing.agreements |
Fields
- vw_agreements
- agreements
Name | Datatype | Description |
---|---|---|
acceptance_mode | text | field from the properties object |
agreementName | text | field from the properties object |
agreement_link | text | field from the properties object |
billingAccountName | text | field from the properties object |
billing_profile_info | text | field from the properties object |
category | text | field from the properties object |
display_name | text | field from the properties object |
effective_date | text | field from the properties object |
expiration_date | text | field from the properties object |
lead_billing_account_name | text | field from the properties object |
participants | text | field from the properties object |
status | text | field from the properties object |
tags | text | Dictionary of metadata associated with the resource. It may not be populated for all resource types. Maximum key/value length supported of 256 characters. Keys/value should not empty value nor null. Keys can not contain < > % & \ ? / |
Name | Datatype | Description |
---|---|---|
properties | object | An agreement. |
tags | object | Dictionary of metadata associated with the resource. It may not be populated for all resource types. Maximum key/value length supported of 256 characters. Keys/value should not empty value nor null. Keys can not contain < > % & \ ? / |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | agreementName, billingAccountName | Gets an agreement by ID. |
list_by_billing_account | SELECT | billingAccountName | Lists the agreements for a billing account. |
SELECT
examples
Lists the agreements for a billing account.
- vw_agreements
- agreements
SELECT
acceptance_mode,
agreementName,
agreement_link,
billingAccountName,
billing_profile_info,
category,
display_name,
effective_date,
expiration_date,
lead_billing_account_name,
participants,
status,
tags
FROM azure.billing.vw_agreements
WHERE billingAccountName = '{{ billingAccountName }}';
SELECT
properties,
tags
FROM azure.billing.agreements
WHERE billingAccountName = '{{ billingAccountName }}';