billing_meters
Creates, updates, deletes, gets or lists a billing_meters
resource.
Overview
Name | billing_meters |
Type | Resource |
Id | azure.app_service.billing_meters |
Fields
The following fields are returned by SELECT
queries:
- list
Name | Datatype | Description |
---|---|---|
id | string | Resource Id. |
name | string | Resource Name. |
kind | string | Kind of resource. |
properties | object | BillingMeter resource specific properties |
type | string | Resource type. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | subscriptionId | billingLocation , osType | Description for Gets a list of meters for a given location. |
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 |
---|---|---|
subscriptionId | string | Your Azure subscription ID. This is a GUID-formatted string (e.g. 00000000-0000-0000-0000-000000000000). |
billingLocation | string | Azure Location of billable resource |
osType | string | App Service OS type meters used for |
SELECT
examples
- list
Description for Gets a list of meters for a given location.
SELECT
id,
name,
kind,
properties,
type
FROM azure.app_service.billing_meters
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND billingLocation = '{{ billingLocation }}'
AND osType = '{{ osType }}'
;