< Back

Get-AzureStorageContainer

Tue Jan 29, 2019 9:26 pm

NAME Get-AzureStorageContainer



SYNOPSIS

Lists the storage containers.





SYNTAX

Get-AzureStorageContainer [[-Name] <String>] [-ClientTimeoutPerRequest <Int32>] [-ConcurrentTaskCount <Int32>] [-Context <IStorageContext>]

[-ContinuationToken <BlobContinuationToken>] [-MaxCount <Int32>] [-ServerTimeoutPerRequest <Int32>] [<CommonParameters>]



Get-AzureStorageContainer [-ClientTimeoutPerRequest <Int32>] [-ConcurrentTaskCount <Int32>] [-Context <IStorageContext>] [-ContinuationToken

<BlobContinuationToken>] [-MaxCount <Int32>] -Prefix <String> [-ServerTimeoutPerRequest <Int32>] [<CommonParameters>]





DESCRIPTION

The Get-AzureStorageContainer cmdlet lists the storage containers associated with the storage account in Azure.





PARAMETERS

-ClientTimeoutPerRequest <Int32>

Specifies the client-side time-out interval, in seconds, for one service request. If the previous call fails in the specified interval, this

cmdlet retries the request. If this cmdlet does not receive a successful response before the interval elapses, this cmdlet returns an error.



Required? false

Position? named

Default value None

Accept pipeline input? False

Accept wildcard characters? false



-ConcurrentTaskCount <Int32>

Specifies the maximum concurrent network calls. You can use this parameter to limit the concurrency to throttle local CPU and bandwidth usage

by specifying the maximum number of concurrent network calls. The specified value is an absolute count and is not multiplied by the core

count. This parameter can help reduce network connection problems in low bandwidth environments, such as 100 kilobits per second. The default

value is 10.



Required? false

Position? named

Default value None

Accept pipeline input? False

Accept wildcard characters? false



-Context <IStorageContext>

Specifies the storage context. To create it, you can use the New-AzureStorageContext cmdlet. The cmdlet will fail when you use a storage

context created from SAS Token because the cmdlet will query for container permissions which require Storage account key permission.



Required? false

Position? named

Default value None

Accept pipeline input? True (ByPropertyName, ByValue)

Accept wildcard characters? false



-ContinuationToken <BlobContinuationToken>

Specifies a continuation token for the blob list.



Required? false

Position? named

Default value None

Accept pipeline input? False

Accept wildcard characters? false



-MaxCount <Int32>

Specifies the maximum number of objects that this cmdlet returns.



Required? false

Position? named

Default value None

Accept pipeline input? False

Accept wildcard characters? false



-Name <String>

Specifies the container name. If container name is empty, the cmdlet lists all the containers. Otherwise, it lists all containers that match

the specified name or the regular name pattern.



Required? false

Position? 0

Default value None

Accept pipeline input? True (ByPropertyName, ByValue)

Accept wildcard characters? true



-Prefix <String>

Specifies a prefix used in the name of the container or containers you want to get. You can use this to find all containers that start with

the same string, such as "my" or "test".



Required? true

Position? named

Default value None

Accept pipeline input? False

Accept wildcard characters? false



-ServerTimeoutPerRequest <Int32>

Specifies the service side time-out interval, in seconds, for a request. If the specified interval elapses before the service processes the

request, the storage service returns an error.



Required? false

Position? named

Default value None

Accept pipeline input? False

Accept wildcard characters? false



<CommonParameters>

This cmdlet supports the common parameters: Verbose, Debug,

ErrorAction, ErrorVariable, WarningAction, WarningVariable,

OutBuffer, PipelineVariable, and OutVariable. For more information, see

about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).



INPUTS

IStorageContext

Parameter 'Context' accepts value of type 'IStorageContext' from the pipeline



String

Parameter 'Name' accepts value of type 'String' from the pipeline





OUTPUTS

Microsoft.WindowsAzure.Commands.Common.Storage.ResourceModel.AzureStorageContainer







NOTES









Example 1: Get Azure Storage blob by name



PS C:\\>Get-AzureStorageContainer -Name container*



This example uses a wildcard character to return a list of all containers with a name that starts with container.





Example 2: Get Azure Storage container by container name prefix



PS C:\\>Get-AzureStorageContainer -Prefix "container"



This example uses the Prefix parameter to return a list of all containers with a name that starts with container.







RELATED LINKS

Online Version: https://docs.microsoft.com/en-us/powers ... econtainer

New-AzureStorageContainer

Remove-AzureStorageContainer

Set-AzureStorageContainerAcl