You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Creates a new container under the specified account if a container with the same name does not already exist.
310
+
/// </summary>
311
+
/// <param name="options">The Azure Blob Storage file system options.</param>
312
+
/// <param name="accessType">Optionally specifies whether data in the container may be accessed publicly and the level of access.
313
+
/// <see cref="PublicAccessType.BlobContainer" /> specifies full public read access for container and blob data. Clients can enumerate blobs within the container via anonymous request, but cannot enumerate containers within the storage account.
314
+
/// <see cref="PublicAccessType.Blob" /> specifies public read access for blobs. Blob data within this container can be read via anonymous request, but container data is not available. Clients cannot enumerate blobs within the container via anonymous request.
315
+
/// <see cref="PublicAccessType.None" /> specifies that the container data is private to the account owner.</param>
316
+
/// <returns>
317
+
/// If the container does not already exist, a <see cref="Response{T}" /> describing the newly created container. If the container already exists, <see langword="null" />.
0 commit comments