@azure/storage-file-share 12.16.0 → 12.17.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.
@@ -2581,6 +2581,8 @@ export declare function generateAccountSASQueryParameters(accountSASSignatureVal
2581
2581
  */
2582
2582
  export declare function generateFileSASQueryParameters(fileSASSignatureValues: FileSASSignatureValues, sharedKeyCredential: StorageSharedKeyCredential): SASQueryParameters;
2583
2583
 
2584
+ export declare function getFileServiceAccountAudience(storageAccountName: string): string;
2585
+
2584
2586
  /** A listed Azure Storage handle item. */
2585
2587
  export declare interface HandleItem {
2586
2588
  /** XSMB service handle ID */
@@ -5792,6 +5794,16 @@ declare interface StorageClientOptionalParams extends coreHttp.ServiceClientOpti
5792
5794
  endpoint?: string;
5793
5795
  }
5794
5796
 
5797
+ /**
5798
+ * Defines the known cloud audiences for Storage.
5799
+ */
5800
+ export declare enum StorageFileAudience {
5801
+ /**
5802
+ * The OAuth scope to use to retrieve an AAD token for Azure Storage.
5803
+ */
5804
+ StorageOAuthScopes = "https://storage.azure.com/.default"
5805
+ }
5806
+
5795
5807
  /**
5796
5808
  * Option interface for {@link newPipeline} function.
5797
5809
  */
@@ -5816,6 +5828,11 @@ export declare interface StoragePipelineOptions {
5816
5828
  * Configures the HTTP client to send requests and receive responses.
5817
5829
  */
5818
5830
  httpClient?: IHttpClient;
5831
+ /**
5832
+ * The audience used to retrieve an AAD token.
5833
+ * By default, audience 'https://storage.azure.com/.default' will be used.
5834
+ */
5835
+ audience?: string;
5819
5836
  }
5820
5837
 
5821
5838
  /**