storage_accounts_storage_containers
Creates, updates, deletes, gets or lists a storage_accounts_storage_containers
resource.
Overview
Name | storage_accounts_storage_containers |
Type | Resource |
Id | azure.data_lake_analytics.storage_accounts_storage_containers |
Fields
The following fields are returned by SELECT
queries:
- get
- list
Successfully retrieved the specified Azure Storage container information.
Name | Datatype | Description |
---|---|---|
id | string | The resource identifier. |
name | string | The resource name. |
properties | object | The properties of the blob container. |
type | string | The resource type. |
Successfully retrieved the list of Azure Storage containers under the specified Azure Data Lake Analytics account.
Name | Datatype | Description |
---|---|---|
id | string | The resource identifier. |
name | string | The resource name. |
properties | object | The properties of the blob container. |
type | string | The resource type. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | subscriptionId , resourceGroupName , accountName , storageAccountName , containerName | Gets the specified Azure Storage container associated with the given Data Lake Analytics and Azure Storage accounts. | |
list | select | subscriptionId , resourceGroupName , accountName , storageAccountName | 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. |
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.
Name | Datatype | Description |
---|---|---|
accountName | string | The name of the Data Lake Analytics account. |
containerName | string | The name of the Azure storage container to retrieve |
resourceGroupName | string | The name of the resource group. The name is case insensitive. |
storageAccountName | string | The name of the Azure storage account from which to list blob containers. |
subscriptionId | string | The ID of the target subscription. |
SELECT
examples
- get
- list
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
;
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,
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
;