Skip to main content

data_lake_store_accounts

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

Overview

Namedata_lake_store_accounts
TypeResource
Idazure.data_lake_analytics.data_lake_store_accounts

Fields

NameDatatypeDescription
idtextThe resource identifier.
nametextThe resource name.
accountNametextfield from the properties object
dataLakeStoreAccountNametextfield from the properties object
resourceGroupNametextfield from the properties object
subscriptionIdtextfield from the properties object
suffixtextfield from the properties object
typetextThe resource type.

Methods

NameAccessible byRequired ParamsDescription
getSELECTaccountName, dataLakeStoreAccountName, resourceGroupName, subscriptionIdGets the specified Data Lake Store account details in the specified Data Lake Analytics account.
list_by_accountSELECTaccountName, resourceGroupName, subscriptionIdGets the first page of Data Lake Store accounts linked to the specified Data Lake Analytics account. The response includes a link to the next page, if any.
deleteDELETEaccountName, dataLakeStoreAccountName, resourceGroupName, subscriptionIdUpdates the Data Lake Analytics account specified to remove the specified Data Lake Store account.
addEXECaccountName, dataLakeStoreAccountName, resourceGroupName, subscriptionIdUpdates the specified Data Lake Analytics account to include the additional Data Lake Store account.

SELECT examples

Gets the first page of Data Lake Store accounts linked to the specified Data Lake Analytics account. The response includes a link to the next page, if any.

SELECT
id,
name,
accountName,
dataLakeStoreAccountName,
resourceGroupName,
subscriptionId,
suffix,
type
FROM azure.data_lake_analytics.vw_data_lake_store_accounts
WHERE accountName = '{{ accountName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';

DELETE example

Deletes the specified data_lake_store_accounts resource.

/*+ delete */
DELETE FROM azure.data_lake_analytics.data_lake_store_accounts
WHERE accountName = '{{ accountName }}'
AND dataLakeStoreAccountName = '{{ dataLakeStoreAccountName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';