@azure/storage-file-share 12.14.0 → 12.15.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.
- package/dist/index.js +20 -5
- package/dist/index.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 +15 -0
- package/dist-esm/src/generated/src/models/mappers.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/generatedModels.js.map +1 -1
- package/dist-esm/src/utils/constants.js +2 -2
- package/dist-esm/src/utils/constants.js.map +1 -1
- package/package.json +2 -2
- package/types/3.1/storage-file-share.d.ts +3 -0
- package/types/latest/storage-file-share.d.ts +4 -0
package/dist/index.js
CHANGED
@@ -334,8 +334,8 @@ function ipRangeToString(ipRange) {
|
|
334
334
|
|
335
335
|
// Copyright (c) Microsoft Corporation.
|
336
336
|
// Licensed under the MIT license.
|
337
|
-
const SDK_VERSION = "12.
|
338
|
-
const SERVICE_VERSION = "
|
337
|
+
const SDK_VERSION = "12.15.0";
|
338
|
+
const SERVICE_VERSION = "2023-01-03";
|
339
339
|
const FILE_MAX_SIZE_BYTES = 4 * 1024 * 1024 * 1024 * 1024; // 4TB
|
340
340
|
const FILE_RANGE_MAX_SIZE_BYTES = 4 * 1024 * 1024; // 4MB
|
341
341
|
const DEFAULT_MAX_DOWNLOAD_RETRY_REQUESTS = 5;
|
@@ -2437,6 +2437,21 @@ const HandleItem = {
|
|
2437
2437
|
type: {
|
2438
2438
|
name: "DateTimeRfc1123"
|
2439
2439
|
}
|
2440
|
+
},
|
2441
|
+
accessRightList: {
|
2442
|
+
serializedName: "AccessRightList",
|
2443
|
+
xmlName: "AccessRightList",
|
2444
|
+
xmlIsWrapped: true,
|
2445
|
+
xmlElementName: "AccessRight",
|
2446
|
+
type: {
|
2447
|
+
name: "Sequence",
|
2448
|
+
element: {
|
2449
|
+
type: {
|
2450
|
+
name: "Enum",
|
2451
|
+
allowedValues: ["Read", "Write", "Delete"]
|
2452
|
+
}
|
2453
|
+
}
|
2454
|
+
}
|
2440
2455
|
}
|
2441
2456
|
}
|
2442
2457
|
}
|
@@ -6773,7 +6788,7 @@ const timeoutInSeconds = {
|
|
6773
6788
|
const version = {
|
6774
6789
|
parameterPath: "version",
|
6775
6790
|
mapper: {
|
6776
|
-
defaultValue: "
|
6791
|
+
defaultValue: "2023-01-03",
|
6777
6792
|
isConstant: true,
|
6778
6793
|
serializedName: "x-ms-version",
|
6779
6794
|
type: {
|
@@ -10616,7 +10631,7 @@ function convertTracingToRequestOptionsBase(options) {
|
|
10616
10631
|
* Changes may cause incorrect behavior and will be lost if the code is regenerated.
|
10617
10632
|
*/
|
10618
10633
|
const packageName = "azure-storage-file-share";
|
10619
|
-
const packageVersion = "12.
|
10634
|
+
const packageVersion = "12.15.0";
|
10620
10635
|
class StorageClientContext extends coreHttp__namespace.ServiceClient {
|
10621
10636
|
/**
|
10622
10637
|
* Initializes a new instance of the StorageClientContext class.
|
@@ -10642,7 +10657,7 @@ class StorageClientContext extends coreHttp__namespace.ServiceClient {
|
|
10642
10657
|
// Parameter assignments
|
10643
10658
|
this.url = url;
|
10644
10659
|
// Assigning values to Constant parameters
|
10645
|
-
this.version = options.version || "
|
10660
|
+
this.version = options.version || "2023-01-03";
|
10646
10661
|
this.fileRangeWriteFromUrl = options.fileRangeWriteFromUrl || "update";
|
10647
10662
|
}
|
10648
10663
|
}
|