@azure/storage-blob 12.10.1-alpha.20220517.1 → 12.11.0-alpha.20220616.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/README.md +1 -1
- package/dist/index.js +5 -5
- package/dist/index.js.map +1 -1
- package/dist-esm/storage-blob/src/generated/src/models/parameters.js +1 -1
- package/dist-esm/storage-blob/src/generated/src/models/parameters.js.map +1 -1
- package/dist-esm/storage-blob/src/generated/src/storageClientContext.js +2 -2
- package/dist-esm/storage-blob/src/generated/src/storageClientContext.js.map +1 -1
- package/dist-esm/storage-blob/src/utils/constants.js +2 -2
- package/dist-esm/storage-blob/src/utils/constants.js.map +1 -1
- package/package.json +4 -4
package/README.md
CHANGED
@@ -511,7 +511,7 @@ A complete example of simple scenarios is at [samples/v12/typescript/src/sharedK
|
|
511
511
|
Enabling logging may help uncover useful information about failures. In order to see a log of HTTP requests and responses, set the `AZURE_LOG_LEVEL` environment variable to `info`. Alternatively, logging can be enabled at runtime by calling `setLogLevel` in the `@azure/logger`:
|
512
512
|
|
513
513
|
```javascript
|
514
|
-
|
514
|
+
const { setLogLevel } = require("@azure/logger");
|
515
515
|
|
516
516
|
setLogLevel("info");
|
517
517
|
```
|
package/dist/index.js
CHANGED
@@ -8497,7 +8497,7 @@ const timeoutInSeconds = {
|
|
8497
8497
|
const version = {
|
8498
8498
|
parameterPath: "version",
|
8499
8499
|
mapper: {
|
8500
|
-
defaultValue: "2021-06
|
8500
|
+
defaultValue: "2021-08-06",
|
8501
8501
|
isConstant: true,
|
8502
8502
|
serializedName: "x-ms-version",
|
8503
8503
|
type: {
|
@@ -13325,8 +13325,8 @@ const logger = logger$1.createClientLogger("storage-blob");
|
|
13325
13325
|
|
13326
13326
|
// Copyright (c) Microsoft Corporation.
|
13327
13327
|
// Licensed under the MIT license.
|
13328
|
-
const SDK_VERSION = "12.
|
13329
|
-
const SERVICE_VERSION = "2021-06
|
13328
|
+
const SDK_VERSION = "12.11.0-beta.1";
|
13329
|
+
const SERVICE_VERSION = "2021-08-06";
|
13330
13330
|
const BLOCK_BLOB_MAX_UPLOAD_BLOB_BYTES = 256 * 1024 * 1024; // 256MB
|
13331
13331
|
const BLOCK_BLOB_MAX_STAGE_BLOCK_BYTES = 4000 * 1024 * 1024; // 4000MB
|
13332
13332
|
const BLOCK_BLOB_MAX_BLOCKS = 50000;
|
@@ -15437,7 +15437,7 @@ class StorageSharedKeyCredential extends Credential {
|
|
15437
15437
|
* Changes may cause incorrect behavior and will be lost if the code is regenerated.
|
15438
15438
|
*/
|
15439
15439
|
const packageName = "azure-storage-blob";
|
15440
|
-
const packageVersion = "12.
|
15440
|
+
const packageVersion = "12.11.0-beta.1";
|
15441
15441
|
class StorageClientContext extends coreHttp__namespace.ServiceClient {
|
15442
15442
|
/**
|
15443
15443
|
* Initializes a new instance of the StorageClientContext class.
|
@@ -15463,7 +15463,7 @@ class StorageClientContext extends coreHttp__namespace.ServiceClient {
|
|
15463
15463
|
// Parameter assignments
|
15464
15464
|
this.url = url;
|
15465
15465
|
// Assigning values to Constant parameters
|
15466
|
-
this.version = options.version || "2021-06
|
15466
|
+
this.version = options.version || "2021-08-06";
|
15467
15467
|
}
|
15468
15468
|
}
|
15469
15469
|
|