locations_capabilities
Creates, updates, deletes, gets or lists a locations_capabilities
resource.
Overview
Name | locations_capabilities |
Type | Resource |
Id | azure.hdinsight.locations_capabilities |
Fields
The following fields are returned by SELECT
queries:
- get
OK response definition.
Name | Datatype | Description |
---|---|---|
features | array | The capability features. |
quota | object | The quota capability. |
regions | object | The virtual machine size compatibility features. |
versions | object | The version capability. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | subscriptionId , location | Gets the capabilities for the specified 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
- get
Gets the capabilities for the specified location.
SELECT
features,
quota,
regions,
versions
FROM azure.hdinsight.locations_capabilities
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND location = '{{ location }}' -- required
;