@azure/storage-blob 12.9.0-alpha.20220128.2 → 12.9.0-alpha.20220302.1
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 +13 -2
- package/dist/index.js +333 -14
- package/dist/index.js.map +1 -1
- package/dist-esm/storage-blob/src/BlobServiceClient.js.map +1 -1
- package/dist-esm/storage-blob/src/Clients.js +7 -5
- package/dist-esm/storage-blob/src/Clients.js.map +1 -1
- package/dist-esm/storage-blob/src/ContainerClient.js +201 -0
- package/dist-esm/storage-blob/src/ContainerClient.js.map +1 -1
- package/dist-esm/storage-blob/src/generated/src/models/index.js.map +1 -1
- package/dist-esm/storage-blob/src/generated/src/models/mappers.js +53 -0
- package/dist-esm/storage-blob/src/generated/src/models/mappers.js.map +1 -1
- package/dist-esm/storage-blob/src/generated/src/models/parameters.js +2 -3
- package/dist-esm/storage-blob/src/generated/src/models/parameters.js.map +1 -1
- package/dist-esm/storage-blob/src/generated/src/operations/container.js +41 -0
- package/dist-esm/storage-blob/src/generated/src/operations/container.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/generatedModels.js.map +1 -1
- package/dist-esm/storage-blob/src/policies/StorageSharedKeyCredentialPolicy.js +3 -1
- package/dist-esm/storage-blob/src/policies/StorageSharedKeyCredentialPolicy.js.map +1 -1
- package/dist-esm/storage-blob/src/sas/BlobSASSignatureValues.js +5 -0
- package/dist-esm/storage-blob/src/sas/BlobSASSignatureValues.js.map +1 -1
- package/dist-esm/storage-blob/src/sas/ContainerSASPermissions.js +13 -0
- package/dist-esm/storage-blob/src/sas/ContainerSASPermissions.js.map +1 -1
- package/dist-esm/storage-blob/src/utils/constants.js +3 -2
- package/dist-esm/storage-blob/src/utils/constants.js.map +1 -1
- package/package.json +1 -1
- package/types/3.1/storage-blob.d.ts +174 -0
- package/types/latest/storage-blob.d.ts +177 -0
@@ -5469,6 +5469,129 @@ export declare class ContainerClient extends StorageClient {
|
|
5469
5469
|
} & BlobPrefix) | ({
|
5470
5470
|
kind: "blob";
|
5471
5471
|
} & BlobItem), ContainerListBlobHierarchySegmentResponse>;
|
5472
|
+
/**
|
5473
|
+
* The Filter Blobs operation enables callers to list blobs in the container whose tags
|
5474
|
+
* match a given search expression.
|
5475
|
+
*
|
5476
|
+
* @param tagFilterSqlExpression - The where parameter enables the caller to query blobs whose tags match a given expression.
|
5477
|
+
* The given expression must evaluate to true for a blob to be returned in the results.
|
5478
|
+
* The[OData - ABNF] filter syntax rule defines the formal grammar for the value of the where query parameter;
|
5479
|
+
* however, only a subset of the OData filter syntax is supported in the Blob service.
|
5480
|
+
* @param marker - A string value that identifies the portion of
|
5481
|
+
* the list of blobs to be returned with the next listing operation. The
|
5482
|
+
* operation returns the continuationToken value within the response body if the
|
5483
|
+
* listing operation did not return all blobs remaining to be listed
|
5484
|
+
* with the current page. The continuationToken value can be used as the value for
|
5485
|
+
* the marker parameter in a subsequent call to request the next page of list
|
5486
|
+
* items. The marker value is opaque to the client.
|
5487
|
+
* @param options - Options to find blobs by tags.
|
5488
|
+
*/
|
5489
|
+
private findBlobsByTagsSegment;
|
5490
|
+
/**
|
5491
|
+
* Returns an AsyncIterableIterator for ContainerFindBlobsByTagsSegmentResponse.
|
5492
|
+
*
|
5493
|
+
* @param tagFilterSqlExpression - The where parameter enables the caller to query blobs whose tags match a given expression.
|
5494
|
+
* The given expression must evaluate to true for a blob to be returned in the results.
|
5495
|
+
* The[OData - ABNF] filter syntax rule defines the formal grammar for the value of the where query parameter;
|
5496
|
+
* however, only a subset of the OData filter syntax is supported in the Blob service.
|
5497
|
+
* @param marker - A string value that identifies the portion of
|
5498
|
+
* the list of blobs to be returned with the next listing operation. The
|
5499
|
+
* operation returns the continuationToken value within the response body if the
|
5500
|
+
* listing operation did not return all blobs remaining to be listed
|
5501
|
+
* with the current page. The continuationToken value can be used as the value for
|
5502
|
+
* the marker parameter in a subsequent call to request the next page of list
|
5503
|
+
* items. The marker value is opaque to the client.
|
5504
|
+
* @param options - Options to find blobs by tags.
|
5505
|
+
*/
|
5506
|
+
private findBlobsByTagsSegments;
|
5507
|
+
/**
|
5508
|
+
* Returns an AsyncIterableIterator for blobs.
|
5509
|
+
*
|
5510
|
+
* @param tagFilterSqlExpression - The where parameter enables the caller to query blobs whose tags match a given expression.
|
5511
|
+
* The given expression must evaluate to true for a blob to be returned in the results.
|
5512
|
+
* The[OData - ABNF] filter syntax rule defines the formal grammar for the value of the where query parameter;
|
5513
|
+
* however, only a subset of the OData filter syntax is supported in the Blob service.
|
5514
|
+
* @param options - Options to findBlobsByTagsItems.
|
5515
|
+
*/
|
5516
|
+
private findBlobsByTagsItems;
|
5517
|
+
/**
|
5518
|
+
* Returns an async iterable iterator to find all blobs with specified tag
|
5519
|
+
* under the specified container.
|
5520
|
+
*
|
5521
|
+
* .byPage() returns an async iterable iterator to list the blobs in pages.
|
5522
|
+
*
|
5523
|
+
* Example using `for await` syntax:
|
5524
|
+
*
|
5525
|
+
* ```js
|
5526
|
+
* let i = 1;
|
5527
|
+
* for await (const blob of containerClient.findBlobsByTags("tagkey='tagvalue'")) {
|
5528
|
+
* console.log(`Blob ${i++}: ${blob.name}`);
|
5529
|
+
* }
|
5530
|
+
* ```
|
5531
|
+
*
|
5532
|
+
* Example using `iter.next()`:
|
5533
|
+
*
|
5534
|
+
* ```js
|
5535
|
+
* let i = 1;
|
5536
|
+
* const iter = containerClient.findBlobsByTags("tagkey='tagvalue'");
|
5537
|
+
* let blobItem = await iter.next();
|
5538
|
+
* while (!blobItem.done) {
|
5539
|
+
* console.log(`Blob ${i++}: ${blobItem.value.name}`);
|
5540
|
+
* blobItem = await iter.next();
|
5541
|
+
* }
|
5542
|
+
* ```
|
5543
|
+
*
|
5544
|
+
* Example using `byPage()`:
|
5545
|
+
*
|
5546
|
+
* ```js
|
5547
|
+
* // passing optional maxPageSize in the page settings
|
5548
|
+
* let i = 1;
|
5549
|
+
* for await (const response of containerClient.findBlobsByTags("tagkey='tagvalue'").byPage({ maxPageSize: 20 })) {
|
5550
|
+
* if (response.blobs) {
|
5551
|
+
* for (const blob of response.blobs) {
|
5552
|
+
* console.log(`Blob ${i++}: ${blob.name}`);
|
5553
|
+
* }
|
5554
|
+
* }
|
5555
|
+
* }
|
5556
|
+
* ```
|
5557
|
+
*
|
5558
|
+
* Example using paging with a marker:
|
5559
|
+
*
|
5560
|
+
* ```js
|
5561
|
+
* let i = 1;
|
5562
|
+
* let iterator = containerClient.findBlobsByTags("tagkey='tagvalue'").byPage({ maxPageSize: 2 });
|
5563
|
+
* let response = (await iterator.next()).value;
|
5564
|
+
*
|
5565
|
+
* // Prints 2 blob names
|
5566
|
+
* if (response.blobs) {
|
5567
|
+
* for (const blob of response.blobs) {
|
5568
|
+
* console.log(`Blob ${i++}: ${blob.name}`);
|
5569
|
+
* }
|
5570
|
+
* }
|
5571
|
+
*
|
5572
|
+
* // Gets next marker
|
5573
|
+
* let marker = response.continuationToken;
|
5574
|
+
* // Passing next marker as continuationToken
|
5575
|
+
* iterator = containerClient
|
5576
|
+
* .findBlobsByTags("tagkey='tagvalue'")
|
5577
|
+
* .byPage({ continuationToken: marker, maxPageSize: 10 });
|
5578
|
+
* response = (await iterator.next()).value;
|
5579
|
+
*
|
5580
|
+
* // Prints blob names
|
5581
|
+
* if (response.blobs) {
|
5582
|
+
* for (const blob of response.blobs) {
|
5583
|
+
* console.log(`Blob ${i++}: ${blob.name}`);
|
5584
|
+
* }
|
5585
|
+
* }
|
5586
|
+
* ```
|
5587
|
+
*
|
5588
|
+
* @param tagFilterSqlExpression - The where parameter enables the caller to query blobs whose tags match a given expression.
|
5589
|
+
* The given expression must evaluate to true for a blob to be returned in the results.
|
5590
|
+
* The[OData - ABNF] filter syntax rule defines the formal grammar for the value of the where query parameter;
|
5591
|
+
* however, only a subset of the OData filter syntax is supported in the Blob service.
|
5592
|
+
* @param options - Options to find blobs by tags.
|
5593
|
+
*/
|
5594
|
+
findBlobsByTags(tagFilterSqlExpression: string, options?: ContainerFindBlobByTagsOptions): PagedAsyncIterableIterator<FilterBlobItem, ContainerFindBlobsByTagsSegmentResponse>;
|
5472
5595
|
private getContainerNameFromUrl;
|
5473
5596
|
/**
|
5474
5597
|
* Only available for ContainerClient constructed with a shared key credential.
|
@@ -5620,6 +5743,49 @@ export declare interface ContainerExistsOptions extends CommonOptions {
|
|
5620
5743
|
*/
|
5621
5744
|
abortSignal?: AbortSignalLike;
|
5622
5745
|
}
|
5746
|
+
/** Defines headers for Container_filterBlobs operation. */
|
5747
|
+
export declare interface ContainerFilterBlobsHeaders {
|
5748
|
+
/** If a client request id header is sent in the request, this header will be present in the response with the same value. */
|
5749
|
+
clientRequestId?: string;
|
5750
|
+
/** This header uniquely identifies the request that was made and can be used for troubleshooting the request. */
|
5751
|
+
requestId?: string;
|
5752
|
+
/** Indicates the version of the Blob service used to execute the request. This header is returned for requests made against version 2009-09-19 and above. */
|
5753
|
+
version?: string;
|
5754
|
+
/** UTC date/time value generated by the service that indicates the time at which the response was initiated */
|
5755
|
+
date?: Date;
|
5756
|
+
}
|
5757
|
+
/**
|
5758
|
+
* Options to configure the {@link BlobServiceClient.findBlobsByTags} operation.
|
5759
|
+
*/
|
5760
|
+
export declare interface ContainerFindBlobByTagsOptions extends CommonOptions {
|
5761
|
+
/**
|
5762
|
+
* An implementation of the `AbortSignalLike` interface to signal the request to cancel the operation.
|
5763
|
+
* For example, use the @azure/abort-controller to create an `AbortSignal`.
|
5764
|
+
*/
|
5765
|
+
abortSignal?: AbortSignalLike;
|
5766
|
+
}
|
5767
|
+
/**
|
5768
|
+
* The response of {@link BlobServiceClient.findBlobsByTags} operation.
|
5769
|
+
*/
|
5770
|
+
export declare type ContainerFindBlobsByTagsSegmentResponse = FilterBlobSegment & ContainerFilterBlobsHeaders & {
|
5771
|
+
/**
|
5772
|
+
* The underlying HTTP response.
|
5773
|
+
*/
|
5774
|
+
_response: HttpResponse & {
|
5775
|
+
/**
|
5776
|
+
* The parsed HTTP response headers.
|
5777
|
+
*/
|
5778
|
+
parsedHeaders: ContainerFilterBlobsHeaders;
|
5779
|
+
/**
|
5780
|
+
* The response body as text (string format)
|
5781
|
+
*/
|
5782
|
+
bodyAsText: string;
|
5783
|
+
/**
|
5784
|
+
* The response body as parsed JSON or XML
|
5785
|
+
*/
|
5786
|
+
parsedBody: FilterBlobSegmentModel;
|
5787
|
+
};
|
5788
|
+
};
|
5623
5789
|
/**
|
5624
5790
|
* Options to configure {@link ContainerClient.generateSasUrl} operation.
|
5625
5791
|
*/
|
@@ -6034,6 +6200,10 @@ export declare class ContainerSASPermissions {
|
|
6034
6200
|
* Specifies that Permanent Delete is permitted.
|
6035
6201
|
*/
|
6036
6202
|
permanentDelete: boolean;
|
6203
|
+
/**
|
6204
|
+
* Specifies that Filter Blobs by Tags is permitted.
|
6205
|
+
*/
|
6206
|
+
filterByTags: boolean;
|
6037
6207
|
/**
|
6038
6208
|
* Converts the given permissions to a string. Using this method will guarantee the permissions are in an
|
6039
6209
|
* order accepted by the service.
|
@@ -6097,6 +6267,10 @@ export declare interface ContainerSASPermissionsLike {
|
|
6097
6267
|
* Specifies that Permanent Delete is permitted.
|
6098
6268
|
*/
|
6099
6269
|
permanentDelete?: boolean;
|
6270
|
+
/**
|
6271
|
+
* Specifies that Filter Blobs by Tags is permitted.
|
6272
|
+
*/
|
6273
|
+
filterByTags?: boolean;
|
6100
6274
|
}
|
6101
6275
|
/** Defines headers for Container_setAccessPolicy operation. */
|
6102
6276
|
export declare interface ContainerSetAccessPolicyHeaders {
|
@@ -5634,6 +5634,129 @@ export declare class ContainerClient extends StorageClient {
|
|
5634
5634
|
} & BlobPrefix) | ({
|
5635
5635
|
kind: "blob";
|
5636
5636
|
} & BlobItem), ContainerListBlobHierarchySegmentResponse>;
|
5637
|
+
/**
|
5638
|
+
* The Filter Blobs operation enables callers to list blobs in the container whose tags
|
5639
|
+
* match a given search expression.
|
5640
|
+
*
|
5641
|
+
* @param tagFilterSqlExpression - The where parameter enables the caller to query blobs whose tags match a given expression.
|
5642
|
+
* The given expression must evaluate to true for a blob to be returned in the results.
|
5643
|
+
* The[OData - ABNF] filter syntax rule defines the formal grammar for the value of the where query parameter;
|
5644
|
+
* however, only a subset of the OData filter syntax is supported in the Blob service.
|
5645
|
+
* @param marker - A string value that identifies the portion of
|
5646
|
+
* the list of blobs to be returned with the next listing operation. The
|
5647
|
+
* operation returns the continuationToken value within the response body if the
|
5648
|
+
* listing operation did not return all blobs remaining to be listed
|
5649
|
+
* with the current page. The continuationToken value can be used as the value for
|
5650
|
+
* the marker parameter in a subsequent call to request the next page of list
|
5651
|
+
* items. The marker value is opaque to the client.
|
5652
|
+
* @param options - Options to find blobs by tags.
|
5653
|
+
*/
|
5654
|
+
private findBlobsByTagsSegment;
|
5655
|
+
/**
|
5656
|
+
* Returns an AsyncIterableIterator for ContainerFindBlobsByTagsSegmentResponse.
|
5657
|
+
*
|
5658
|
+
* @param tagFilterSqlExpression - The where parameter enables the caller to query blobs whose tags match a given expression.
|
5659
|
+
* The given expression must evaluate to true for a blob to be returned in the results.
|
5660
|
+
* The[OData - ABNF] filter syntax rule defines the formal grammar for the value of the where query parameter;
|
5661
|
+
* however, only a subset of the OData filter syntax is supported in the Blob service.
|
5662
|
+
* @param marker - A string value that identifies the portion of
|
5663
|
+
* the list of blobs to be returned with the next listing operation. The
|
5664
|
+
* operation returns the continuationToken value within the response body if the
|
5665
|
+
* listing operation did not return all blobs remaining to be listed
|
5666
|
+
* with the current page. The continuationToken value can be used as the value for
|
5667
|
+
* the marker parameter in a subsequent call to request the next page of list
|
5668
|
+
* items. The marker value is opaque to the client.
|
5669
|
+
* @param options - Options to find blobs by tags.
|
5670
|
+
*/
|
5671
|
+
private findBlobsByTagsSegments;
|
5672
|
+
/**
|
5673
|
+
* Returns an AsyncIterableIterator for blobs.
|
5674
|
+
*
|
5675
|
+
* @param tagFilterSqlExpression - The where parameter enables the caller to query blobs whose tags match a given expression.
|
5676
|
+
* The given expression must evaluate to true for a blob to be returned in the results.
|
5677
|
+
* The[OData - ABNF] filter syntax rule defines the formal grammar for the value of the where query parameter;
|
5678
|
+
* however, only a subset of the OData filter syntax is supported in the Blob service.
|
5679
|
+
* @param options - Options to findBlobsByTagsItems.
|
5680
|
+
*/
|
5681
|
+
private findBlobsByTagsItems;
|
5682
|
+
/**
|
5683
|
+
* Returns an async iterable iterator to find all blobs with specified tag
|
5684
|
+
* under the specified container.
|
5685
|
+
*
|
5686
|
+
* .byPage() returns an async iterable iterator to list the blobs in pages.
|
5687
|
+
*
|
5688
|
+
* Example using `for await` syntax:
|
5689
|
+
*
|
5690
|
+
* ```js
|
5691
|
+
* let i = 1;
|
5692
|
+
* for await (const blob of containerClient.findBlobsByTags("tagkey='tagvalue'")) {
|
5693
|
+
* console.log(`Blob ${i++}: ${blob.name}`);
|
5694
|
+
* }
|
5695
|
+
* ```
|
5696
|
+
*
|
5697
|
+
* Example using `iter.next()`:
|
5698
|
+
*
|
5699
|
+
* ```js
|
5700
|
+
* let i = 1;
|
5701
|
+
* const iter = containerClient.findBlobsByTags("tagkey='tagvalue'");
|
5702
|
+
* let blobItem = await iter.next();
|
5703
|
+
* while (!blobItem.done) {
|
5704
|
+
* console.log(`Blob ${i++}: ${blobItem.value.name}`);
|
5705
|
+
* blobItem = await iter.next();
|
5706
|
+
* }
|
5707
|
+
* ```
|
5708
|
+
*
|
5709
|
+
* Example using `byPage()`:
|
5710
|
+
*
|
5711
|
+
* ```js
|
5712
|
+
* // passing optional maxPageSize in the page settings
|
5713
|
+
* let i = 1;
|
5714
|
+
* for await (const response of containerClient.findBlobsByTags("tagkey='tagvalue'").byPage({ maxPageSize: 20 })) {
|
5715
|
+
* if (response.blobs) {
|
5716
|
+
* for (const blob of response.blobs) {
|
5717
|
+
* console.log(`Blob ${i++}: ${blob.name}`);
|
5718
|
+
* }
|
5719
|
+
* }
|
5720
|
+
* }
|
5721
|
+
* ```
|
5722
|
+
*
|
5723
|
+
* Example using paging with a marker:
|
5724
|
+
*
|
5725
|
+
* ```js
|
5726
|
+
* let i = 1;
|
5727
|
+
* let iterator = containerClient.findBlobsByTags("tagkey='tagvalue'").byPage({ maxPageSize: 2 });
|
5728
|
+
* let response = (await iterator.next()).value;
|
5729
|
+
*
|
5730
|
+
* // Prints 2 blob names
|
5731
|
+
* if (response.blobs) {
|
5732
|
+
* for (const blob of response.blobs) {
|
5733
|
+
* console.log(`Blob ${i++}: ${blob.name}`);
|
5734
|
+
* }
|
5735
|
+
* }
|
5736
|
+
*
|
5737
|
+
* // Gets next marker
|
5738
|
+
* let marker = response.continuationToken;
|
5739
|
+
* // Passing next marker as continuationToken
|
5740
|
+
* iterator = containerClient
|
5741
|
+
* .findBlobsByTags("tagkey='tagvalue'")
|
5742
|
+
* .byPage({ continuationToken: marker, maxPageSize: 10 });
|
5743
|
+
* response = (await iterator.next()).value;
|
5744
|
+
*
|
5745
|
+
* // Prints blob names
|
5746
|
+
* if (response.blobs) {
|
5747
|
+
* for (const blob of response.blobs) {
|
5748
|
+
* console.log(`Blob ${i++}: ${blob.name}`);
|
5749
|
+
* }
|
5750
|
+
* }
|
5751
|
+
* ```
|
5752
|
+
*
|
5753
|
+
* @param tagFilterSqlExpression - The where parameter enables the caller to query blobs whose tags match a given expression.
|
5754
|
+
* The given expression must evaluate to true for a blob to be returned in the results.
|
5755
|
+
* The[OData - ABNF] filter syntax rule defines the formal grammar for the value of the where query parameter;
|
5756
|
+
* however, only a subset of the OData filter syntax is supported in the Blob service.
|
5757
|
+
* @param options - Options to find blobs by tags.
|
5758
|
+
*/
|
5759
|
+
findBlobsByTags(tagFilterSqlExpression: string, options?: ContainerFindBlobByTagsOptions): PagedAsyncIterableIterator<FilterBlobItem, ContainerFindBlobsByTagsSegmentResponse>;
|
5637
5760
|
private getContainerNameFromUrl;
|
5638
5761
|
/**
|
5639
5762
|
* Only available for ContainerClient constructed with a shared key credential.
|
@@ -5797,6 +5920,52 @@ export declare interface ContainerExistsOptions extends CommonOptions {
|
|
5797
5920
|
abortSignal?: AbortSignalLike;
|
5798
5921
|
}
|
5799
5922
|
|
5923
|
+
/** Defines headers for Container_filterBlobs operation. */
|
5924
|
+
export declare interface ContainerFilterBlobsHeaders {
|
5925
|
+
/** If a client request id header is sent in the request, this header will be present in the response with the same value. */
|
5926
|
+
clientRequestId?: string;
|
5927
|
+
/** This header uniquely identifies the request that was made and can be used for troubleshooting the request. */
|
5928
|
+
requestId?: string;
|
5929
|
+
/** Indicates the version of the Blob service used to execute the request. This header is returned for requests made against version 2009-09-19 and above. */
|
5930
|
+
version?: string;
|
5931
|
+
/** UTC date/time value generated by the service that indicates the time at which the response was initiated */
|
5932
|
+
date?: Date;
|
5933
|
+
}
|
5934
|
+
|
5935
|
+
/**
|
5936
|
+
* Options to configure the {@link BlobServiceClient.findBlobsByTags} operation.
|
5937
|
+
*/
|
5938
|
+
export declare interface ContainerFindBlobByTagsOptions extends CommonOptions {
|
5939
|
+
/**
|
5940
|
+
* An implementation of the `AbortSignalLike` interface to signal the request to cancel the operation.
|
5941
|
+
* For example, use the @azure/abort-controller to create an `AbortSignal`.
|
5942
|
+
*/
|
5943
|
+
abortSignal?: AbortSignalLike;
|
5944
|
+
}
|
5945
|
+
|
5946
|
+
/**
|
5947
|
+
* The response of {@link BlobServiceClient.findBlobsByTags} operation.
|
5948
|
+
*/
|
5949
|
+
export declare type ContainerFindBlobsByTagsSegmentResponse = FilterBlobSegment & ContainerFilterBlobsHeaders & {
|
5950
|
+
/**
|
5951
|
+
* The underlying HTTP response.
|
5952
|
+
*/
|
5953
|
+
_response: HttpResponse & {
|
5954
|
+
/**
|
5955
|
+
* The parsed HTTP response headers.
|
5956
|
+
*/
|
5957
|
+
parsedHeaders: ContainerFilterBlobsHeaders;
|
5958
|
+
/**
|
5959
|
+
* The response body as text (string format)
|
5960
|
+
*/
|
5961
|
+
bodyAsText: string;
|
5962
|
+
/**
|
5963
|
+
* The response body as parsed JSON or XML
|
5964
|
+
*/
|
5965
|
+
parsedBody: FilterBlobSegmentModel;
|
5966
|
+
};
|
5967
|
+
};
|
5968
|
+
|
5800
5969
|
/**
|
5801
5970
|
* Options to configure {@link ContainerClient.generateSasUrl} operation.
|
5802
5971
|
*/
|
@@ -6230,6 +6399,10 @@ export declare class ContainerSASPermissions {
|
|
6230
6399
|
* Specifies that Permanent Delete is permitted.
|
6231
6400
|
*/
|
6232
6401
|
permanentDelete: boolean;
|
6402
|
+
/**
|
6403
|
+
* Specifies that Filter Blobs by Tags is permitted.
|
6404
|
+
*/
|
6405
|
+
filterByTags: boolean;
|
6233
6406
|
/**
|
6234
6407
|
* Converts the given permissions to a string. Using this method will guarantee the permissions are in an
|
6235
6408
|
* order accepted by the service.
|
@@ -6294,6 +6467,10 @@ export declare interface ContainerSASPermissionsLike {
|
|
6294
6467
|
* Specifies that Permanent Delete is permitted.
|
6295
6468
|
*/
|
6296
6469
|
permanentDelete?: boolean;
|
6470
|
+
/**
|
6471
|
+
* Specifies that Filter Blobs by Tags is permitted.
|
6472
|
+
*/
|
6473
|
+
filterByTags?: boolean;
|
6297
6474
|
}
|
6298
6475
|
|
6299
6476
|
/** Defines headers for Container_setAccessPolicy operation. */
|