@azure/arm-storage 17.0.1-alpha.20220208.1 → 17.1.0-alpha.20220215.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 +42 -11
- package/LICENSE +1 -1
- package/dist/index.js +836 -452
- package/dist/index.js.map +1 -1
- package/dist/index.min.js +1 -1
- package/dist/index.min.js.map +1 -1
- package/dist-esm/src/models/index.d.ts +147 -21
- package/dist-esm/src/models/index.d.ts.map +1 -1
- package/dist-esm/src/models/index.js +12 -0
- package/dist-esm/src/models/index.js.map +1 -1
- package/dist-esm/src/models/mappers.d.ts +6 -2
- package/dist-esm/src/models/mappers.d.ts.map +1 -1
- package/dist-esm/src/models/mappers.js +241 -53
- package/dist-esm/src/models/mappers.js.map +1 -1
- package/dist-esm/src/models/parameters.d.ts +2 -0
- package/dist-esm/src/models/parameters.d.ts.map +1 -1
- package/dist-esm/src/models/parameters.js +20 -2
- package/dist-esm/src/models/parameters.js.map +1 -1
- package/dist-esm/src/operations/fileServices.js +3 -3
- package/dist-esm/src/operations/fileServices.js.map +1 -1
- package/dist-esm/src/operations/fileShares.js +8 -8
- package/dist-esm/src/operations/fileShares.js.map +1 -1
- package/dist-esm/src/operations/index.d.ts +1 -0
- package/dist-esm/src/operations/index.d.ts.map +1 -1
- package/dist-esm/src/operations/index.js +1 -0
- package/dist-esm/src/operations/index.js.map +1 -1
- package/dist-esm/src/operations/localUsersOperations.d.ts +97 -0
- package/dist-esm/src/operations/localUsersOperations.d.ts.map +1 -0
- package/dist-esm/src/operations/localUsersOperations.js +287 -0
- package/dist-esm/src/operations/localUsersOperations.js.map +1 -0
- package/dist-esm/src/operations/queue.js +6 -6
- package/dist-esm/src/operations/queue.js.map +1 -1
- package/dist-esm/src/operations/queueServices.js +3 -3
- package/dist-esm/src/operations/queueServices.js.map +1 -1
- package/dist-esm/src/operations/tableOperations.js +6 -6
- package/dist-esm/src/operations/tableOperations.js.map +1 -1
- package/dist-esm/src/operations/tableServices.js +3 -3
- package/dist-esm/src/operations/tableServices.js.map +1 -1
- package/dist-esm/src/operationsInterfaces/index.d.ts +1 -0
- package/dist-esm/src/operationsInterfaces/index.d.ts.map +1 -1
- package/dist-esm/src/operationsInterfaces/index.js +1 -0
- package/dist-esm/src/operationsInterfaces/index.js.map +1 -1
- package/dist-esm/src/operationsInterfaces/localUsersOperations.d.ts +77 -0
- package/dist-esm/src/operationsInterfaces/localUsersOperations.d.ts.map +1 -0
- package/dist-esm/src/operationsInterfaces/localUsersOperations.js +9 -0
- package/dist-esm/src/operationsInterfaces/localUsersOperations.js.map +1 -0
- package/dist-esm/src/storageManagementClient.d.ts +2 -1
- package/dist-esm/src/storageManagementClient.d.ts.map +1 -1
- package/dist-esm/src/storageManagementClient.js +4 -3
- package/dist-esm/src/storageManagementClient.js.map +1 -1
- package/dist-esm/test/storage_examples.js +1 -1
- package/dist-esm/test/storage_examples.js.map +1 -1
- package/package.json +21 -7
- package/review/arm-storage.api.md +126 -13
- package/src/models/index.ts +168 -23
- package/src/models/mappers.ts +260 -55
- package/src/models/parameters.ts +22 -1
- package/src/operations/fileServices.ts +3 -3
- package/src/operations/fileShares.ts +8 -8
- package/src/operations/index.ts +1 -0
- package/src/operations/localUsersOperations.ts +371 -0
- package/src/operations/queue.ts +6 -6
- package/src/operations/queueServices.ts +3 -3
- package/src/operations/tableOperations.ts +6 -6
- package/src/operations/tableServices.ts +3 -3
- package/src/operationsInterfaces/index.ts +1 -0
- package/src/operationsInterfaces/localUsersOperations.ts +128 -0
- package/src/storageManagementClient.ts +6 -2
- package/tsconfig.json +18 -5
- package/types/arm-storage.d.ts +244 -23
package/src/models/mappers.ts
CHANGED
|
@@ -464,6 +464,12 @@ export const StorageAccountCreateParameters: coreClient.CompositeMapper = {
|
|
|
464
464
|
className: "Identity"
|
|
465
465
|
}
|
|
466
466
|
},
|
|
467
|
+
allowedCopyScope: {
|
|
468
|
+
serializedName: "properties.allowedCopyScope",
|
|
469
|
+
type: {
|
|
470
|
+
name: "String"
|
|
471
|
+
}
|
|
472
|
+
},
|
|
467
473
|
publicNetworkAccess: {
|
|
468
474
|
serializedName: "properties.publicNetworkAccess",
|
|
469
475
|
type: {
|
|
@@ -525,6 +531,18 @@ export const StorageAccountCreateParameters: coreClient.CompositeMapper = {
|
|
|
525
531
|
name: "Boolean"
|
|
526
532
|
}
|
|
527
533
|
},
|
|
534
|
+
isSftpEnabled: {
|
|
535
|
+
serializedName: "properties.isSftpEnabled",
|
|
536
|
+
type: {
|
|
537
|
+
name: "Boolean"
|
|
538
|
+
}
|
|
539
|
+
},
|
|
540
|
+
isLocalUserEnabled: {
|
|
541
|
+
serializedName: "properties.isLocalUserEnabled",
|
|
542
|
+
type: {
|
|
543
|
+
name: "Boolean"
|
|
544
|
+
}
|
|
545
|
+
},
|
|
528
546
|
isHnsEnabled: {
|
|
529
547
|
serializedName: "properties.isHnsEnabled",
|
|
530
548
|
type: {
|
|
@@ -920,6 +938,12 @@ export const EncryptionIdentity: coreClient.CompositeMapper = {
|
|
|
920
938
|
type: {
|
|
921
939
|
name: "String"
|
|
922
940
|
}
|
|
941
|
+
},
|
|
942
|
+
encryptionFederatedIdentityClientId: {
|
|
943
|
+
serializedName: "federatedIdentityClientId",
|
|
944
|
+
type: {
|
|
945
|
+
name: "String"
|
|
946
|
+
}
|
|
923
947
|
}
|
|
924
948
|
}
|
|
925
949
|
}
|
|
@@ -1136,6 +1160,18 @@ export const ActiveDirectoryProperties: coreClient.CompositeMapper = {
|
|
|
1136
1160
|
type: {
|
|
1137
1161
|
name: "String"
|
|
1138
1162
|
}
|
|
1163
|
+
},
|
|
1164
|
+
samAccountName: {
|
|
1165
|
+
serializedName: "samAccountName",
|
|
1166
|
+
type: {
|
|
1167
|
+
name: "String"
|
|
1168
|
+
}
|
|
1169
|
+
},
|
|
1170
|
+
accountType: {
|
|
1171
|
+
serializedName: "accountType",
|
|
1172
|
+
type: {
|
|
1173
|
+
name: "String"
|
|
1174
|
+
}
|
|
1139
1175
|
}
|
|
1140
1176
|
}
|
|
1141
1177
|
}
|
|
@@ -1667,6 +1703,18 @@ export const StorageAccountUpdateParameters: coreClient.CompositeMapper = {
|
|
|
1667
1703
|
name: "Boolean"
|
|
1668
1704
|
}
|
|
1669
1705
|
},
|
|
1706
|
+
isSftpEnabled: {
|
|
1707
|
+
serializedName: "properties.isSftpEnabled",
|
|
1708
|
+
type: {
|
|
1709
|
+
name: "Boolean"
|
|
1710
|
+
}
|
|
1711
|
+
},
|
|
1712
|
+
isLocalUserEnabled: {
|
|
1713
|
+
serializedName: "properties.isLocalUserEnabled",
|
|
1714
|
+
type: {
|
|
1715
|
+
name: "Boolean"
|
|
1716
|
+
}
|
|
1717
|
+
},
|
|
1670
1718
|
networkRuleSet: {
|
|
1671
1719
|
serializedName: "properties.networkAcls",
|
|
1672
1720
|
type: {
|
|
@@ -1729,6 +1777,12 @@ export const StorageAccountUpdateParameters: coreClient.CompositeMapper = {
|
|
|
1729
1777
|
name: "Composite",
|
|
1730
1778
|
className: "ImmutableStorageAccount"
|
|
1731
1779
|
}
|
|
1780
|
+
},
|
|
1781
|
+
allowedCopyScope: {
|
|
1782
|
+
serializedName: "properties.allowedCopyScope",
|
|
1783
|
+
type: {
|
|
1784
|
+
name: "String"
|
|
1785
|
+
}
|
|
1732
1786
|
}
|
|
1733
1787
|
}
|
|
1734
1788
|
}
|
|
@@ -2904,6 +2958,122 @@ export const ObjectReplicationPolicyFilter: coreClient.CompositeMapper = {
|
|
|
2904
2958
|
}
|
|
2905
2959
|
};
|
|
2906
2960
|
|
|
2961
|
+
export const LocalUsers: coreClient.CompositeMapper = {
|
|
2962
|
+
type: {
|
|
2963
|
+
name: "Composite",
|
|
2964
|
+
className: "LocalUsers",
|
|
2965
|
+
modelProperties: {
|
|
2966
|
+
value: {
|
|
2967
|
+
serializedName: "value",
|
|
2968
|
+
type: {
|
|
2969
|
+
name: "Sequence",
|
|
2970
|
+
element: {
|
|
2971
|
+
type: {
|
|
2972
|
+
name: "Composite",
|
|
2973
|
+
className: "LocalUser"
|
|
2974
|
+
}
|
|
2975
|
+
}
|
|
2976
|
+
}
|
|
2977
|
+
}
|
|
2978
|
+
}
|
|
2979
|
+
}
|
|
2980
|
+
};
|
|
2981
|
+
|
|
2982
|
+
export const PermissionScope: coreClient.CompositeMapper = {
|
|
2983
|
+
type: {
|
|
2984
|
+
name: "Composite",
|
|
2985
|
+
className: "PermissionScope",
|
|
2986
|
+
modelProperties: {
|
|
2987
|
+
permissions: {
|
|
2988
|
+
serializedName: "permissions",
|
|
2989
|
+
required: true,
|
|
2990
|
+
type: {
|
|
2991
|
+
name: "String"
|
|
2992
|
+
}
|
|
2993
|
+
},
|
|
2994
|
+
service: {
|
|
2995
|
+
serializedName: "service",
|
|
2996
|
+
required: true,
|
|
2997
|
+
type: {
|
|
2998
|
+
name: "String"
|
|
2999
|
+
}
|
|
3000
|
+
},
|
|
3001
|
+
resourceName: {
|
|
3002
|
+
serializedName: "resourceName",
|
|
3003
|
+
required: true,
|
|
3004
|
+
type: {
|
|
3005
|
+
name: "String"
|
|
3006
|
+
}
|
|
3007
|
+
}
|
|
3008
|
+
}
|
|
3009
|
+
}
|
|
3010
|
+
};
|
|
3011
|
+
|
|
3012
|
+
export const SshPublicKey: coreClient.CompositeMapper = {
|
|
3013
|
+
type: {
|
|
3014
|
+
name: "Composite",
|
|
3015
|
+
className: "SshPublicKey",
|
|
3016
|
+
modelProperties: {
|
|
3017
|
+
description: {
|
|
3018
|
+
serializedName: "description",
|
|
3019
|
+
type: {
|
|
3020
|
+
name: "String"
|
|
3021
|
+
}
|
|
3022
|
+
},
|
|
3023
|
+
key: {
|
|
3024
|
+
serializedName: "key",
|
|
3025
|
+
type: {
|
|
3026
|
+
name: "String"
|
|
3027
|
+
}
|
|
3028
|
+
}
|
|
3029
|
+
}
|
|
3030
|
+
}
|
|
3031
|
+
};
|
|
3032
|
+
|
|
3033
|
+
export const LocalUserKeys: coreClient.CompositeMapper = {
|
|
3034
|
+
type: {
|
|
3035
|
+
name: "Composite",
|
|
3036
|
+
className: "LocalUserKeys",
|
|
3037
|
+
modelProperties: {
|
|
3038
|
+
sshAuthorizedKeys: {
|
|
3039
|
+
serializedName: "sshAuthorizedKeys",
|
|
3040
|
+
type: {
|
|
3041
|
+
name: "Sequence",
|
|
3042
|
+
element: {
|
|
3043
|
+
type: {
|
|
3044
|
+
name: "Composite",
|
|
3045
|
+
className: "SshPublicKey"
|
|
3046
|
+
}
|
|
3047
|
+
}
|
|
3048
|
+
}
|
|
3049
|
+
},
|
|
3050
|
+
sharedKey: {
|
|
3051
|
+
serializedName: "sharedKey",
|
|
3052
|
+
readOnly: true,
|
|
3053
|
+
type: {
|
|
3054
|
+
name: "String"
|
|
3055
|
+
}
|
|
3056
|
+
}
|
|
3057
|
+
}
|
|
3058
|
+
}
|
|
3059
|
+
};
|
|
3060
|
+
|
|
3061
|
+
export const LocalUserRegeneratePasswordResult: coreClient.CompositeMapper = {
|
|
3062
|
+
type: {
|
|
3063
|
+
name: "Composite",
|
|
3064
|
+
className: "LocalUserRegeneratePasswordResult",
|
|
3065
|
+
modelProperties: {
|
|
3066
|
+
sshPassword: {
|
|
3067
|
+
serializedName: "sshPassword",
|
|
3068
|
+
readOnly: true,
|
|
3069
|
+
type: {
|
|
3070
|
+
name: "String"
|
|
3071
|
+
}
|
|
3072
|
+
}
|
|
3073
|
+
}
|
|
3074
|
+
}
|
|
3075
|
+
};
|
|
3076
|
+
|
|
2907
3077
|
export const EncryptionScopeKeyVaultProperties: coreClient.CompositeMapper = {
|
|
2908
3078
|
type: {
|
|
2909
3079
|
name: "Composite",
|
|
@@ -3721,61 +3891,6 @@ export const Multichannel: coreClient.CompositeMapper = {
|
|
|
3721
3891
|
}
|
|
3722
3892
|
};
|
|
3723
3893
|
|
|
3724
|
-
export const CloudErrorAutoGenerated: coreClient.CompositeMapper = {
|
|
3725
|
-
type: {
|
|
3726
|
-
name: "Composite",
|
|
3727
|
-
className: "CloudErrorAutoGenerated",
|
|
3728
|
-
modelProperties: {
|
|
3729
|
-
error: {
|
|
3730
|
-
serializedName: "error",
|
|
3731
|
-
type: {
|
|
3732
|
-
name: "Composite",
|
|
3733
|
-
className: "CloudErrorBodyAutoGenerated"
|
|
3734
|
-
}
|
|
3735
|
-
}
|
|
3736
|
-
}
|
|
3737
|
-
}
|
|
3738
|
-
};
|
|
3739
|
-
|
|
3740
|
-
export const CloudErrorBodyAutoGenerated: coreClient.CompositeMapper = {
|
|
3741
|
-
type: {
|
|
3742
|
-
name: "Composite",
|
|
3743
|
-
className: "CloudErrorBodyAutoGenerated",
|
|
3744
|
-
modelProperties: {
|
|
3745
|
-
code: {
|
|
3746
|
-
serializedName: "code",
|
|
3747
|
-
type: {
|
|
3748
|
-
name: "String"
|
|
3749
|
-
}
|
|
3750
|
-
},
|
|
3751
|
-
message: {
|
|
3752
|
-
serializedName: "message",
|
|
3753
|
-
type: {
|
|
3754
|
-
name: "String"
|
|
3755
|
-
}
|
|
3756
|
-
},
|
|
3757
|
-
target: {
|
|
3758
|
-
serializedName: "target",
|
|
3759
|
-
type: {
|
|
3760
|
-
name: "String"
|
|
3761
|
-
}
|
|
3762
|
-
},
|
|
3763
|
-
details: {
|
|
3764
|
-
serializedName: "details",
|
|
3765
|
-
type: {
|
|
3766
|
-
name: "Sequence",
|
|
3767
|
-
element: {
|
|
3768
|
-
type: {
|
|
3769
|
-
name: "Composite",
|
|
3770
|
-
className: "CloudErrorBodyAutoGenerated"
|
|
3771
|
-
}
|
|
3772
|
-
}
|
|
3773
|
-
}
|
|
3774
|
-
}
|
|
3775
|
-
}
|
|
3776
|
-
}
|
|
3777
|
-
};
|
|
3778
|
-
|
|
3779
3894
|
export const FileShareItems: coreClient.CompositeMapper = {
|
|
3780
3895
|
type: {
|
|
3781
3896
|
name: "Composite",
|
|
@@ -4248,6 +4363,78 @@ export const ObjectReplicationPolicy: coreClient.CompositeMapper = {
|
|
|
4248
4363
|
}
|
|
4249
4364
|
};
|
|
4250
4365
|
|
|
4366
|
+
export const LocalUser: coreClient.CompositeMapper = {
|
|
4367
|
+
type: {
|
|
4368
|
+
name: "Composite",
|
|
4369
|
+
className: "LocalUser",
|
|
4370
|
+
modelProperties: {
|
|
4371
|
+
...Resource.type.modelProperties,
|
|
4372
|
+
systemData: {
|
|
4373
|
+
serializedName: "systemData",
|
|
4374
|
+
type: {
|
|
4375
|
+
name: "Composite",
|
|
4376
|
+
className: "SystemData"
|
|
4377
|
+
}
|
|
4378
|
+
},
|
|
4379
|
+
permissionScopes: {
|
|
4380
|
+
serializedName: "properties.permissionScopes",
|
|
4381
|
+
type: {
|
|
4382
|
+
name: "Sequence",
|
|
4383
|
+
element: {
|
|
4384
|
+
type: {
|
|
4385
|
+
name: "Composite",
|
|
4386
|
+
className: "PermissionScope"
|
|
4387
|
+
}
|
|
4388
|
+
}
|
|
4389
|
+
}
|
|
4390
|
+
},
|
|
4391
|
+
homeDirectory: {
|
|
4392
|
+
serializedName: "properties.homeDirectory",
|
|
4393
|
+
type: {
|
|
4394
|
+
name: "String"
|
|
4395
|
+
}
|
|
4396
|
+
},
|
|
4397
|
+
sshAuthorizedKeys: {
|
|
4398
|
+
serializedName: "properties.sshAuthorizedKeys",
|
|
4399
|
+
type: {
|
|
4400
|
+
name: "Sequence",
|
|
4401
|
+
element: {
|
|
4402
|
+
type: {
|
|
4403
|
+
name: "Composite",
|
|
4404
|
+
className: "SshPublicKey"
|
|
4405
|
+
}
|
|
4406
|
+
}
|
|
4407
|
+
}
|
|
4408
|
+
},
|
|
4409
|
+
sid: {
|
|
4410
|
+
serializedName: "properties.sid",
|
|
4411
|
+
readOnly: true,
|
|
4412
|
+
type: {
|
|
4413
|
+
name: "String"
|
|
4414
|
+
}
|
|
4415
|
+
},
|
|
4416
|
+
hasSharedKey: {
|
|
4417
|
+
serializedName: "properties.hasSharedKey",
|
|
4418
|
+
type: {
|
|
4419
|
+
name: "Boolean"
|
|
4420
|
+
}
|
|
4421
|
+
},
|
|
4422
|
+
hasSshKey: {
|
|
4423
|
+
serializedName: "properties.hasSshKey",
|
|
4424
|
+
type: {
|
|
4425
|
+
name: "Boolean"
|
|
4426
|
+
}
|
|
4427
|
+
},
|
|
4428
|
+
hasSshPassword: {
|
|
4429
|
+
serializedName: "properties.hasSshPassword",
|
|
4430
|
+
type: {
|
|
4431
|
+
name: "Boolean"
|
|
4432
|
+
}
|
|
4433
|
+
}
|
|
4434
|
+
}
|
|
4435
|
+
}
|
|
4436
|
+
};
|
|
4437
|
+
|
|
4251
4438
|
export const EncryptionScope: coreClient.CompositeMapper = {
|
|
4252
4439
|
type: {
|
|
4253
4440
|
name: "Composite",
|
|
@@ -4684,6 +4871,18 @@ export const StorageAccount: coreClient.CompositeMapper = {
|
|
|
4684
4871
|
className: "NetworkRuleSet"
|
|
4685
4872
|
}
|
|
4686
4873
|
},
|
|
4874
|
+
isSftpEnabled: {
|
|
4875
|
+
serializedName: "properties.isSftpEnabled",
|
|
4876
|
+
type: {
|
|
4877
|
+
name: "Boolean"
|
|
4878
|
+
}
|
|
4879
|
+
},
|
|
4880
|
+
isLocalUserEnabled: {
|
|
4881
|
+
serializedName: "properties.isLocalUserEnabled",
|
|
4882
|
+
type: {
|
|
4883
|
+
name: "Boolean"
|
|
4884
|
+
}
|
|
4885
|
+
},
|
|
4687
4886
|
isHnsEnabled: {
|
|
4688
4887
|
serializedName: "properties.isHnsEnabled",
|
|
4689
4888
|
type: {
|
|
@@ -4785,6 +4984,12 @@ export const StorageAccount: coreClient.CompositeMapper = {
|
|
|
4785
4984
|
name: "Composite",
|
|
4786
4985
|
className: "ImmutableStorageAccount"
|
|
4787
4986
|
}
|
|
4987
|
+
},
|
|
4988
|
+
allowedCopyScope: {
|
|
4989
|
+
serializedName: "properties.allowedCopyScope",
|
|
4990
|
+
type: {
|
|
4991
|
+
name: "String"
|
|
4992
|
+
}
|
|
4788
4993
|
}
|
|
4789
4994
|
}
|
|
4790
4995
|
}
|
package/src/models/parameters.ts
CHANGED
|
@@ -23,6 +23,7 @@ import {
|
|
|
23
23
|
BlobInventoryPolicy as BlobInventoryPolicyMapper,
|
|
24
24
|
PrivateEndpointConnection as PrivateEndpointConnectionMapper,
|
|
25
25
|
ObjectReplicationPolicy as ObjectReplicationPolicyMapper,
|
|
26
|
+
LocalUser as LocalUserMapper,
|
|
26
27
|
EncryptionScope as EncryptionScopeMapper,
|
|
27
28
|
BlobServiceProperties as BlobServicePropertiesMapper,
|
|
28
29
|
BlobContainer as BlobContainerMapper,
|
|
@@ -65,7 +66,7 @@ export const $host: OperationURLParameter = {
|
|
|
65
66
|
export const apiVersion: OperationQueryParameter = {
|
|
66
67
|
parameterPath: "apiVersion",
|
|
67
68
|
mapper: {
|
|
68
|
-
defaultValue: "2021-
|
|
69
|
+
defaultValue: "2021-08-01",
|
|
69
70
|
isConstant: true,
|
|
70
71
|
serializedName: "api-version",
|
|
71
72
|
type: {
|
|
@@ -305,6 +306,26 @@ export const properties3: OperationParameter = {
|
|
|
305
306
|
mapper: ObjectReplicationPolicyMapper
|
|
306
307
|
};
|
|
307
308
|
|
|
309
|
+
export const username: OperationURLParameter = {
|
|
310
|
+
parameterPath: "username",
|
|
311
|
+
mapper: {
|
|
312
|
+
constraints: {
|
|
313
|
+
MaxLength: 64,
|
|
314
|
+
MinLength: 3
|
|
315
|
+
},
|
|
316
|
+
serializedName: "username",
|
|
317
|
+
required: true,
|
|
318
|
+
type: {
|
|
319
|
+
name: "String"
|
|
320
|
+
}
|
|
321
|
+
}
|
|
322
|
+
};
|
|
323
|
+
|
|
324
|
+
export const properties4: OperationParameter = {
|
|
325
|
+
parameterPath: "properties",
|
|
326
|
+
mapper: LocalUserMapper
|
|
327
|
+
};
|
|
328
|
+
|
|
308
329
|
export const encryptionScope: OperationParameter = {
|
|
309
330
|
parameterPath: "encryptionScope",
|
|
310
331
|
mapper: EncryptionScopeMapper
|
|
@@ -110,7 +110,7 @@ const listOperationSpec: coreClient.OperationSpec = {
|
|
|
110
110
|
bodyMapper: Mappers.FileServiceItems
|
|
111
111
|
},
|
|
112
112
|
default: {
|
|
113
|
-
bodyMapper: Mappers.
|
|
113
|
+
bodyMapper: Mappers.CloudError
|
|
114
114
|
}
|
|
115
115
|
},
|
|
116
116
|
queryParameters: [Parameters.apiVersion],
|
|
@@ -132,7 +132,7 @@ const setServicePropertiesOperationSpec: coreClient.OperationSpec = {
|
|
|
132
132
|
bodyMapper: Mappers.FileServiceProperties
|
|
133
133
|
},
|
|
134
134
|
default: {
|
|
135
|
-
bodyMapper: Mappers.
|
|
135
|
+
bodyMapper: Mappers.CloudError
|
|
136
136
|
}
|
|
137
137
|
},
|
|
138
138
|
requestBody: Parameters.parameters8,
|
|
@@ -157,7 +157,7 @@ const getServicePropertiesOperationSpec: coreClient.OperationSpec = {
|
|
|
157
157
|
bodyMapper: Mappers.FileServiceProperties
|
|
158
158
|
},
|
|
159
159
|
default: {
|
|
160
|
-
bodyMapper: Mappers.
|
|
160
|
+
bodyMapper: Mappers.CloudError
|
|
161
161
|
}
|
|
162
162
|
},
|
|
163
163
|
queryParameters: [Parameters.apiVersion],
|
|
@@ -315,7 +315,7 @@ const listOperationSpec: coreClient.OperationSpec = {
|
|
|
315
315
|
bodyMapper: Mappers.FileShareItems
|
|
316
316
|
},
|
|
317
317
|
default: {
|
|
318
|
-
bodyMapper: Mappers.
|
|
318
|
+
bodyMapper: Mappers.CloudError
|
|
319
319
|
}
|
|
320
320
|
},
|
|
321
321
|
queryParameters: [
|
|
@@ -345,7 +345,7 @@ const createOperationSpec: coreClient.OperationSpec = {
|
|
|
345
345
|
bodyMapper: Mappers.FileShare
|
|
346
346
|
},
|
|
347
347
|
default: {
|
|
348
|
-
bodyMapper: Mappers.
|
|
348
|
+
bodyMapper: Mappers.CloudError
|
|
349
349
|
}
|
|
350
350
|
},
|
|
351
351
|
requestBody: Parameters.fileShare,
|
|
@@ -370,7 +370,7 @@ const updateOperationSpec: coreClient.OperationSpec = {
|
|
|
370
370
|
bodyMapper: Mappers.FileShare
|
|
371
371
|
},
|
|
372
372
|
default: {
|
|
373
|
-
bodyMapper: Mappers.
|
|
373
|
+
bodyMapper: Mappers.CloudError
|
|
374
374
|
}
|
|
375
375
|
},
|
|
376
376
|
requestBody: Parameters.fileShare,
|
|
@@ -395,7 +395,7 @@ const getOperationSpec: coreClient.OperationSpec = {
|
|
|
395
395
|
bodyMapper: Mappers.FileShare
|
|
396
396
|
},
|
|
397
397
|
default: {
|
|
398
|
-
bodyMapper: Mappers.
|
|
398
|
+
bodyMapper: Mappers.CloudError
|
|
399
399
|
}
|
|
400
400
|
},
|
|
401
401
|
queryParameters: [Parameters.apiVersion, Parameters.expand2],
|
|
@@ -417,7 +417,7 @@ const deleteOperationSpec: coreClient.OperationSpec = {
|
|
|
417
417
|
200: {},
|
|
418
418
|
204: {},
|
|
419
419
|
default: {
|
|
420
|
-
bodyMapper: Mappers.
|
|
420
|
+
bodyMapper: Mappers.CloudError
|
|
421
421
|
}
|
|
422
422
|
},
|
|
423
423
|
queryParameters: [Parameters.apiVersion, Parameters.include1],
|
|
@@ -438,7 +438,7 @@ const restoreOperationSpec: coreClient.OperationSpec = {
|
|
|
438
438
|
responses: {
|
|
439
439
|
200: {},
|
|
440
440
|
default: {
|
|
441
|
-
bodyMapper: Mappers.
|
|
441
|
+
bodyMapper: Mappers.CloudError
|
|
442
442
|
}
|
|
443
443
|
},
|
|
444
444
|
requestBody: Parameters.deletedShare,
|
|
@@ -464,7 +464,7 @@ const leaseOperationSpec: coreClient.OperationSpec = {
|
|
|
464
464
|
headersMapper: Mappers.FileSharesLeaseHeaders
|
|
465
465
|
},
|
|
466
466
|
default: {
|
|
467
|
-
bodyMapper: Mappers.
|
|
467
|
+
bodyMapper: Mappers.CloudError
|
|
468
468
|
}
|
|
469
469
|
},
|
|
470
470
|
requestBody: Parameters.parameters9,
|
|
@@ -492,7 +492,7 @@ const listNextOperationSpec: coreClient.OperationSpec = {
|
|
|
492
492
|
bodyMapper: Mappers.FileShareItems
|
|
493
493
|
},
|
|
494
494
|
default: {
|
|
495
|
-
bodyMapper: Mappers.
|
|
495
|
+
bodyMapper: Mappers.CloudError
|
|
496
496
|
}
|
|
497
497
|
},
|
|
498
498
|
queryParameters: [
|
package/src/operations/index.ts
CHANGED
|
@@ -16,6 +16,7 @@ export * from "./blobInventoryPolicies";
|
|
|
16
16
|
export * from "./privateEndpointConnections";
|
|
17
17
|
export * from "./privateLinkResources";
|
|
18
18
|
export * from "./objectReplicationPoliciesOperations";
|
|
19
|
+
export * from "./localUsersOperations";
|
|
19
20
|
export * from "./encryptionScopes";
|
|
20
21
|
export * from "./blobServices";
|
|
21
22
|
export * from "./blobContainers";
|