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
Name | Datatype | Description |
---|---|---|
accountCount | integer | The current number of accounts under this subscription. |
maxAccountCount | integer | 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 | The subscription credentials that uniquely identifies the subscription. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | location, subscriptionId | Gets subscription-level properties and limits for Data Lake Store specified by resource location. |
SELECT
examples
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 location = '{{ location }}'
AND subscriptionId = '{{ subscriptionId }}';