BlobContainersOperationsExtensions.CreateAsync Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Creates a new container under the specified account as described by request body. The container resource includes metadata and properties for that container. It does not include a list of the blobs contained by the container.
public static System.Threading.Tasks.Task<Microsoft.Azure.Management.Storage.Fluent.Models.BlobContainerInner> CreateAsync (this Microsoft.Azure.Management.Storage.Fluent.IBlobContainersOperations operations, string resourceGroupName, string accountName, string containerName, Microsoft.Azure.Management.Storage.Fluent.Models.PublicAccess? publicAccess = default, System.Collections.Generic.IDictionary<string,string> metadata = default, System.Threading.CancellationToken cancellationToken = default);
static member CreateAsync : Microsoft.Azure.Management.Storage.Fluent.IBlobContainersOperations * string * string * string * Nullable<Microsoft.Azure.Management.Storage.Fluent.Models.PublicAccess> * System.Collections.Generic.IDictionary<string, string> * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.Azure.Management.Storage.Fluent.Models.BlobContainerInner>
<Extension()>
Public Function CreateAsync (operations As IBlobContainersOperations, resourceGroupName As String, accountName As String, containerName As String, Optional publicAccess As Nullable(Of PublicAccess) = Nothing, Optional metadata As IDictionary(Of String, String) = Nothing, Optional cancellationToken As CancellationToken = Nothing) As Task(Of BlobContainerInner)
Parameters
- operations
- IBlobContainersOperations
The operations group for this extension method.
- resourceGroupName
- String
The name of the resource group within the user's subscription. The name is case insensitive.
- accountName
- String
The name of the storage account within the specified resource group. Storage account names must be between 3 and 24 characters in length and use numbers and lower-case letters only.
- containerName
- String
The name of the blob container within the specified storage account. Blob container names must be between 3 and 63 characters in length and use numbers, lower-case letters and dash (-) only. Every dash (-) character must be immediately preceded and followed by a letter or number.
- publicAccess
- Nullable<PublicAccess>
Specifies whether data in the container may be accessed publicly and the level of access. Possible values include: 'Container', 'Blob', 'None'
- metadata
- IDictionary<String,String>
A name-value pair to associate with the container as metadata.
- cancellationToken
- CancellationToken
The cancellation token.