@azure/storage-blob 12.8.1-alpha.20210930.1 → 12.8.1-alpha.20211015.4
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/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "@azure/storage-blob",
|
3
3
|
"sdk-type": "client",
|
4
|
-
"version": "12.8.1-alpha.
|
4
|
+
"version": "12.8.1-alpha.20211015.4",
|
5
5
|
"description": "Microsoft Azure Storage SDK for JavaScript - Blob",
|
6
6
|
"main": "./dist/index.js",
|
7
7
|
"module": "./dist-esm/storage-blob/src/index.js",
|
@@ -4134,7 +4134,7 @@ export declare class BlockBlobClient extends BlobClient {
|
|
4134
4134
|
* Uploads data to block blob. Requires a bodyFactory as the data source,
|
4135
4135
|
* which need to return a {@link HttpRequestBody} object with the offset and size provided.
|
4136
4136
|
*
|
4137
|
-
* When data length is no more than the
|
4137
|
+
* When data length is no more than the specified {@link BlockBlobParallelUploadOptions.maxSingleShotSize} (default is
|
4138
4138
|
* {@link BLOCK_BLOB_MAX_UPLOAD_BLOB_BYTES}), this method will use 1 {@link upload} call to finish the upload.
|
4139
4139
|
* Otherwise, this method will call {@link stageBlock} to upload blocks, and finally call {@link commitBlockList}
|
4140
4140
|
* to commit the block list.
|
@@ -4284,7 +4284,7 @@ export declare class BlockBlobClient extends BlobClient {
|
|
4284
4284
|
* Uploads data to block blob. Requires a bodyFactory as the data source,
|
4285
4285
|
* which need to return a {@link HttpRequestBody} object with the offset and size provided.
|
4286
4286
|
*
|
4287
|
-
* When data length is no more than the
|
4287
|
+
* When data length is no more than the specified {@link BlockBlobParallelUploadOptions.maxSingleShotSize} (default is
|
4288
4288
|
* {@link BLOCK_BLOB_MAX_UPLOAD_BLOB_BYTES}), this method will use 1 {@link upload} call to finish the upload.
|
4289
4289
|
* Otherwise, this method will call {@link stageBlock} to upload blocks, and finally call {@link commitBlockList}
|
4290
4290
|
* to commit the block list.
|