@azure/storage-file-share 12.9.0-alpha.20220105.6 → 12.9.0-alpha.20220111.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/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "@azure/storage-file-share",
|
3
3
|
"sdk-type": "client",
|
4
|
-
"version": "12.9.0-alpha.
|
4
|
+
"version": "12.9.0-alpha.20220111.2",
|
5
5
|
"description": "Microsoft Azure Storage SDK for JavaScript - File",
|
6
6
|
"main": "./dist/index.js",
|
7
7
|
"module": "./dist-esm/src/index.js",
|
@@ -138,7 +138,7 @@
|
|
138
138
|
"chai": "^4.2.0",
|
139
139
|
"cross-env": "^7.0.2",
|
140
140
|
"dotenv": "^8.2.0",
|
141
|
-
"downlevel-dts": "
|
141
|
+
"downlevel-dts": "^0.8.0",
|
142
142
|
"es6-promise": "^4.2.5",
|
143
143
|
"eslint": "^7.15.0",
|
144
144
|
"esm": "^3.2.18",
|
@@ -2583,6 +2583,11 @@ export declare class SASQueryParameters {
|
|
2583
2583
|
* Inner value of getter ipRange.
|
2584
2584
|
*/
|
2585
2585
|
private readonly ipRangeInner?;
|
2586
|
+
/*
|
2587
|
+
* Optional. IP range allowed for this SAS.
|
2588
|
+
*
|
2589
|
+
* @readonly
|
2590
|
+
*/
|
2586
2591
|
readonly ipRange: SasIPRange | undefined;
|
2587
2592
|
/**
|
2588
2593
|
* Creates an instance of SASQueryParameters.
|
@@ -2780,6 +2785,9 @@ export declare class ShareClient extends StorageClient {
|
|
2780
2785
|
*/
|
2781
2786
|
private context;
|
2782
2787
|
private _name;
|
2788
|
+
/*
|
2789
|
+
* The name of the share
|
2790
|
+
*/
|
2783
2791
|
readonly name: string;
|
2784
2792
|
/**
|
2785
2793
|
* @param connectionString - Account connection string or a SAS connection string of an Azure storage account.
|
@@ -2847,6 +2855,12 @@ export declare class ShareClient extends StorageClient {
|
|
2847
2855
|
* @returns The ShareDirectoryClient object for the given directory name.
|
2848
2856
|
*/
|
2849
2857
|
getDirectoryClient(directoryName: string): ShareDirectoryClient;
|
2858
|
+
/*
|
2859
|
+
* Gets the directory client for the root directory of this share.
|
2860
|
+
* Note that the root directory always exists and cannot be deleted.
|
2861
|
+
*
|
2862
|
+
* @readonly A new ShareDirectoryClient object for the root directory.
|
2863
|
+
*/
|
2850
2864
|
readonly rootDirectoryClient: ShareDirectoryClient;
|
2851
2865
|
/**
|
2852
2866
|
* Creates a new subdirectory under this share.
|
@@ -3248,8 +3262,17 @@ export declare class ShareDirectoryClient extends StorageClient {
|
|
3248
3262
|
private _shareName;
|
3249
3263
|
private _path;
|
3250
3264
|
private _name;
|
3265
|
+
/*
|
3266
|
+
* The share name corresponding to this directory client
|
3267
|
+
*/
|
3251
3268
|
readonly shareName: string;
|
3269
|
+
/*
|
3270
|
+
* The full path of the directory
|
3271
|
+
*/
|
3252
3272
|
readonly path: string;
|
3273
|
+
/*
|
3274
|
+
* The name of the directory
|
3275
|
+
*/
|
3253
3276
|
readonly name: string;
|
3254
3277
|
/**
|
3255
3278
|
* Creates an instance of DirectoryClient.
|
@@ -3728,8 +3751,17 @@ export declare class ShareFileClient extends StorageClient {
|
|
3728
3751
|
private _shareName;
|
3729
3752
|
private _path;
|
3730
3753
|
private _name;
|
3754
|
+
/*
|
3755
|
+
* The share name corresponding to this file client
|
3756
|
+
*/
|
3731
3757
|
readonly shareName: string;
|
3758
|
+
/*
|
3759
|
+
* The full path of the file
|
3760
|
+
*/
|
3732
3761
|
readonly path: string;
|
3762
|
+
/*
|
3763
|
+
* The name of the file
|
3764
|
+
*/
|
3733
3765
|
readonly name: string;
|
3734
3766
|
/**
|
3735
3767
|
* Creates an instance of ShareFileClient.
|
@@ -4512,7 +4544,17 @@ export declare class ShareLeaseClient {
|
|
4512
4544
|
private _url;
|
4513
4545
|
private fileOrShare;
|
4514
4546
|
private isShare;
|
4547
|
+
/*
|
4548
|
+
* Gets the lease Id.
|
4549
|
+
*
|
4550
|
+
* @readonly
|
4551
|
+
*/
|
4515
4552
|
readonly leaseId: string;
|
4553
|
+
/*
|
4554
|
+
* Gets the url.
|
4555
|
+
*
|
4556
|
+
* @readonly
|
4557
|
+
*/
|
4516
4558
|
readonly url: string;
|
4517
4559
|
/**
|
4518
4560
|
* Creates an instance of ShareLeaseClient.
|