@azure/storage-blob 12.12.1-alpha.20221128.2 → 12.12.1-alpha.20221206.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +3 -1
- package/dist/index.js.map +1 -1
- package/dist-esm/storage-blob/src/BlobServiceClient.js +1 -1
- package/dist-esm/storage-blob/src/BlobServiceClient.js.map +1 -1
- package/dist-esm/storage-blob/src/ContainerClient.js +2 -0
- package/dist-esm/storage-blob/src/ContainerClient.js.map +1 -1
- package/package.json +1 -1
- package/types/3.1/storage-blob.d.ts +3 -1
- package/types/latest/storage-blob.d.ts +3 -1
package/dist/index.js
CHANGED
@@ -22619,6 +22619,7 @@ class ContainerClient extends StorageClient {
|
|
22619
22619
|
* Creates a new container under the specified account. If the container with
|
22620
22620
|
* the same name already exists, the operation fails.
|
22621
22621
|
* @see https://docs.microsoft.com/en-us/rest/api/storageservices/create-container
|
22622
|
+
* Naming rules: @see https://learn.microsoft.com/rest/api/storageservices/naming-and-referencing-containers--blobs--and-metadata
|
22622
22623
|
*
|
22623
22624
|
* @param options - Options to Container Create operation.
|
22624
22625
|
*
|
@@ -22653,6 +22654,7 @@ class ContainerClient extends StorageClient {
|
|
22653
22654
|
* Creates a new container under the specified account. If the container with
|
22654
22655
|
* the same name already exists, it is not changed.
|
22655
22656
|
* @see https://docs.microsoft.com/en-us/rest/api/storageservices/create-container
|
22657
|
+
* Naming rules: @see https://learn.microsoft.com/rest/api/storageservices/naming-and-referencing-containers--blobs--and-metadata
|
22656
22658
|
*
|
22657
22659
|
* @param options -
|
22658
22660
|
*/
|
@@ -24334,7 +24336,7 @@ class BlobServiceClient extends StorageClient {
|
|
24334
24336
|
return new ContainerClient(appendToURLPath(this.url, encodeURIComponent(containerName)), this.pipeline);
|
24335
24337
|
}
|
24336
24338
|
/**
|
24337
|
-
* Create a Blob container.
|
24339
|
+
* Create a Blob container. @see https://docs.microsoft.com/en-us/rest/api/storageservices/create-container
|
24338
24340
|
*
|
24339
24341
|
* @param containerName - Name of the container to create.
|
24340
24342
|
* @param options - Options to configure Container Create operation.
|