Skip to main content

locations_capabilities

Creates, updates, deletes, gets or lists a locations_capabilities resource.

Overview

Namelocations_capabilities
TypeResource
Idazure.data_lake_store.locations_capabilities

Fields

NameDatatypeDescription
accountCountintegerThe current number of accounts under this subscription.
maxAccountCountintegerThe maximum supported number of accounts under this subscription.
migrationStatebooleanThe Boolean value of true or false to indicate the maintenance state.
statestringThe subscription state.
subscriptionIdstringThe subscription credentials that uniquely identifies the subscription.

Methods

NameAccessible byRequired ParamsDescription
getSELECTlocation, subscriptionIdGets 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 }}';