Skip to main content

storage_accounts_storage_containers

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

Overview

Namestorage_accounts_storage_containers
TypeResource
Idazure.data_lake_analytics.storage_accounts_storage_containers

Fields

NameDatatypeDescription
idtextThe resource identifier.
nametextThe resource name.
accountNametextfield from the properties object
containerNametextfield from the properties object
last_modified_timetextfield from the properties object
resourceGroupNametextfield from the properties object
storageAccountNametextfield from the properties object
subscriptionIdtextfield from the properties object
typetextThe resource type.

Methods

NameAccessible byRequired ParamsDescription
getSELECTaccountName, containerName, resourceGroupName, storageAccountName, subscriptionIdGets the specified Azure Storage container associated with the given Data Lake Analytics and Azure Storage accounts.
listSELECTaccountName, resourceGroupName, storageAccountName, subscriptionIdLists the Azure Storage containers, if any, associated with the specified Data Lake Analytics and Azure Storage account combination. The response includes a link to the next page of results, if any.

SELECT examples

Lists the Azure Storage containers, if any, associated with the specified Data Lake Analytics and Azure Storage account combination. The response includes a link to the next page of results, if any.

SELECT
id,
name,
accountName,
containerName,
last_modified_time,
resourceGroupName,
storageAccountName,
subscriptionId,
type
FROM azure.data_lake_analytics.vw_storage_accounts_storage_containers
WHERE accountName = '{{ accountName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND storageAccountName = '{{ storageAccountName }}'
AND subscriptionId = '{{ subscriptionId }}';