@azure/storage-file-share 12.9.0-alpha.20220128.2 → 12.9.0-beta.3
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 +6 -9
- package/dist/index.js +585 -45
- package/dist/index.js.map +1 -1
- package/dist-esm/src/Clients.js +125 -1
- package/dist-esm/src/Clients.js.map +1 -1
- package/dist-esm/src/generated/src/models/index.js.map +1 -1
- package/dist-esm/src/generated/src/models/mappers.js +232 -0
- package/dist-esm/src/generated/src/models/mappers.js.map +1 -1
- package/dist-esm/src/generated/src/models/parameters.js +101 -35
- package/dist-esm/src/generated/src/models/parameters.js.map +1 -1
- package/dist-esm/src/generated/src/operations/directory.js +48 -0
- package/dist-esm/src/generated/src/operations/directory.js.map +1 -1
- package/dist-esm/src/generated/src/operations/file.js +51 -7
- package/dist-esm/src/generated/src/operations/file.js.map +1 -1
- package/dist-esm/src/generated/src/storageClientContext.js +1 -1
- package/dist-esm/src/generated/src/storageClientContext.js.map +1 -1
- package/dist-esm/src/generatedModels.js.map +1 -1
- package/dist-esm/src/utils/constants.js +1 -1
- package/dist-esm/src/utils/constants.js.map +1 -1
- package/dist-esm/src/utils/utils.common.js +22 -0
- package/dist-esm/src/utils/utils.common.js.map +1 -1
- package/package.json +6 -6
- package/types/3.1/storage-file-share.d.ts +225 -4
- package/types/latest/storage-file-share.d.ts +231 -4
package/CHANGELOG.md
CHANGED
@@ -1,14 +1,11 @@
|
|
1
1
|
# Release History
|
2
2
|
|
3
|
-
## 12.9.0-beta.3 (
|
3
|
+
## 12.9.0-beta.3 (2022-02-11)
|
4
4
|
|
5
5
|
### Features Added
|
6
6
|
|
7
|
-
|
8
|
-
|
9
|
-
### Bugs Fixed
|
10
|
-
|
11
|
-
### Other Changes
|
7
|
+
- Added support for service version 2021-04-10.
|
8
|
+
- Added support for renaming a file or a directory.
|
12
9
|
|
13
10
|
## 12.9.0-beta.2 (2021-12-03)
|
14
11
|
|
@@ -206,14 +203,14 @@
|
|
206
203
|
Before this change the option is specified as
|
207
204
|
```js
|
208
205
|
fileServiceClient.listShares({
|
209
|
-
include: ["metadata", "snapshots"]
|
206
|
+
include: ["metadata", "snapshots"],
|
210
207
|
});
|
211
208
|
```
|
212
209
|
After this change:
|
213
210
|
```js
|
214
211
|
fileServiceClient.listShares({
|
215
212
|
includeMetadata: true,
|
216
|
-
includeSnapshots: true
|
213
|
+
includeSnapshots: true,
|
217
214
|
});
|
218
215
|
```
|
219
216
|
|
@@ -244,7 +241,7 @@
|
|
244
241
|
- Added `DirectoryClient.listHandlesSegment()` and `FileClient.listHandlesSegment()` to returns a list of open handles on a directory or a file.
|
245
242
|
- Added `DirectoryClient.forceCloseHandlesSegment()`, `FileClient.forceCloseHandlesSegment()`, `DirectoryClient.forceCloseHandle()` and `FileClient.forceCloseHandle()` to close handles.
|
246
243
|
- Pass through `options.abortSignal` to the optional `abortSignal` attribute in option bags instead of using `AbortSignal.none` as the default value when `options.abortSignal` is not specified.
|
247
|
-
- Basic HTTP proxy authentication support is added. Proxy settings can be passed in the options while creating a new client. Example - [
|
244
|
+
- Basic HTTP proxy authentication support is added. Proxy settings can be passed in the options while creating a new client. Example - [proxyAuth.ts](https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/storage/storage-file-share/samples-dev/proxyAuth.ts)
|
248
245
|
- Connection strings for explicit storage endpoints are supported. - [Configure Azure Storage connection strings](https://docs.microsoft.com/azure/storage/common/storage-configure-connection-string#create-a-connection-string-for-an-explicit-storage-endpoint)
|
249
246
|
|
250
247
|
## 12.0.0-preview.2 (2019-08-01)
|