data_lake_store_accounts
Creates, updates, deletes, gets or lists a data_lake_store_accounts
resource.
Overview
Name | data_lake_store_accounts |
Type | Resource |
Id | azure.data_lake_analytics.data_lake_store_accounts |
Fields
- vw_data_lake_store_accounts
- data_lake_store_accounts
Name | Datatype | Description |
---|---|---|
id | text | The resource identifier. |
name | text | The resource name. |
accountName | text | field from the properties object |
dataLakeStoreAccountName | text | field from the properties object |
resourceGroupName | text | field from the properties object |
subscriptionId | text | field from the properties object |
suffix | text | field from the properties object |
type | text | The resource type. |
Name | Datatype | Description |
---|---|---|
id | string | The resource identifier. |
name | string | The resource name. |
properties | object | The Data Lake Store account properties. |
type | string | The resource type. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | accountName, dataLakeStoreAccountName, resourceGroupName, subscriptionId | Gets the specified Data Lake Store account details in the specified Data Lake Analytics account. |
list_by_account | SELECT | accountName, resourceGroupName, subscriptionId | 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. |
delete | DELETE | accountName, dataLakeStoreAccountName, resourceGroupName, subscriptionId | Updates the Data Lake Analytics account specified to remove the specified Data Lake Store account. |
add | EXEC | accountName, dataLakeStoreAccountName, resourceGroupName, subscriptionId | Updates 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.
- vw_data_lake_store_accounts
- data_lake_store_accounts
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 }}';
SELECT
id,
name,
properties,
type
FROM azure.data_lake_analytics.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 }}';