@azure/storage-queue 12.14.0 → 12.16.0-beta.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/dist/index.js +265 -6
- package/dist/index.js.map +1 -1
- package/dist-esm/src/Pipeline.js +4 -2
- package/dist-esm/src/Pipeline.js.map +1 -1
- package/dist-esm/src/generated/src/models/parameters.js +1 -1
- package/dist-esm/src/generated/src/models/parameters.js.map +1 -1
- package/dist-esm/src/generated/src/storageClientContext.js +2 -2
- package/dist-esm/src/generated/src/storageClientContext.js.map +1 -1
- package/dist-esm/src/index.js +1 -0
- package/dist-esm/src/index.js.map +1 -1
- package/dist-esm/src/models.js +13 -1
- package/dist-esm/src/models.js.map +1 -1
- package/dist-esm/src/policies/StorageBearerTokenChallengeAuthenticationPolicy.js +245 -0
- package/dist-esm/src/policies/StorageBearerTokenChallengeAuthenticationPolicy.js.map +1 -0
- package/dist-esm/src/utils/constants.js +2 -2
- package/dist-esm/src/utils/constants.js.map +1 -1
- package/package.json +1 -1
- package/types/3.1/storage-queue.d.ts +15 -0
- package/types/latest/storage-queue.d.ts +17 -0
|
@@ -394,6 +394,8 @@ export declare interface GeoReplication {
|
|
|
394
394
|
/** Defines values for GeoReplicationStatusType. */
|
|
395
395
|
export declare type GeoReplicationStatusType = "live" | "bootstrap" | "unavailable";
|
|
396
396
|
|
|
397
|
+
export declare function getQueueServiceAccountAudience(storageAccountName: string): string;
|
|
398
|
+
|
|
397
399
|
export { HttpHeaders }
|
|
398
400
|
|
|
399
401
|
export { HttpOperationResponse }
|
|
@@ -2261,6 +2263,21 @@ export declare interface StoragePipelineOptions {
|
|
|
2261
2263
|
* Configures the HTTP client to send requests and receive responses.
|
|
2262
2264
|
*/
|
|
2263
2265
|
httpClient?: IHttpClient;
|
|
2266
|
+
/**
|
|
2267
|
+
* The audience used to retrieve an AAD token.
|
|
2268
|
+
* By default, audience 'https://storage.azure.com/.default' will be used.
|
|
2269
|
+
*/
|
|
2270
|
+
audience?: string;
|
|
2271
|
+
}
|
|
2272
|
+
|
|
2273
|
+
/**
|
|
2274
|
+
* Defines the known cloud audiences for Storage.
|
|
2275
|
+
*/
|
|
2276
|
+
export declare enum StorageQueueAudience {
|
|
2277
|
+
/**
|
|
2278
|
+
* The OAuth scope to use to retrieve an AAD token for Azure Storage.
|
|
2279
|
+
*/
|
|
2280
|
+
StorageOAuthScopes = "https://storage.azure.com/.default"
|
|
2264
2281
|
}
|
|
2265
2282
|
|
|
2266
2283
|
/**
|