@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
|
@@ -81,6 +81,11 @@ export declare const PrivateLinkResourceListResult: coreClient.CompositeMapper;
|
|
|
81
81
|
export declare const ObjectReplicationPolicies: coreClient.CompositeMapper;
|
|
82
82
|
export declare const ObjectReplicationPolicyRule: coreClient.CompositeMapper;
|
|
83
83
|
export declare const ObjectReplicationPolicyFilter: coreClient.CompositeMapper;
|
|
84
|
+
export declare const LocalUsers: coreClient.CompositeMapper;
|
|
85
|
+
export declare const PermissionScope: coreClient.CompositeMapper;
|
|
86
|
+
export declare const SshPublicKey: coreClient.CompositeMapper;
|
|
87
|
+
export declare const LocalUserKeys: coreClient.CompositeMapper;
|
|
88
|
+
export declare const LocalUserRegeneratePasswordResult: coreClient.CompositeMapper;
|
|
84
89
|
export declare const EncryptionScopeKeyVaultProperties: coreClient.CompositeMapper;
|
|
85
90
|
export declare const EncryptionScopeListResult: coreClient.CompositeMapper;
|
|
86
91
|
export declare const BlobServiceItems: coreClient.CompositeMapper;
|
|
@@ -106,8 +111,6 @@ export declare const FileServiceItems: coreClient.CompositeMapper;
|
|
|
106
111
|
export declare const ProtocolSettings: coreClient.CompositeMapper;
|
|
107
112
|
export declare const SmbSetting: coreClient.CompositeMapper;
|
|
108
113
|
export declare const Multichannel: coreClient.CompositeMapper;
|
|
109
|
-
export declare const CloudErrorAutoGenerated: coreClient.CompositeMapper;
|
|
110
|
-
export declare const CloudErrorBodyAutoGenerated: coreClient.CompositeMapper;
|
|
111
114
|
export declare const FileShareItems: coreClient.CompositeMapper;
|
|
112
115
|
export declare const SignedIdentifier: coreClient.CompositeMapper;
|
|
113
116
|
export declare const AccessPolicy: coreClient.CompositeMapper;
|
|
@@ -125,6 +128,7 @@ export declare const ManagementPolicy: coreClient.CompositeMapper;
|
|
|
125
128
|
export declare const BlobInventoryPolicy: coreClient.CompositeMapper;
|
|
126
129
|
export declare const PrivateLinkResource: coreClient.CompositeMapper;
|
|
127
130
|
export declare const ObjectReplicationPolicy: coreClient.CompositeMapper;
|
|
131
|
+
export declare const LocalUser: coreClient.CompositeMapper;
|
|
128
132
|
export declare const EncryptionScope: coreClient.CompositeMapper;
|
|
129
133
|
export declare const BlobServiceProperties: coreClient.CompositeMapper;
|
|
130
134
|
export declare const AzureEntityResource: coreClient.CompositeMapper;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"mappers.d.ts","sourceRoot":"","sources":["../../../src/models/mappers.ts"],"names":[],"mappings":"AAQA,OAAO,KAAK,UAAU,MAAM,oBAAoB,CAAC;AAEjD,eAAO,MAAM,mBAAmB,EAAE,UAAU,CAAC,eAmB5C,CAAC;AAEF,eAAO,MAAM,SAAS,EAAE,UAAU,CAAC,eAiClC,CAAC;AAEF,eAAO,MAAM,gBAAgB,EAAE,UAAU,CAAC,eA+BzC,CAAC;AAEF,eAAO,MAAM,oBAAoB,EAAE,UAAU,CAAC,eAmB7C,CAAC;AAEF,eAAO,MAAM,mBAAmB,EAAE,UAAU,CAAC,eAmE5C,CAAC;AAEF,eAAO,MAAM,SAAS,EAAE,UAAU,CAAC,eAmBlC,CAAC;AAEF,eAAO,MAAM,oBAAoB,EAAE,UAAU,CAAC,eAoB7C,CAAC;AAEF,eAAO,MAAM,cAAc,EAAE,UAAU,CAAC,eAyEvC,CAAC;AAEF,eAAO,MAAM,aAAa,EAAE,UAAU,CAAC,eAqBtC,CAAC;AAEF,eAAO,MAAM,WAAW,EAAE,UAAU,CAAC,eAgCpC,CAAC;AAEF,eAAO,MAAM,6CAA6C,EAAE,UAAU,CAAC,eAsBtE,CAAC;AAEF,eAAO,MAAM,2BAA2B,EAAE,UAAU,CAAC,eA6BpD,CAAC;AAEF,eAAO,MAAM,8BAA8B,EAAE,UAAU,CAAC,
|
|
1
|
+
{"version":3,"file":"mappers.d.ts","sourceRoot":"","sources":["../../../src/models/mappers.ts"],"names":[],"mappings":"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"}
|
|
@@ -449,6 +449,12 @@ export const StorageAccountCreateParameters = {
|
|
|
449
449
|
className: "Identity"
|
|
450
450
|
}
|
|
451
451
|
},
|
|
452
|
+
allowedCopyScope: {
|
|
453
|
+
serializedName: "properties.allowedCopyScope",
|
|
454
|
+
type: {
|
|
455
|
+
name: "String"
|
|
456
|
+
}
|
|
457
|
+
},
|
|
452
458
|
publicNetworkAccess: {
|
|
453
459
|
serializedName: "properties.publicNetworkAccess",
|
|
454
460
|
type: {
|
|
@@ -510,6 +516,18 @@ export const StorageAccountCreateParameters = {
|
|
|
510
516
|
name: "Boolean"
|
|
511
517
|
}
|
|
512
518
|
},
|
|
519
|
+
isSftpEnabled: {
|
|
520
|
+
serializedName: "properties.isSftpEnabled",
|
|
521
|
+
type: {
|
|
522
|
+
name: "Boolean"
|
|
523
|
+
}
|
|
524
|
+
},
|
|
525
|
+
isLocalUserEnabled: {
|
|
526
|
+
serializedName: "properties.isLocalUserEnabled",
|
|
527
|
+
type: {
|
|
528
|
+
name: "Boolean"
|
|
529
|
+
}
|
|
530
|
+
},
|
|
513
531
|
isHnsEnabled: {
|
|
514
532
|
serializedName: "properties.isHnsEnabled",
|
|
515
533
|
type: {
|
|
@@ -893,6 +911,12 @@ export const EncryptionIdentity = {
|
|
|
893
911
|
type: {
|
|
894
912
|
name: "String"
|
|
895
913
|
}
|
|
914
|
+
},
|
|
915
|
+
encryptionFederatedIdentityClientId: {
|
|
916
|
+
serializedName: "federatedIdentityClientId",
|
|
917
|
+
type: {
|
|
918
|
+
name: "String"
|
|
919
|
+
}
|
|
896
920
|
}
|
|
897
921
|
}
|
|
898
922
|
}
|
|
@@ -1103,6 +1127,18 @@ export const ActiveDirectoryProperties = {
|
|
|
1103
1127
|
type: {
|
|
1104
1128
|
name: "String"
|
|
1105
1129
|
}
|
|
1130
|
+
},
|
|
1131
|
+
samAccountName: {
|
|
1132
|
+
serializedName: "samAccountName",
|
|
1133
|
+
type: {
|
|
1134
|
+
name: "String"
|
|
1135
|
+
}
|
|
1136
|
+
},
|
|
1137
|
+
accountType: {
|
|
1138
|
+
serializedName: "accountType",
|
|
1139
|
+
type: {
|
|
1140
|
+
name: "String"
|
|
1141
|
+
}
|
|
1106
1142
|
}
|
|
1107
1143
|
}
|
|
1108
1144
|
}
|
|
@@ -1619,6 +1655,18 @@ export const StorageAccountUpdateParameters = {
|
|
|
1619
1655
|
name: "Boolean"
|
|
1620
1656
|
}
|
|
1621
1657
|
},
|
|
1658
|
+
isSftpEnabled: {
|
|
1659
|
+
serializedName: "properties.isSftpEnabled",
|
|
1660
|
+
type: {
|
|
1661
|
+
name: "Boolean"
|
|
1662
|
+
}
|
|
1663
|
+
},
|
|
1664
|
+
isLocalUserEnabled: {
|
|
1665
|
+
serializedName: "properties.isLocalUserEnabled",
|
|
1666
|
+
type: {
|
|
1667
|
+
name: "Boolean"
|
|
1668
|
+
}
|
|
1669
|
+
},
|
|
1622
1670
|
networkRuleSet: {
|
|
1623
1671
|
serializedName: "properties.networkAcls",
|
|
1624
1672
|
type: {
|
|
@@ -1681,6 +1729,12 @@ export const StorageAccountUpdateParameters = {
|
|
|
1681
1729
|
name: "Composite",
|
|
1682
1730
|
className: "ImmutableStorageAccount"
|
|
1683
1731
|
}
|
|
1732
|
+
},
|
|
1733
|
+
allowedCopyScope: {
|
|
1734
|
+
serializedName: "properties.allowedCopyScope",
|
|
1735
|
+
type: {
|
|
1736
|
+
name: "String"
|
|
1737
|
+
}
|
|
1684
1738
|
}
|
|
1685
1739
|
}
|
|
1686
1740
|
}
|
|
@@ -2819,6 +2873,117 @@ export const ObjectReplicationPolicyFilter = {
|
|
|
2819
2873
|
}
|
|
2820
2874
|
}
|
|
2821
2875
|
};
|
|
2876
|
+
export const LocalUsers = {
|
|
2877
|
+
type: {
|
|
2878
|
+
name: "Composite",
|
|
2879
|
+
className: "LocalUsers",
|
|
2880
|
+
modelProperties: {
|
|
2881
|
+
value: {
|
|
2882
|
+
serializedName: "value",
|
|
2883
|
+
type: {
|
|
2884
|
+
name: "Sequence",
|
|
2885
|
+
element: {
|
|
2886
|
+
type: {
|
|
2887
|
+
name: "Composite",
|
|
2888
|
+
className: "LocalUser"
|
|
2889
|
+
}
|
|
2890
|
+
}
|
|
2891
|
+
}
|
|
2892
|
+
}
|
|
2893
|
+
}
|
|
2894
|
+
}
|
|
2895
|
+
};
|
|
2896
|
+
export const PermissionScope = {
|
|
2897
|
+
type: {
|
|
2898
|
+
name: "Composite",
|
|
2899
|
+
className: "PermissionScope",
|
|
2900
|
+
modelProperties: {
|
|
2901
|
+
permissions: {
|
|
2902
|
+
serializedName: "permissions",
|
|
2903
|
+
required: true,
|
|
2904
|
+
type: {
|
|
2905
|
+
name: "String"
|
|
2906
|
+
}
|
|
2907
|
+
},
|
|
2908
|
+
service: {
|
|
2909
|
+
serializedName: "service",
|
|
2910
|
+
required: true,
|
|
2911
|
+
type: {
|
|
2912
|
+
name: "String"
|
|
2913
|
+
}
|
|
2914
|
+
},
|
|
2915
|
+
resourceName: {
|
|
2916
|
+
serializedName: "resourceName",
|
|
2917
|
+
required: true,
|
|
2918
|
+
type: {
|
|
2919
|
+
name: "String"
|
|
2920
|
+
}
|
|
2921
|
+
}
|
|
2922
|
+
}
|
|
2923
|
+
}
|
|
2924
|
+
};
|
|
2925
|
+
export const SshPublicKey = {
|
|
2926
|
+
type: {
|
|
2927
|
+
name: "Composite",
|
|
2928
|
+
className: "SshPublicKey",
|
|
2929
|
+
modelProperties: {
|
|
2930
|
+
description: {
|
|
2931
|
+
serializedName: "description",
|
|
2932
|
+
type: {
|
|
2933
|
+
name: "String"
|
|
2934
|
+
}
|
|
2935
|
+
},
|
|
2936
|
+
key: {
|
|
2937
|
+
serializedName: "key",
|
|
2938
|
+
type: {
|
|
2939
|
+
name: "String"
|
|
2940
|
+
}
|
|
2941
|
+
}
|
|
2942
|
+
}
|
|
2943
|
+
}
|
|
2944
|
+
};
|
|
2945
|
+
export const LocalUserKeys = {
|
|
2946
|
+
type: {
|
|
2947
|
+
name: "Composite",
|
|
2948
|
+
className: "LocalUserKeys",
|
|
2949
|
+
modelProperties: {
|
|
2950
|
+
sshAuthorizedKeys: {
|
|
2951
|
+
serializedName: "sshAuthorizedKeys",
|
|
2952
|
+
type: {
|
|
2953
|
+
name: "Sequence",
|
|
2954
|
+
element: {
|
|
2955
|
+
type: {
|
|
2956
|
+
name: "Composite",
|
|
2957
|
+
className: "SshPublicKey"
|
|
2958
|
+
}
|
|
2959
|
+
}
|
|
2960
|
+
}
|
|
2961
|
+
},
|
|
2962
|
+
sharedKey: {
|
|
2963
|
+
serializedName: "sharedKey",
|
|
2964
|
+
readOnly: true,
|
|
2965
|
+
type: {
|
|
2966
|
+
name: "String"
|
|
2967
|
+
}
|
|
2968
|
+
}
|
|
2969
|
+
}
|
|
2970
|
+
}
|
|
2971
|
+
};
|
|
2972
|
+
export const LocalUserRegeneratePasswordResult = {
|
|
2973
|
+
type: {
|
|
2974
|
+
name: "Composite",
|
|
2975
|
+
className: "LocalUserRegeneratePasswordResult",
|
|
2976
|
+
modelProperties: {
|
|
2977
|
+
sshPassword: {
|
|
2978
|
+
serializedName: "sshPassword",
|
|
2979
|
+
readOnly: true,
|
|
2980
|
+
type: {
|
|
2981
|
+
name: "String"
|
|
2982
|
+
}
|
|
2983
|
+
}
|
|
2984
|
+
}
|
|
2985
|
+
}
|
|
2986
|
+
};
|
|
2822
2987
|
export const EncryptionScopeKeyVaultProperties = {
|
|
2823
2988
|
type: {
|
|
2824
2989
|
name: "Composite",
|
|
@@ -3611,59 +3776,6 @@ export const Multichannel = {
|
|
|
3611
3776
|
}
|
|
3612
3777
|
}
|
|
3613
3778
|
};
|
|
3614
|
-
export const CloudErrorAutoGenerated = {
|
|
3615
|
-
type: {
|
|
3616
|
-
name: "Composite",
|
|
3617
|
-
className: "CloudErrorAutoGenerated",
|
|
3618
|
-
modelProperties: {
|
|
3619
|
-
error: {
|
|
3620
|
-
serializedName: "error",
|
|
3621
|
-
type: {
|
|
3622
|
-
name: "Composite",
|
|
3623
|
-
className: "CloudErrorBodyAutoGenerated"
|
|
3624
|
-
}
|
|
3625
|
-
}
|
|
3626
|
-
}
|
|
3627
|
-
}
|
|
3628
|
-
};
|
|
3629
|
-
export const CloudErrorBodyAutoGenerated = {
|
|
3630
|
-
type: {
|
|
3631
|
-
name: "Composite",
|
|
3632
|
-
className: "CloudErrorBodyAutoGenerated",
|
|
3633
|
-
modelProperties: {
|
|
3634
|
-
code: {
|
|
3635
|
-
serializedName: "code",
|
|
3636
|
-
type: {
|
|
3637
|
-
name: "String"
|
|
3638
|
-
}
|
|
3639
|
-
},
|
|
3640
|
-
message: {
|
|
3641
|
-
serializedName: "message",
|
|
3642
|
-
type: {
|
|
3643
|
-
name: "String"
|
|
3644
|
-
}
|
|
3645
|
-
},
|
|
3646
|
-
target: {
|
|
3647
|
-
serializedName: "target",
|
|
3648
|
-
type: {
|
|
3649
|
-
name: "String"
|
|
3650
|
-
}
|
|
3651
|
-
},
|
|
3652
|
-
details: {
|
|
3653
|
-
serializedName: "details",
|
|
3654
|
-
type: {
|
|
3655
|
-
name: "Sequence",
|
|
3656
|
-
element: {
|
|
3657
|
-
type: {
|
|
3658
|
-
name: "Composite",
|
|
3659
|
-
className: "CloudErrorBodyAutoGenerated"
|
|
3660
|
-
}
|
|
3661
|
-
}
|
|
3662
|
-
}
|
|
3663
|
-
}
|
|
3664
|
-
}
|
|
3665
|
-
}
|
|
3666
|
-
};
|
|
3667
3779
|
export const FileShareItems = {
|
|
3668
3780
|
type: {
|
|
3669
3781
|
name: "Composite",
|
|
@@ -4087,6 +4199,67 @@ export const ObjectReplicationPolicy = {
|
|
|
4087
4199
|
} })
|
|
4088
4200
|
}
|
|
4089
4201
|
};
|
|
4202
|
+
export const LocalUser = {
|
|
4203
|
+
type: {
|
|
4204
|
+
name: "Composite",
|
|
4205
|
+
className: "LocalUser",
|
|
4206
|
+
modelProperties: Object.assign(Object.assign({}, Resource.type.modelProperties), { systemData: {
|
|
4207
|
+
serializedName: "systemData",
|
|
4208
|
+
type: {
|
|
4209
|
+
name: "Composite",
|
|
4210
|
+
className: "SystemData"
|
|
4211
|
+
}
|
|
4212
|
+
}, permissionScopes: {
|
|
4213
|
+
serializedName: "properties.permissionScopes",
|
|
4214
|
+
type: {
|
|
4215
|
+
name: "Sequence",
|
|
4216
|
+
element: {
|
|
4217
|
+
type: {
|
|
4218
|
+
name: "Composite",
|
|
4219
|
+
className: "PermissionScope"
|
|
4220
|
+
}
|
|
4221
|
+
}
|
|
4222
|
+
}
|
|
4223
|
+
}, homeDirectory: {
|
|
4224
|
+
serializedName: "properties.homeDirectory",
|
|
4225
|
+
type: {
|
|
4226
|
+
name: "String"
|
|
4227
|
+
}
|
|
4228
|
+
}, sshAuthorizedKeys: {
|
|
4229
|
+
serializedName: "properties.sshAuthorizedKeys",
|
|
4230
|
+
type: {
|
|
4231
|
+
name: "Sequence",
|
|
4232
|
+
element: {
|
|
4233
|
+
type: {
|
|
4234
|
+
name: "Composite",
|
|
4235
|
+
className: "SshPublicKey"
|
|
4236
|
+
}
|
|
4237
|
+
}
|
|
4238
|
+
}
|
|
4239
|
+
}, sid: {
|
|
4240
|
+
serializedName: "properties.sid",
|
|
4241
|
+
readOnly: true,
|
|
4242
|
+
type: {
|
|
4243
|
+
name: "String"
|
|
4244
|
+
}
|
|
4245
|
+
}, hasSharedKey: {
|
|
4246
|
+
serializedName: "properties.hasSharedKey",
|
|
4247
|
+
type: {
|
|
4248
|
+
name: "Boolean"
|
|
4249
|
+
}
|
|
4250
|
+
}, hasSshKey: {
|
|
4251
|
+
serializedName: "properties.hasSshKey",
|
|
4252
|
+
type: {
|
|
4253
|
+
name: "Boolean"
|
|
4254
|
+
}
|
|
4255
|
+
}, hasSshPassword: {
|
|
4256
|
+
serializedName: "properties.hasSshPassword",
|
|
4257
|
+
type: {
|
|
4258
|
+
name: "Boolean"
|
|
4259
|
+
}
|
|
4260
|
+
} })
|
|
4261
|
+
}
|
|
4262
|
+
};
|
|
4090
4263
|
export const EncryptionScope = {
|
|
4091
4264
|
type: {
|
|
4092
4265
|
name: "Composite",
|
|
@@ -4445,6 +4618,16 @@ export const StorageAccount = {
|
|
|
4445
4618
|
name: "Composite",
|
|
4446
4619
|
className: "NetworkRuleSet"
|
|
4447
4620
|
}
|
|
4621
|
+
}, isSftpEnabled: {
|
|
4622
|
+
serializedName: "properties.isSftpEnabled",
|
|
4623
|
+
type: {
|
|
4624
|
+
name: "Boolean"
|
|
4625
|
+
}
|
|
4626
|
+
}, isLocalUserEnabled: {
|
|
4627
|
+
serializedName: "properties.isLocalUserEnabled",
|
|
4628
|
+
type: {
|
|
4629
|
+
name: "Boolean"
|
|
4630
|
+
}
|
|
4448
4631
|
}, isHnsEnabled: {
|
|
4449
4632
|
serializedName: "properties.isHnsEnabled",
|
|
4450
4633
|
type: {
|
|
@@ -4532,6 +4715,11 @@ export const StorageAccount = {
|
|
|
4532
4715
|
name: "Composite",
|
|
4533
4716
|
className: "ImmutableStorageAccount"
|
|
4534
4717
|
}
|
|
4718
|
+
}, allowedCopyScope: {
|
|
4719
|
+
serializedName: "properties.allowedCopyScope",
|
|
4720
|
+
type: {
|
|
4721
|
+
name: "String"
|
|
4722
|
+
}
|
|
4535
4723
|
} })
|
|
4536
4724
|
}
|
|
4537
4725
|
};
|