@azure/storage-queue 12.15.0 → 12.16.0

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.
@@ -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
  /**