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

The following fields are returned by SELECT queries:

Successfully retrieved the specified Azure Storage container information.

NameDatatypeDescription
idstringThe resource identifier.
namestringThe resource name.
propertiesobjectThe properties of the blob container.
typestringThe resource type.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, resourceGroupName, accountName, storageAccountName, containerNameGets the specified Azure Storage container associated with the given Data Lake Analytics and Azure Storage accounts.
listselectsubscriptionId, resourceGroupName, accountName, storageAccountNameLists 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.

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
accountNamestringThe name of the Data Lake Analytics account.
containerNamestringThe name of the Azure storage container to retrieve
resourceGroupNamestringThe name of the resource group. The name is case insensitive.
storageAccountNamestringThe name of the Azure storage account from which to list blob containers.
subscriptionIdstringThe ID of the target subscription.

SELECT examples

Gets the specified Azure Storage container associated with the given Data Lake Analytics and Azure Storage accounts.

SELECT
id,
name,
properties,
type
FROM azure.data_lake_analytics.storage_accounts_storage_containers
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND accountName = '{{ accountName }}' -- required
AND storageAccountName = '{{ storageAccountName }}' -- required
AND containerName = '{{ containerName }}' -- required
;