@azure/arm-elasticsan 1.0.0-alpha.20240118.1 → 1.0.0-alpha.20240126.1

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.
Files changed (39) hide show
  1. package/CHANGELOG.md +1 -79
  2. package/LICENSE +1 -1
  3. package/dist/index.js +403 -230
  4. package/dist/index.js.map +1 -1
  5. package/dist/index.min.js +1 -1
  6. package/dist/index.min.js.map +1 -1
  7. package/dist-esm/samples-dev/elasticSansCreateSample.js +12 -8
  8. package/dist-esm/samples-dev/elasticSansCreateSample.js.map +1 -1
  9. package/dist-esm/samples-dev/elasticSansUpdateSample.js +5 -3
  10. package/dist-esm/samples-dev/elasticSansUpdateSample.js.map +1 -1
  11. package/dist-esm/samples-dev/privateEndpointConnectionsCreateSample.js +9 -7
  12. package/dist-esm/samples-dev/privateEndpointConnectionsCreateSample.js.map +1 -1
  13. package/dist-esm/samples-dev/volumeGroupsCreateSample.js +19 -17
  14. package/dist-esm/samples-dev/volumeGroupsCreateSample.js.map +1 -1
  15. package/dist-esm/samples-dev/volumeGroupsUpdateSample.js +19 -17
  16. package/dist-esm/samples-dev/volumeGroupsUpdateSample.js.map +1 -1
  17. package/dist-esm/samples-dev/volumeSnapshotsCreateSample.js +8 -4
  18. package/dist-esm/samples-dev/volumeSnapshotsCreateSample.js.map +1 -1
  19. package/dist-esm/samples-dev/volumesCreateSample.js +6 -4
  20. package/dist-esm/samples-dev/volumesCreateSample.js.map +1 -1
  21. package/dist-esm/samples-dev/volumesUpdateSample.js +1 -1
  22. package/dist-esm/samples-dev/volumesUpdateSample.js.map +1 -1
  23. package/dist-esm/src/elasticSanManagement.js +1 -1
  24. package/dist-esm/src/elasticSanManagement.js.map +1 -1
  25. package/dist-esm/src/models/index.d.ts +169 -124
  26. package/dist-esm/src/models/index.d.ts.map +1 -1
  27. package/dist-esm/src/models/index.js.map +1 -1
  28. package/dist-esm/src/models/mappers.d.ts +9 -0
  29. package/dist-esm/src/models/mappers.d.ts.map +1 -1
  30. package/dist-esm/src/models/mappers.js +393 -229
  31. package/dist-esm/src/models/mappers.js.map +1 -1
  32. package/dist-esm/test/elasticsan_examples.spec.js +37 -8
  33. package/dist-esm/test/elasticsan_examples.spec.js.map +1 -1
  34. package/package.json +5 -3
  35. package/review/arm-elasticsan.api.md +84 -39
  36. package/src/elasticSanManagement.ts +1 -1
  37. package/src/models/index.ts +178 -124
  38. package/src/models/mappers.ts +406 -262
  39. package/types/arm-elasticsan.d.ts +169 -115
@@ -389,6 +389,108 @@ export const ElasticSanList: coreClient.CompositeMapper = {
389
389
  }
390
390
  };
391
391
 
392
+ export const ElasticSanProperties: coreClient.CompositeMapper = {
393
+ type: {
394
+ name: "Composite",
395
+ className: "ElasticSanProperties",
396
+ modelProperties: {
397
+ sku: {
398
+ serializedName: "sku",
399
+ type: {
400
+ name: "Composite",
401
+ className: "Sku"
402
+ }
403
+ },
404
+ availabilityZones: {
405
+ serializedName: "availabilityZones",
406
+ type: {
407
+ name: "Sequence",
408
+ element: {
409
+ type: {
410
+ name: "String"
411
+ }
412
+ }
413
+ }
414
+ },
415
+ provisioningState: {
416
+ serializedName: "provisioningState",
417
+ readOnly: true,
418
+ type: {
419
+ name: "String"
420
+ }
421
+ },
422
+ baseSizeTiB: {
423
+ serializedName: "baseSizeTiB",
424
+ required: true,
425
+ type: {
426
+ name: "Number"
427
+ }
428
+ },
429
+ extendedCapacitySizeTiB: {
430
+ serializedName: "extendedCapacitySizeTiB",
431
+ required: true,
432
+ type: {
433
+ name: "Number"
434
+ }
435
+ },
436
+ totalVolumeSizeGiB: {
437
+ serializedName: "totalVolumeSizeGiB",
438
+ readOnly: true,
439
+ type: {
440
+ name: "Number"
441
+ }
442
+ },
443
+ volumeGroupCount: {
444
+ serializedName: "volumeGroupCount",
445
+ readOnly: true,
446
+ type: {
447
+ name: "Number"
448
+ }
449
+ },
450
+ totalIops: {
451
+ serializedName: "totalIops",
452
+ readOnly: true,
453
+ type: {
454
+ name: "Number"
455
+ }
456
+ },
457
+ totalMBps: {
458
+ serializedName: "totalMBps",
459
+ readOnly: true,
460
+ type: {
461
+ name: "Number"
462
+ }
463
+ },
464
+ totalSizeTiB: {
465
+ serializedName: "totalSizeTiB",
466
+ readOnly: true,
467
+ type: {
468
+ name: "Number"
469
+ }
470
+ },
471
+ privateEndpointConnections: {
472
+ serializedName: "privateEndpointConnections",
473
+ readOnly: true,
474
+ type: {
475
+ name: "Sequence",
476
+ element: {
477
+ type: {
478
+ name: "Composite",
479
+ className: "PrivateEndpointConnection"
480
+ }
481
+ }
482
+ }
483
+ },
484
+ publicNetworkAccess: {
485
+ serializedName: "publicNetworkAccess",
486
+ type: {
487
+ name: "String"
488
+ }
489
+ }
490
+ }
491
+ }
492
+ };
493
+
392
494
  export const Sku: coreClient.CompositeMapper = {
393
495
  type: {
394
496
  name: "Composite",
@@ -411,6 +513,47 @@ export const Sku: coreClient.CompositeMapper = {
411
513
  }
412
514
  };
413
515
 
516
+ export const PrivateEndpointConnectionProperties: coreClient.CompositeMapper = {
517
+ type: {
518
+ name: "Composite",
519
+ className: "PrivateEndpointConnectionProperties",
520
+ modelProperties: {
521
+ provisioningState: {
522
+ serializedName: "provisioningState",
523
+ readOnly: true,
524
+ type: {
525
+ name: "String"
526
+ }
527
+ },
528
+ privateEndpoint: {
529
+ serializedName: "privateEndpoint",
530
+ type: {
531
+ name: "Composite",
532
+ className: "PrivateEndpoint"
533
+ }
534
+ },
535
+ privateLinkServiceConnectionState: {
536
+ serializedName: "privateLinkServiceConnectionState",
537
+ type: {
538
+ name: "Composite",
539
+ className: "PrivateLinkServiceConnectionState"
540
+ }
541
+ },
542
+ groupIds: {
543
+ serializedName: "groupIds",
544
+ type: {
545
+ name: "Sequence",
546
+ element: {
547
+ type: {
548
+ name: "String"
549
+ }
550
+ }
551
+ }
552
+ }
553
+ }
554
+ }
555
+ };
556
+
414
557
  export const PrivateEndpoint: coreClient.CompositeMapper = {
415
558
  type: {
416
559
  name: "Composite",
@@ -541,27 +684,43 @@ export const ElasticSanUpdate: coreClient.CompositeMapper = {
541
684
  name: "Composite",
542
685
  className: "ElasticSanUpdate",
543
686
  modelProperties: {
687
+ properties: {
688
+ serializedName: "properties",
689
+ type: {
690
+ name: "Composite",
691
+ className: "ElasticSanUpdateProperties"
692
+ }
693
+ },
544
694
  tags: {
545
695
  serializedName: "tags",
546
696
  type: {
547
697
  name: "Dictionary",
548
698
  value: { type: { name: "String" } }
549
699
  }
550
- },
700
+ }
701
+ }
702
+ }
703
+ };
704
+
705
+ export const ElasticSanUpdateProperties: coreClient.CompositeMapper = {
706
+ type: {
707
+ name: "Composite",
708
+ className: "ElasticSanUpdateProperties",
709
+ modelProperties: {
551
710
  baseSizeTiB: {
552
- serializedName: "properties.baseSizeTiB",
711
+ serializedName: "baseSizeTiB",
553
712
  type: {
554
713
  name: "Number"
555
714
  }
556
715
  },
557
716
  extendedCapacitySizeTiB: {
558
- serializedName: "properties.extendedCapacitySizeTiB",
717
+ serializedName: "extendedCapacitySizeTiB",
559
718
  type: {
560
719
  name: "Number"
561
720
  }
562
721
  },
563
722
  publicNetworkAccess: {
564
- serializedName: "properties.publicNetworkAccess",
723
+ serializedName: "publicNetworkAccess",
565
724
  type: {
566
725
  name: "String"
567
726
  }
@@ -660,6 +819,61 @@ export const UserAssignedIdentity: coreClient.CompositeMapper = {
660
819
  }
661
820
  };
662
821
 
822
+ export const VolumeGroupProperties: coreClient.CompositeMapper = {
823
+ type: {
824
+ name: "Composite",
825
+ className: "VolumeGroupProperties",
826
+ modelProperties: {
827
+ provisioningState: {
828
+ serializedName: "provisioningState",
829
+ readOnly: true,
830
+ type: {
831
+ name: "String"
832
+ }
833
+ },
834
+ protocolType: {
835
+ serializedName: "protocolType",
836
+ type: {
837
+ name: "String"
838
+ }
839
+ },
840
+ encryption: {
841
+ serializedName: "encryption",
842
+ type: {
843
+ name: "String"
844
+ }
845
+ },
846
+ encryptionProperties: {
847
+ serializedName: "encryptionProperties",
848
+ type: {
849
+ name: "Composite",
850
+ className: "EncryptionProperties"
851
+ }
852
+ },
853
+ networkAcls: {
854
+ serializedName: "networkAcls",
855
+ type: {
856
+ name: "Composite",
857
+ className: "NetworkRuleSet"
858
+ }
859
+ },
860
+ privateEndpointConnections: {
861
+ serializedName: "privateEndpointConnections",
862
+ readOnly: true,
863
+ type: {
864
+ name: "Sequence",
865
+ element: {
866
+ type: {
867
+ name: "Composite",
868
+ className: "PrivateEndpointConnection"
869
+ }
870
+ }
871
+ }
872
+ }
873
+ }
874
+ }
875
+ };
876
+
663
877
  export const EncryptionProperties: coreClient.CompositeMapper = {
664
878
  type: {
665
879
  name: "Composite",
@@ -802,27 +1016,43 @@ export const VolumeGroupUpdate: coreClient.CompositeMapper = {
802
1016
  className: "Identity"
803
1017
  }
804
1018
  },
1019
+ properties: {
1020
+ serializedName: "properties",
1021
+ type: {
1022
+ name: "Composite",
1023
+ className: "VolumeGroupUpdateProperties"
1024
+ }
1025
+ }
1026
+ }
1027
+ }
1028
+ };
1029
+
1030
+ export const VolumeGroupUpdateProperties: coreClient.CompositeMapper = {
1031
+ type: {
1032
+ name: "Composite",
1033
+ className: "VolumeGroupUpdateProperties",
1034
+ modelProperties: {
805
1035
  protocolType: {
806
- serializedName: "properties.protocolType",
1036
+ serializedName: "protocolType",
807
1037
  type: {
808
1038
  name: "String"
809
1039
  }
810
1040
  },
811
1041
  encryption: {
812
- serializedName: "properties.encryption",
1042
+ serializedName: "encryption",
813
1043
  type: {
814
1044
  name: "String"
815
1045
  }
816
1046
  },
817
1047
  encryptionProperties: {
818
- serializedName: "properties.encryptionProperties",
1048
+ serializedName: "encryptionProperties",
819
1049
  type: {
820
1050
  name: "Composite",
821
1051
  className: "EncryptionProperties"
822
1052
  }
823
1053
  },
824
1054
  networkAcls: {
825
- serializedName: "properties.networkAcls",
1055
+ serializedName: "networkAcls",
826
1056
  type: {
827
1057
  name: "Composite",
828
1058
  className: "NetworkRuleSet"
@@ -832,6 +1062,57 @@ export const VolumeGroupUpdate: coreClient.CompositeMapper = {
832
1062
  }
833
1063
  };
834
1064
 
1065
+ export const VolumeProperties: coreClient.CompositeMapper = {
1066
+ type: {
1067
+ name: "Composite",
1068
+ className: "VolumeProperties",
1069
+ modelProperties: {
1070
+ volumeId: {
1071
+ serializedName: "volumeId",
1072
+ readOnly: true,
1073
+ type: {
1074
+ name: "String"
1075
+ }
1076
+ },
1077
+ creationData: {
1078
+ serializedName: "creationData",
1079
+ type: {
1080
+ name: "Composite",
1081
+ className: "SourceCreationData"
1082
+ }
1083
+ },
1084
+ sizeGiB: {
1085
+ serializedName: "sizeGiB",
1086
+ required: true,
1087
+ type: {
1088
+ name: "Number"
1089
+ }
1090
+ },
1091
+ storageTarget: {
1092
+ serializedName: "storageTarget",
1093
+ type: {
1094
+ name: "Composite",
1095
+ className: "IscsiTargetInfo"
1096
+ }
1097
+ },
1098
+ managedBy: {
1099
+ serializedName: "managedBy",
1100
+ type: {
1101
+ name: "Composite",
1102
+ className: "ManagedByInfo"
1103
+ }
1104
+ },
1105
+ provisioningState: {
1106
+ serializedName: "provisioningState",
1107
+ readOnly: true,
1108
+ type: {
1109
+ name: "String"
1110
+ }
1111
+ }
1112
+ }
1113
+ }
1114
+ };
1115
+
835
1116
  export const SourceCreationData: coreClient.CompositeMapper = {
836
1117
  type: {
837
1118
  name: "Composite",
@@ -915,15 +1196,31 @@ export const VolumeUpdate: coreClient.CompositeMapper = {
915
1196
  type: {
916
1197
  name: "Composite",
917
1198
  className: "VolumeUpdate",
1199
+ modelProperties: {
1200
+ properties: {
1201
+ serializedName: "properties",
1202
+ type: {
1203
+ name: "Composite",
1204
+ className: "VolumeUpdateProperties"
1205
+ }
1206
+ }
1207
+ }
1208
+ }
1209
+ };
1210
+
1211
+ export const VolumeUpdateProperties: coreClient.CompositeMapper = {
1212
+ type: {
1213
+ name: "Composite",
1214
+ className: "VolumeUpdateProperties",
918
1215
  modelProperties: {
919
1216
  sizeGiB: {
920
- serializedName: "properties.sizeGiB",
1217
+ serializedName: "sizeGiB",
921
1218
  type: {
922
1219
  name: "Number"
923
1220
  }
924
1221
  },
925
1222
  managedBy: {
926
- serializedName: "properties.managedBy",
1223
+ serializedName: "managedBy",
927
1224
  type: {
928
1225
  name: "Composite",
929
1226
  className: "ManagedByInfo"
@@ -1017,13 +1314,52 @@ export const PrivateLinkResourceListResult: coreClient.CompositeMapper = {
1017
1314
  }
1018
1315
  };
1019
1316
 
1020
- export const SnapshotList: coreClient.CompositeMapper = {
1317
+ export const PrivateLinkResourceProperties: coreClient.CompositeMapper = {
1021
1318
  type: {
1022
1319
  name: "Composite",
1023
- className: "SnapshotList",
1320
+ className: "PrivateLinkResourceProperties",
1024
1321
  modelProperties: {
1025
- value: {
1026
- serializedName: "value",
1322
+ groupId: {
1323
+ serializedName: "groupId",
1324
+ readOnly: true,
1325
+ type: {
1326
+ name: "String"
1327
+ }
1328
+ },
1329
+ requiredMembers: {
1330
+ serializedName: "requiredMembers",
1331
+ readOnly: true,
1332
+ type: {
1333
+ name: "Sequence",
1334
+ element: {
1335
+ type: {
1336
+ name: "String"
1337
+ }
1338
+ }
1339
+ }
1340
+ },
1341
+ requiredZoneNames: {
1342
+ serializedName: "requiredZoneNames",
1343
+ type: {
1344
+ name: "Sequence",
1345
+ element: {
1346
+ type: {
1347
+ name: "String"
1348
+ }
1349
+ }
1350
+ }
1351
+ }
1352
+ }
1353
+ }
1354
+ };
1355
+
1356
+ export const SnapshotList: coreClient.CompositeMapper = {
1357
+ type: {
1358
+ name: "Composite",
1359
+ className: "SnapshotList",
1360
+ modelProperties: {
1361
+ value: {
1362
+ serializedName: "value",
1027
1363
  type: {
1028
1364
  name: "Sequence",
1029
1365
  element: {
@@ -1045,6 +1381,43 @@ export const SnapshotList: coreClient.CompositeMapper = {
1045
1381
  }
1046
1382
  };
1047
1383
 
1384
+ export const SnapshotProperties: coreClient.CompositeMapper = {
1385
+ type: {
1386
+ name: "Composite",
1387
+ className: "SnapshotProperties",
1388
+ modelProperties: {
1389
+ creationData: {
1390
+ serializedName: "creationData",
1391
+ type: {
1392
+ name: "Composite",
1393
+ className: "SnapshotCreationData"
1394
+ }
1395
+ },
1396
+ provisioningState: {
1397
+ serializedName: "provisioningState",
1398
+ readOnly: true,
1399
+ type: {
1400
+ name: "String"
1401
+ }
1402
+ },
1403
+ sourceVolumeSizeGiB: {
1404
+ serializedName: "sourceVolumeSizeGiB",
1405
+ readOnly: true,
1406
+ type: {
1407
+ name: "Number"
1408
+ }
1409
+ },
1410
+ volumeName: {
1411
+ serializedName: "volumeName",
1412
+ readOnly: true,
1413
+ type: {
1414
+ name: "String"
1415
+ }
1416
+ }
1417
+ }
1418
+ }
1419
+ };
1420
+
1048
1421
  export const SnapshotCreationData: coreClient.CompositeMapper = {
1049
1422
  type: {
1050
1423
  name: "Composite",
@@ -1067,36 +1440,11 @@ export const PrivateEndpointConnection: coreClient.CompositeMapper = {
1067
1440
  className: "PrivateEndpointConnection",
1068
1441
  modelProperties: {
1069
1442
  ...Resource.type.modelProperties,
1070
- provisioningState: {
1071
- serializedName: "properties.provisioningState",
1072
- readOnly: true,
1073
- type: {
1074
- name: "String"
1075
- }
1076
- },
1077
- privateEndpoint: {
1078
- serializedName: "properties.privateEndpoint",
1079
- type: {
1080
- name: "Composite",
1081
- className: "PrivateEndpoint"
1082
- }
1083
- },
1084
- privateLinkServiceConnectionState: {
1085
- serializedName: "properties.privateLinkServiceConnectionState",
1443
+ properties: {
1444
+ serializedName: "properties",
1086
1445
  type: {
1087
1446
  name: "Composite",
1088
- className: "PrivateLinkServiceConnectionState"
1089
- }
1090
- },
1091
- groupIds: {
1092
- serializedName: "properties.groupIds",
1093
- type: {
1094
- name: "Sequence",
1095
- element: {
1096
- type: {
1097
- name: "String"
1098
- }
1099
- }
1447
+ className: "PrivateEndpointConnectionProperties"
1100
1448
  }
1101
1449
  }
1102
1450
  }
@@ -1143,34 +1491,11 @@ export const PrivateLinkResource: coreClient.CompositeMapper = {
1143
1491
  className: "PrivateLinkResource",
1144
1492
  modelProperties: {
1145
1493
  ...Resource.type.modelProperties,
1146
- groupId: {
1147
- serializedName: "properties.groupId",
1148
- readOnly: true,
1149
- type: {
1150
- name: "String"
1151
- }
1152
- },
1153
- requiredMembers: {
1154
- serializedName: "properties.requiredMembers",
1155
- readOnly: true,
1494
+ properties: {
1495
+ serializedName: "properties",
1156
1496
  type: {
1157
- name: "Sequence",
1158
- element: {
1159
- type: {
1160
- name: "String"
1161
- }
1162
- }
1163
- }
1164
- },
1165
- requiredZoneNames: {
1166
- serializedName: "properties.requiredZoneNames",
1167
- type: {
1168
- name: "Sequence",
1169
- element: {
1170
- type: {
1171
- name: "String"
1172
- }
1173
- }
1497
+ name: "Composite",
1498
+ className: "PrivateLinkResourceProperties"
1174
1499
  }
1175
1500
  }
1176
1501
  }
@@ -1183,97 +1508,11 @@ export const ElasticSan: coreClient.CompositeMapper = {
1183
1508
  className: "ElasticSan",
1184
1509
  modelProperties: {
1185
1510
  ...TrackedResource.type.modelProperties,
1186
- sku: {
1187
- serializedName: "properties.sku",
1511
+ properties: {
1512
+ serializedName: "properties",
1188
1513
  type: {
1189
1514
  name: "Composite",
1190
- className: "Sku"
1191
- }
1192
- },
1193
- availabilityZones: {
1194
- serializedName: "properties.availabilityZones",
1195
- type: {
1196
- name: "Sequence",
1197
- element: {
1198
- type: {
1199
- name: "String"
1200
- }
1201
- }
1202
- }
1203
- },
1204
- provisioningState: {
1205
- serializedName: "properties.provisioningState",
1206
- readOnly: true,
1207
- type: {
1208
- name: "String"
1209
- }
1210
- },
1211
- baseSizeTiB: {
1212
- serializedName: "properties.baseSizeTiB",
1213
- required: true,
1214
- type: {
1215
- name: "Number"
1216
- }
1217
- },
1218
- extendedCapacitySizeTiB: {
1219
- serializedName: "properties.extendedCapacitySizeTiB",
1220
- required: true,
1221
- type: {
1222
- name: "Number"
1223
- }
1224
- },
1225
- totalVolumeSizeGiB: {
1226
- serializedName: "properties.totalVolumeSizeGiB",
1227
- readOnly: true,
1228
- type: {
1229
- name: "Number"
1230
- }
1231
- },
1232
- volumeGroupCount: {
1233
- serializedName: "properties.volumeGroupCount",
1234
- readOnly: true,
1235
- type: {
1236
- name: "Number"
1237
- }
1238
- },
1239
- totalIops: {
1240
- serializedName: "properties.totalIops",
1241
- readOnly: true,
1242
- type: {
1243
- name: "Number"
1244
- }
1245
- },
1246
- totalMBps: {
1247
- serializedName: "properties.totalMBps",
1248
- readOnly: true,
1249
- type: {
1250
- name: "Number"
1251
- }
1252
- },
1253
- totalSizeTiB: {
1254
- serializedName: "properties.totalSizeTiB",
1255
- readOnly: true,
1256
- type: {
1257
- name: "Number"
1258
- }
1259
- },
1260
- privateEndpointConnections: {
1261
- serializedName: "properties.privateEndpointConnections",
1262
- readOnly: true,
1263
- type: {
1264
- name: "Sequence",
1265
- element: {
1266
- type: {
1267
- name: "Composite",
1268
- className: "PrivateEndpointConnection"
1269
- }
1270
- }
1271
- }
1272
- },
1273
- publicNetworkAccess: {
1274
- serializedName: "properties.publicNetworkAccess",
1275
- type: {
1276
- name: "String"
1515
+ className: "ElasticSanProperties"
1277
1516
  }
1278
1517
  }
1279
1518
  }
@@ -1293,50 +1532,11 @@ export const VolumeGroup: coreClient.CompositeMapper = {
1293
1532
  className: "Identity"
1294
1533
  }
1295
1534
  },
1296
- provisioningState: {
1297
- serializedName: "properties.provisioningState",
1298
- readOnly: true,
1299
- type: {
1300
- name: "String"
1301
- }
1302
- },
1303
- protocolType: {
1304
- serializedName: "properties.protocolType",
1305
- type: {
1306
- name: "String"
1307
- }
1308
- },
1309
- encryption: {
1310
- serializedName: "properties.encryption",
1311
- type: {
1312
- name: "String"
1313
- }
1314
- },
1315
- encryptionProperties: {
1316
- serializedName: "properties.encryptionProperties",
1317
- type: {
1318
- name: "Composite",
1319
- className: "EncryptionProperties"
1320
- }
1321
- },
1322
- networkAcls: {
1323
- serializedName: "properties.networkAcls",
1535
+ properties: {
1536
+ serializedName: "properties",
1324
1537
  type: {
1325
1538
  name: "Composite",
1326
- className: "NetworkRuleSet"
1327
- }
1328
- },
1329
- privateEndpointConnections: {
1330
- serializedName: "properties.privateEndpointConnections",
1331
- readOnly: true,
1332
- type: {
1333
- name: "Sequence",
1334
- element: {
1335
- type: {
1336
- name: "Composite",
1337
- className: "PrivateEndpointConnection"
1338
- }
1339
- }
1539
+ className: "VolumeGroupProperties"
1340
1540
  }
1341
1541
  }
1342
1542
  }
@@ -1349,46 +1549,11 @@ export const Volume: coreClient.CompositeMapper = {
1349
1549
  className: "Volume",
1350
1550
  modelProperties: {
1351
1551
  ...ProxyResource.type.modelProperties,
1352
- volumeId: {
1353
- serializedName: "properties.volumeId",
1354
- readOnly: true,
1355
- type: {
1356
- name: "String"
1357
- }
1358
- },
1359
- creationData: {
1360
- serializedName: "properties.creationData",
1552
+ properties: {
1553
+ serializedName: "properties",
1361
1554
  type: {
1362
1555
  name: "Composite",
1363
- className: "SourceCreationData"
1364
- }
1365
- },
1366
- sizeGiB: {
1367
- serializedName: "properties.sizeGiB",
1368
- required: true,
1369
- type: {
1370
- name: "Number"
1371
- }
1372
- },
1373
- storageTarget: {
1374
- serializedName: "properties.storageTarget",
1375
- type: {
1376
- name: "Composite",
1377
- className: "IscsiTargetInfo"
1378
- }
1379
- },
1380
- managedBy: {
1381
- serializedName: "properties.managedBy",
1382
- type: {
1383
- name: "Composite",
1384
- className: "ManagedByInfo"
1385
- }
1386
- },
1387
- provisioningState: {
1388
- serializedName: "properties.provisioningState",
1389
- readOnly: true,
1390
- type: {
1391
- name: "String"
1556
+ className: "VolumeProperties"
1392
1557
  }
1393
1558
  }
1394
1559
  }
@@ -1401,32 +1566,11 @@ export const Snapshot: coreClient.CompositeMapper = {
1401
1566
  className: "Snapshot",
1402
1567
  modelProperties: {
1403
1568
  ...ProxyResource.type.modelProperties,
1404
- creationData: {
1405
- serializedName: "properties.creationData",
1569
+ properties: {
1570
+ serializedName: "properties",
1406
1571
  type: {
1407
1572
  name: "Composite",
1408
- className: "SnapshotCreationData"
1409
- }
1410
- },
1411
- provisioningState: {
1412
- serializedName: "properties.provisioningState",
1413
- readOnly: true,
1414
- type: {
1415
- name: "String"
1416
- }
1417
- },
1418
- sourceVolumeSizeGiB: {
1419
- serializedName: "properties.sourceVolumeSizeGiB",
1420
- readOnly: true,
1421
- type: {
1422
- name: "Number"
1423
- }
1424
- },
1425
- volumeName: {
1426
- serializedName: "properties.volumeName",
1427
- readOnly: true,
1428
- type: {
1429
- name: "String"
1573
+ className: "SnapshotProperties"
1430
1574
  }
1431
1575
  }
1432
1576
  }