locations_capabilities
Creates, updates, deletes, gets or lists a locations_capabilities
resource.
Overview
Name | locations_capabilities |
Type | Resource |
Id | azure.data_lake_store.locations_capabilities |
Fields
The following fields are returned by SELECT
queries:
- get
Successfully retrieved the subscription-level properties and limits for Data Lake Store specified by resource location.
Name | Datatype | Description |
---|---|---|
accountCount | integer (int32) | The current number of accounts under this subscription. |
maxAccountCount | integer (int32) | The maximum supported number of accounts under this subscription. |
migrationState | boolean | The Boolean value of true or false to indicate the maintenance state. |
state | string | The subscription state. |
subscriptionId | string (uuid) | The subscription credentials that uniquely identifies the subscription. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | subscriptionId , location | Gets subscription-level properties and limits for Data Lake Store specified by resource 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 resource location without whitespace. |
subscriptionId | string | Gets subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. |
SELECT
examples
- get
Gets subscription-level properties and limits for Data Lake Store specified by resource location.
SELECT
accountCount,
maxAccountCount,
migrationState,
state,
subscriptionId
FROM azure.data_lake_store.locations_capabilities
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND location = '{{ location }}' -- required
;