locations_billing_specs
Creates, updates, deletes, gets or lists a locations_billing_specs resource.
Overview
| Name | locations_billing_specs |
| Type | Resource |
| Id | azure.hdinsight.locations_billing_specs |
Fields
The following fields are returned by SELECT queries:
- list
OK response definition.
| Name | Datatype | Description |
|---|---|---|
billingResources | array | The billing and managed disk billing resources for a region. |
vmSizeFilters | array | The virtual machine filtering mode. Effectively this can enabling or disabling the virtual machine sizes in a particular set. |
vmSizeProperties | array | The vm size properties. |
vmSizes | array | The virtual machine sizes to include or exclude. |
vmSizesWithEncryptionAtHost | array | The vm sizes which enable encryption at host. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | subscriptionId, location | Lists the billingSpecs for the specified subscription and 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 |
|---|---|---|
location | string | The Azure location (region) for which to make the request. |
subscriptionId | string | The subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. |
SELECT examples
- list
Lists the billingSpecs for the specified subscription and location.
SELECT
billingResources,
vmSizeFilters,
vmSizeProperties,
vmSizes,
vmSizesWithEncryptionAtHost
FROM azure.hdinsight.locations_billing_specs
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND location = '{{ location }}' -- required
;