< Back

New-AzureStorageContainer

Tue Jan 29, 2019 9:27 pm

NAME New-AzureStorageContainer



SYNOPSIS

Creates an Azure storage container.





SYNTAX

New-AzureStorageContainer [-Name] <String> [[-Permission] {Off | Container | Blob}] [-ClientTimeoutPerRequest <Int32>] [-ConcurrentTaskCount

<Int32>] [-Context <IStorageContext>] [-ServerTimeoutPerRequest <Int32>] [<CommonParameters>]





DESCRIPTION

The New-AzureStorageContainer cmdlet creates an Azure storage container.





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 a context for the new container.



Required? false

Position? named

Default value None

Accept pipeline input? True (ByPropertyName, ByValue)

Accept wildcard characters? false



-Name <String>

Specifies a name for the new container.



Required? true

Position? 0

Default value None

Accept pipeline input? True (ByPropertyName, ByValue)

Accept wildcard characters? false



-Permission <BlobContainerPublicAccessType>

Specifies the level of public access to this container. By default, the container and any blobs in it can be accessed only by the owner of the

storage account. To grant anonymous users read permissions to a container and its blobs, you can set the container permissions to enable

public access. Anonymous users can read blobs in a publicly available container without authenticating the request. The acceptable values for

this parameter are:



- Container. Provides full read access to a container and its blobs. Clients can enumerate blobs in the container through anonymous request,

but cannot enumerate containers in the storage account. - Blob. Provides read access to blob data throughout a container through anonymous

request, but does not provide access to container data. Clients cannot enumerate blobs in the container by using anonymous request. - Off.

Which restricts access to only the storage account owner.



Required? false

Position? 1

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: Create an Azure storage container



PS C:\\>New-AzureStorageContainer -Name "ContainerName" -Permission Off



This command creates a storage container.





Example 2: Create multiple Azure storage containers



PS C:\\>"container1 container2 container3".split() | New-AzureStorageContainer -Permission Container



This example creates multiple storage containers. It uses the Split method of the .NET String class and then passes the names on the pipeline.







RELATED LINKS

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

Get-AzureStorageContainer

Remove-AzureStorageContainer

Set-AzureStorageContainerAcl