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
- vw_storage_accounts_storage_containers
- storage_accounts_storage_containers
Name | Datatype | Description |
---|---|---|
id | text | The resource identifier. |
name | text | The resource name. |
accountName | text | field from the properties object |
containerName | text | field from the properties object |
last_modified_time | text | field from the properties object |
resourceGroupName | text | field from the properties object |
storageAccountName | text | field from the properties object |
subscriptionId | 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 | Azure Storage blob container properties information. |
type | string | The resource type. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | accountName, containerName, resourceGroupName, storageAccountName, subscriptionId | Gets the specified Azure Storage container associated with the given Data Lake Analytics and Azure Storage accounts. |
list | SELECT | accountName, resourceGroupName, storageAccountName, subscriptionId | 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
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.
- vw_storage_accounts_storage_containers
- storage_accounts_storage_containers
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 }}';
SELECT
id,
name,
properties,
type
FROM azure.data_lake_analytics.storage_accounts_storage_containers
WHERE accountName = '{{ accountName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND storageAccountName = '{{ storageAccountName }}'
AND subscriptionId = '{{ subscriptionId }}';