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

The following fields are returned by SELECT queries:

Successfully retrieved the subscription-level properties and limits for Data Lake Store specified by resource location.

NameDatatypeDescription
accountCountinteger (int32)The current number of accounts under this subscription.
maxAccountCountinteger (int32)The maximum supported number of accounts under this subscription.
migrationStatebooleanThe Boolean value of true or false to indicate the maintenance state.
statestringThe subscription state.
subscriptionIdstring (uuid)The subscription credentials that uniquely identifies the subscription.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, locationGets 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.

NameDatatypeDescription
locationstringThe resource location without whitespace.
subscriptionIdstringGets subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.

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 subscriptionId = '{{ subscriptionId }}' -- required
AND location = '{{ location }}' -- required
;