@azure/storage-blob 12.9.0-alpha.20211203.2 → 12.9.0-alpha.20211216.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/CHANGELOG.md CHANGED
@@ -1,5 +1,15 @@
1
1
  # Release History
2
2
 
3
+ ## 12.9.0-beta.3 (Unreleased)
4
+
5
+ ### Features Added
6
+
7
+ ### Breaking Changes
8
+
9
+ ### Bugs Fixed
10
+
11
+ ### Other Changes
12
+
3
13
  ## 12.9.0-beta.2 (2021-12-03)
4
14
 
5
15
  ### Features Added
package/dist/index.js CHANGED
@@ -13183,7 +13183,7 @@ const logger = logger$1.createClientLogger("storage-blob");
13183
13183
 
13184
13184
  // Copyright (c) Microsoft Corporation.
13185
13185
  // Licensed under the MIT license.
13186
- const SDK_VERSION = "12.9.0-beta.2";
13186
+ const SDK_VERSION = "12.9.0-beta.3";
13187
13187
  const SERVICE_VERSION = "2021-02-12";
13188
13188
  const BLOCK_BLOB_MAX_UPLOAD_BLOB_BYTES = 256 * 1024 * 1024; // 256MB
13189
13189
  const BLOCK_BLOB_MAX_STAGE_BLOCK_BYTES = 4000 * 1024 * 1024; // 4000MB
@@ -14862,7 +14862,7 @@ class StorageSharedKeyCredential extends Credential {
14862
14862
  * Changes may cause incorrect behavior and will be lost if the code is regenerated.
14863
14863
  */
14864
14864
  const packageName = "azure-storage-blob";
14865
- const packageVersion = "12.9.0-beta.2";
14865
+ const packageVersion = "12.9.0-beta.3";
14866
14866
  class StorageClientContext extends coreHttp.ServiceClient {
14867
14867
  /**
14868
14868
  * Initializes a new instance of the StorageClientContext class.
@@ -22647,7 +22647,7 @@ class ContainerClient extends StorageClient {
22647
22647
  * if (item.kind === "prefix") {
22648
22648
  * console.log(`\tBlobPrefix: ${item.name}`);
22649
22649
  * } else {
22650
- * console.log(`\tBlobItem: name - ${item.name}, last modified - ${item.properties.lastModified}`);
22650
+ * console.log(`\tBlobItem: name - ${item.name}`);
22651
22651
  * }
22652
22652
  * }
22653
22653
  * ```
@@ -22662,7 +22662,7 @@ class ContainerClient extends StorageClient {
22662
22662
  * if (item.kind === "prefix") {
22663
22663
  * console.log(`\tBlobPrefix: ${item.name}`);
22664
22664
  * } else {
22665
- * console.log(`\tBlobItem: name - ${item.name}, last modified - ${item.properties.lastModified}`);
22665
+ * console.log(`\tBlobItem: name - ${item.name}`);
22666
22666
  * }
22667
22667
  * entity = await iter.next();
22668
22668
  * }
@@ -22680,7 +22680,7 @@ class ContainerClient extends StorageClient {
22680
22680
  * }
22681
22681
  * }
22682
22682
  * for (const blob of response.segment.blobItems) {
22683
- * console.log(`\tBlobItem: name - ${blob.name}, last modified - ${blob.properties.lastModified}`);
22683
+ * console.log(`\tBlobItem: name - ${blob.name}`);
22684
22684
  * }
22685
22685
  * }
22686
22686
  * ```
@@ -22691,7 +22691,9 @@ class ContainerClient extends StorageClient {
22691
22691
  * console.log("Listing blobs by hierarchy by page, specifying a prefix and a max page size");
22692
22692
  *
22693
22693
  * let i = 1;
22694
- * for await (const response of containerClient.listBlobsByHierarchy("/", { prefix: "prefix2/sub1/"}).byPage({ maxPageSize: 2 })) {
22694
+ * for await (const response of containerClient
22695
+ * .listBlobsByHierarchy("/", { prefix: "prefix2/sub1/" })
22696
+ * .byPage({ maxPageSize: 2 })) {
22695
22697
  * console.log(`Page ${i++}`);
22696
22698
  * const segment = response.segment;
22697
22699
  *
@@ -22702,7 +22704,7 @@ class ContainerClient extends StorageClient {
22702
22704
  * }
22703
22705
  *
22704
22706
  * for (const blob of response.segment.blobItems) {
22705
- * console.log(`\tBlobItem: name - ${blob.name}, last modified - ${blob.properties.lastModified}`);
22707
+ * console.log(`\tBlobItem: name - ${blob.name}`);
22706
22708
  * }
22707
22709
  * }
22708
22710
  * ```