@azure/storage-blob 12.9.0-alpha.20211215.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/dist/index.js
CHANGED
@@ -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}
|
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}
|
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}
|
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
|
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}
|
22707
|
+
* console.log(`\tBlobItem: name - ${blob.name}`);
|
22706
22708
|
* }
|
22707
22709
|
* }
|
22708
22710
|
* ```
|