@aws-sdk/client-backup 3.932.0 → 3.934.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/README.md +40 -0
- package/dist-cjs/index.js +277 -8
- package/dist-es/Backup.js +10 -0
- package/dist-es/commands/CreateTieringConfigurationCommand.js +16 -0
- package/dist-es/commands/DeleteTieringConfigurationCommand.js +16 -0
- package/dist-es/commands/GetTieringConfigurationCommand.js +16 -0
- package/dist-es/commands/ListTieringConfigurationsCommand.js +16 -0
- package/dist-es/commands/UpdateTieringConfigurationCommand.js +16 -0
- package/dist-es/commands/index.js +5 -0
- package/dist-es/models/models_0.js +3 -0
- package/dist-es/pagination/ListTieringConfigurationsPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/schemas/schemas_0.js +200 -8
- package/dist-types/Backup.d.ts +36 -0
- package/dist-types/BackupClient.d.ts +7 -2
- package/dist-types/commands/CreateBackupPlanCommand.d.ts +3 -0
- package/dist-types/commands/CreateTieringConfigurationCommand.d.ts +115 -0
- package/dist-types/commands/DeleteTieringConfigurationCommand.d.ts +85 -0
- package/dist-types/commands/DescribeBackupJobCommand.d.ts +1 -0
- package/dist-types/commands/DescribeCopyJobCommand.d.ts +2 -0
- package/dist-types/commands/DescribeRecoveryPointCommand.d.ts +1 -0
- package/dist-types/commands/GetBackupPlanCommand.d.ts +3 -0
- package/dist-types/commands/GetBackupPlanFromJSONCommand.d.ts +3 -0
- package/dist-types/commands/GetBackupPlanFromTemplateCommand.d.ts +3 -0
- package/dist-types/commands/GetTieringConfigurationCommand.d.ts +105 -0
- package/dist-types/commands/ListBackupJobsCommand.d.ts +1 -0
- package/dist-types/commands/ListCopyJobsCommand.d.ts +3 -0
- package/dist-types/commands/ListRecoveryPointsByBackupVaultCommand.d.ts +1 -0
- package/dist-types/commands/ListTieringConfigurationsCommand.d.ts +91 -0
- package/dist-types/commands/StartBackupJobCommand.d.ts +2 -0
- package/dist-types/commands/StartCopyJobCommand.d.ts +1 -0
- package/dist-types/commands/UpdateBackupPlanCommand.d.ts +3 -0
- package/dist-types/commands/UpdateRecoveryPointLifecycleCommand.d.ts +2 -0
- package/dist-types/commands/UpdateTieringConfigurationCommand.d.ts +134 -0
- package/dist-types/commands/index.d.ts +5 -0
- package/dist-types/models/models_0.d.ts +395 -2
- package/dist-types/pagination/ListTieringConfigurationsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +22 -0
- package/dist-types/ts3.4/Backup.d.ts +86 -0
- package/dist-types/ts3.4/BackupClient.d.ts +32 -2
- package/dist-types/ts3.4/commands/CreateTieringConfigurationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteTieringConfigurationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetTieringConfigurationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListTieringConfigurationsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateTieringConfigurationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +5 -0
- package/dist-types/ts3.4/models/models_0.d.ts +79 -0
- package/dist-types/ts3.4/pagination/ListTieringConfigurationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +22 -0
- package/package.json +6 -6
package/dist-cjs/index.js
CHANGED
|
@@ -246,6 +246,9 @@ let ServiceUnavailableException$1 = class ServiceUnavailableException extends Ba
|
|
|
246
246
|
this.Context = opts.Context;
|
|
247
247
|
}
|
|
248
248
|
};
|
|
249
|
+
const LifecycleDeleteAfterEvent = {
|
|
250
|
+
DELETE_AFTER_COPY: "DELETE_AFTER_COPY",
|
|
251
|
+
};
|
|
249
252
|
const BackupJobState = {
|
|
250
253
|
ABORTED: "ABORTED",
|
|
251
254
|
ABORTING: "ABORTING",
|
|
@@ -559,6 +562,7 @@ const _BSB = "BackupSizeBytes";
|
|
|
559
562
|
const _BSIB = "BackupSizeInBytes";
|
|
560
563
|
const _BSL = "BackupSelectionsList";
|
|
561
564
|
const _BSLM = "BackupSelectionsListMember";
|
|
565
|
+
const _BSRPA = "BySourceRecoveryPointArn";
|
|
562
566
|
const _BSy = "ByState";
|
|
563
567
|
const _BSyh = "ByShared";
|
|
564
568
|
const _BSyt = "ByStatus";
|
|
@@ -578,6 +582,7 @@ const _CAo = "CopyAction";
|
|
|
578
582
|
const _CAr = "CreatedAfter";
|
|
579
583
|
const _CAre = "CreationAfter";
|
|
580
584
|
const _CB = "CreatedBy";
|
|
585
|
+
const _CBBJI = "CreatedByBackupJobId";
|
|
581
586
|
const _CBP = "CreateBackupPlan";
|
|
582
587
|
const _CBPI = "CreateBackupPlanInput";
|
|
583
588
|
const _CBPO = "CreateBackupPlanOutput";
|
|
@@ -642,6 +647,9 @@ const _CRTSO = "CreateRestoreTestingSelectionOutput";
|
|
|
642
647
|
const _CS = "ControlScope";
|
|
643
648
|
const _CSTTRR = "CopySourceTagsToRestoredResource";
|
|
644
649
|
const _CT = "ConditionType";
|
|
650
|
+
const _CTC = "CreateTieringConfiguration";
|
|
651
|
+
const _CTCI = "CreateTieringConfigurationInput";
|
|
652
|
+
const _CTCO = "CreateTieringConfigurationOutput";
|
|
645
653
|
const _CTo = "CompletionTime";
|
|
646
654
|
const _CTr = "CreationTime";
|
|
647
655
|
const _CV = "ConditionValue";
|
|
@@ -654,6 +662,7 @@ const _Cou = "Count";
|
|
|
654
662
|
const _D = "Description";
|
|
655
663
|
const _DA = "DeleteAt";
|
|
656
664
|
const _DAD = "DeleteAfterDays";
|
|
665
|
+
const _DAE = "DeleteAfterEvent";
|
|
657
666
|
const _DBJ = "DescribeBackupJob";
|
|
658
667
|
const _DBJI = "DescribeBackupJobInput";
|
|
659
668
|
const _DBJO = "DescribeBackupJobOutput";
|
|
@@ -726,6 +735,9 @@ const _DRTSI = "DeleteRestoreTestingSelectionInput";
|
|
|
726
735
|
const _DS = "DeploymentStatus";
|
|
727
736
|
const _DSM = "DeletionStatusMessage";
|
|
728
737
|
const _DSe = "DeletionStatus";
|
|
738
|
+
const _DTC = "DeleteTieringConfiguration";
|
|
739
|
+
const _DTCI = "DeleteTieringConfigurationInput";
|
|
740
|
+
const _DTCO = "DeleteTieringConfigurationOutput";
|
|
729
741
|
const _DVLS = "DestinationVaultLockState";
|
|
730
742
|
const _DVT = "DestinationVaultType";
|
|
731
743
|
const _EBPT = "ExportBackupPlanTemplate";
|
|
@@ -795,6 +807,9 @@ const _GRTSO = "GetRestoreTestingSelectionOutput";
|
|
|
795
807
|
const _GS = "GlobalSettings";
|
|
796
808
|
const _GSRT = "GetSupportedResourceTypes";
|
|
797
809
|
const _GSRTO = "GetSupportedResourceTypesOutput";
|
|
810
|
+
const _GTC = "GetTieringConfiguration";
|
|
811
|
+
const _GTCI = "GetTieringConfigurationInput";
|
|
812
|
+
const _GTCO = "GetTieringConfigurationOutput";
|
|
798
813
|
const _I = "Index";
|
|
799
814
|
const _IA = "IndexActions";
|
|
800
815
|
const _IAn = "IndexAction";
|
|
@@ -822,6 +837,7 @@ const _KV = "KeyValue";
|
|
|
822
837
|
const _KVL = "KeyValueList";
|
|
823
838
|
const _L = "Lifecycle";
|
|
824
839
|
const _LAET = "LastAttemptedExecutionTime";
|
|
840
|
+
const _LAGBVA = "LogicallyAirGappedBackupVaultArn";
|
|
825
841
|
const _LBJ = "ListBackupJobs";
|
|
826
842
|
const _LBJI = "ListBackupJobsInput";
|
|
827
843
|
const _LBJO = "ListBackupJobsOutput";
|
|
@@ -918,9 +934,13 @@ const _LRTSI = "ListRestoreTestingSelectionsInput";
|
|
|
918
934
|
const _LRTSO = "ListRestoreTestingSelectionsOutput";
|
|
919
935
|
const _LSET = "LastSuccessfulExecutionTime";
|
|
920
936
|
const _LT = "ListTags";
|
|
937
|
+
const _LTC = "ListTieringConfigurations";
|
|
938
|
+
const _LTCI = "ListTieringConfigurationsInput";
|
|
939
|
+
const _LTCO = "ListTieringConfigurationsOutput";
|
|
921
940
|
const _LTI = "ListTagsInput";
|
|
922
941
|
const _LTO = "ListTagsOutput";
|
|
923
942
|
const _LUT = "LastUpdateTime";
|
|
943
|
+
const _LUTa = "LastUpdatedTime";
|
|
924
944
|
const _Lo = "Locked";
|
|
925
945
|
const _M = "Message";
|
|
926
946
|
const _MATA = "MpaApprovalTeamArn";
|
|
@@ -1018,6 +1038,8 @@ const _RRABVI = "RevokeRestoreAccessBackupVaultInput";
|
|
|
1018
1038
|
const _RRID = "RetainRecordInDays";
|
|
1019
1039
|
const _RRU = "RetainRecordUntil";
|
|
1020
1040
|
const _RS = "ReportSetting";
|
|
1041
|
+
const _RSe = "ResourceSelection";
|
|
1042
|
+
const _RSes = "ResourceSelections";
|
|
1021
1043
|
const _RT = "ResourceType";
|
|
1022
1044
|
const _RTMP = "ResourceTypeManagementPreference";
|
|
1023
1045
|
const _RTOIP = "ResourceTypeOptInPreference";
|
|
@@ -1088,9 +1110,20 @@ const _SWM = "StartWindowMinutes";
|
|
|
1088
1110
|
const _St = "Status";
|
|
1089
1111
|
const _T = "Type";
|
|
1090
1112
|
const _TBVN = "TargetBackupVaultName";
|
|
1113
|
+
const _TC = "TieringConfiguration";
|
|
1114
|
+
const _TCA = "TieringConfigurationArn";
|
|
1115
|
+
const _TCIFC = "TieringConfigurationInputForCreate";
|
|
1116
|
+
const _TCIFU = "TieringConfigurationInputForUpdate";
|
|
1117
|
+
const _TCL = "TieringConfigurationsList";
|
|
1118
|
+
const _TCLM = "TieringConfigurationsListMember";
|
|
1119
|
+
const _TCN = "TieringConfigurationName";
|
|
1120
|
+
const _TCT = "TieringConfigurationTags";
|
|
1121
|
+
const _TCi = "TieringConfigurations";
|
|
1091
1122
|
const _TD = "ToDate";
|
|
1123
|
+
const _TDSID = "TieringDownSettingsInDays";
|
|
1092
1124
|
const _TII = "TotalItemsIndexed";
|
|
1093
1125
|
const _TKL = "TagKeyList";
|
|
1126
|
+
const _TLAGBVA = "TargetLogicallyAirGappedBackupVaultArn";
|
|
1094
1127
|
const _TR = "TagResource";
|
|
1095
1128
|
const _TRI = "TagResourceInput";
|
|
1096
1129
|
const _Ta = "Tags";
|
|
@@ -1123,6 +1156,9 @@ const _URTS = "UpdateRestoreTestingSelection";
|
|
|
1123
1156
|
const _URTSI = "UpdateRestoreTestingSelectionInput";
|
|
1124
1157
|
const _URTSO = "UpdateRestoreTestingSelectionOutput";
|
|
1125
1158
|
const _UT = "UpdateTime";
|
|
1159
|
+
const _UTC = "UpdateTieringConfiguration";
|
|
1160
|
+
const _UTCI = "UpdateTieringConfigurationInput";
|
|
1161
|
+
const _UTCO = "UpdateTieringConfigurationOutput";
|
|
1126
1162
|
const _V = "Value";
|
|
1127
1163
|
const _VI = "VersionId";
|
|
1128
1164
|
const _VLS = "VaultLockState";
|
|
@@ -1165,6 +1201,7 @@ const _rT = "resourceType";
|
|
|
1165
1201
|
const _rTPA = "restoreTestingPlanArn";
|
|
1166
1202
|
const _s = "server";
|
|
1167
1203
|
const _sRA = "sourceResourceArn";
|
|
1204
|
+
const _sRPA = "sourceRecoveryPointArn";
|
|
1168
1205
|
const _sh = "shared";
|
|
1169
1206
|
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.backup";
|
|
1170
1207
|
const _st = "state";
|
|
@@ -1301,16 +1338,16 @@ var BackupRule = [
|
|
|
1301
1338
|
n0,
|
|
1302
1339
|
_BR,
|
|
1303
1340
|
0,
|
|
1304
|
-
[_RNu, _TBVN, _SE, _SWM, _CWM, _L, _RPT, _RI, _CA, _ECB, _SET, _IA],
|
|
1305
|
-
[0, 0, 0, 1, 1, () => Lifecycle, [() => Tags, 0], 0, () => CopyActions, 2, 0, () => IndexActions],
|
|
1341
|
+
[_RNu, _TBVN, _TLAGBVA, _SE, _SWM, _CWM, _L, _RPT, _RI, _CA, _ECB, _SET, _IA],
|
|
1342
|
+
[0, 0, 0, 0, 1, 1, () => Lifecycle, [() => Tags, 0], 0, () => CopyActions, 2, 0, () => IndexActions],
|
|
1306
1343
|
];
|
|
1307
1344
|
var BackupRuleInput = [
|
|
1308
1345
|
3,
|
|
1309
1346
|
n0,
|
|
1310
1347
|
_BRI,
|
|
1311
1348
|
0,
|
|
1312
|
-
[_RNu, _TBVN, _SE, _SWM, _CWM, _L, _RPT, _CA, _ECB, _SET, _IA],
|
|
1313
|
-
[0, 0, 0, 1, 1, () => Lifecycle, [() => Tags, 0], () => CopyActions, 2, 0, () => IndexActions],
|
|
1349
|
+
[_RNu, _TBVN, _TLAGBVA, _SE, _SWM, _CWM, _L, _RPT, _CA, _ECB, _SET, _IA],
|
|
1350
|
+
[0, 0, 0, 0, 1, 1, () => Lifecycle, [() => Tags, 0], () => CopyActions, 2, 0, () => IndexActions],
|
|
1314
1351
|
];
|
|
1315
1352
|
var BackupSelection = [
|
|
1316
1353
|
3,
|
|
@@ -1410,6 +1447,7 @@ var CopyJob = [
|
|
|
1410
1447
|
_BSIB,
|
|
1411
1448
|
_IRA,
|
|
1412
1449
|
_CB,
|
|
1450
|
+
_CBBJI,
|
|
1413
1451
|
_RT,
|
|
1414
1452
|
_PJI,
|
|
1415
1453
|
_IP,
|
|
@@ -1440,6 +1478,7 @@ var CopyJob = [
|
|
|
1440
1478
|
() => RecoveryPointCreator,
|
|
1441
1479
|
0,
|
|
1442
1480
|
0,
|
|
1481
|
+
0,
|
|
1443
1482
|
2,
|
|
1444
1483
|
0,
|
|
1445
1484
|
1,
|
|
@@ -1585,6 +1624,15 @@ var CreateRestoreTestingSelectionOutput = [
|
|
|
1585
1624
|
[_CTr, _RTPA, _RTPN, _RTSN],
|
|
1586
1625
|
[4, 0, 0, 0],
|
|
1587
1626
|
];
|
|
1627
|
+
var CreateTieringConfigurationInput = [
|
|
1628
|
+
3,
|
|
1629
|
+
n0,
|
|
1630
|
+
_CTCI,
|
|
1631
|
+
0,
|
|
1632
|
+
[_TC, _TCT, _CRI],
|
|
1633
|
+
[() => TieringConfigurationInputForCreate, [() => Tags, 0], [0, 4]],
|
|
1634
|
+
];
|
|
1635
|
+
var CreateTieringConfigurationOutput = [3, n0, _CTCO, 0, [_TCA, _TCN, _CTr], [0, 0, 4]];
|
|
1588
1636
|
var DateRange = [3, n0, _DR, 0, [_FDr, _TD], [4, 4]];
|
|
1589
1637
|
var DeleteBackupPlanInput = [3, n0, _DBPI, 0, [_BPIa], [[0, 1]]];
|
|
1590
1638
|
var DeleteBackupPlanOutput = [3, n0, _DBPO, 0, [_BPIa, _BPA, _DD, _VI], [0, 0, 4, 0]];
|
|
@@ -1628,6 +1676,8 @@ var DeleteRestoreTestingSelectionInput = [
|
|
|
1628
1676
|
[0, 1],
|
|
1629
1677
|
],
|
|
1630
1678
|
];
|
|
1679
|
+
var DeleteTieringConfigurationInput = [3, n0, _DTCI, 0, [_TCN], [[0, 1]]];
|
|
1680
|
+
var DeleteTieringConfigurationOutput = [3, n0, _DTCO, 0, [], []];
|
|
1631
1681
|
var DependencyFailureException = [
|
|
1632
1682
|
-3,
|
|
1633
1683
|
n0,
|
|
@@ -2116,6 +2166,15 @@ var GetRestoreTestingSelectionOutput = [
|
|
|
2116
2166
|
[[() => RestoreTestingSelectionForGet, 0]],
|
|
2117
2167
|
];
|
|
2118
2168
|
var GetSupportedResourceTypesOutput = [3, n0, _GSRTO, 0, [_RTe], [64 | 0]];
|
|
2169
|
+
var GetTieringConfigurationInput = [3, n0, _GTCI, 0, [_TCN], [[0, 1]]];
|
|
2170
|
+
var GetTieringConfigurationOutput = [
|
|
2171
|
+
3,
|
|
2172
|
+
n0,
|
|
2173
|
+
_GTCO,
|
|
2174
|
+
0,
|
|
2175
|
+
[_TC],
|
|
2176
|
+
[() => TieringConfiguration],
|
|
2177
|
+
];
|
|
2119
2178
|
var IndexAction = [3, n0, _IAn, 0, [_RTe], [64 | 0]];
|
|
2120
2179
|
var IndexedRecoveryPoint = [
|
|
2121
2180
|
3,
|
|
@@ -2176,7 +2235,7 @@ var LegalHold = [
|
|
|
2176
2235
|
[_Ti, _St, _D, _LHI, _LHA, _CD, _CDan],
|
|
2177
2236
|
[0, 0, 0, 0, 0, 4, 4],
|
|
2178
2237
|
];
|
|
2179
|
-
var Lifecycle = [3, n0, _L, 0, [_MTCSAD, _DAD, _OITAFSR], [1, 1, 2]];
|
|
2238
|
+
var Lifecycle = [3, n0, _L, 0, [_MTCSAD, _DAD, _OITAFSR, _DAE], [1, 1, 2, 0]];
|
|
2180
2239
|
var LimitExceededException = [
|
|
2181
2240
|
-3,
|
|
2182
2241
|
n0,
|
|
@@ -2491,7 +2550,7 @@ var ListCopyJobsInput = [
|
|
|
2491
2550
|
n0,
|
|
2492
2551
|
_LCJI,
|
|
2493
2552
|
0,
|
|
2494
|
-
[_NT, _MR, _BRA, _BSy, _BCB, _BCA, _BRT, _BDVA, _BAI, _BCBy, _BCAy, _BPJI, _BMC],
|
|
2553
|
+
[_NT, _MR, _BRA, _BSy, _BCB, _BCA, _BRT, _BDVA, _BAI, _BCBy, _BCAy, _BPJI, _BMC, _BSRPA],
|
|
2495
2554
|
[
|
|
2496
2555
|
[
|
|
2497
2556
|
0,
|
|
@@ -2571,6 +2630,12 @@ var ListCopyJobsInput = [
|
|
|
2571
2630
|
[_hQ]: _mC,
|
|
2572
2631
|
},
|
|
2573
2632
|
],
|
|
2633
|
+
[
|
|
2634
|
+
0,
|
|
2635
|
+
{
|
|
2636
|
+
[_hQ]: _sRPA,
|
|
2637
|
+
},
|
|
2638
|
+
],
|
|
2574
2639
|
],
|
|
2575
2640
|
];
|
|
2576
2641
|
var ListCopyJobsOutput = [3, n0, _LCJO, 0, [_CJo, _NT], [() => CopyJobsList, 0]];
|
|
@@ -3296,6 +3361,35 @@ var ListTagsInput = [
|
|
|
3296
3361
|
],
|
|
3297
3362
|
];
|
|
3298
3363
|
var ListTagsOutput = [3, n0, _LTO, 0, [_NT, _Ta], [0, [() => Tags, 0]]];
|
|
3364
|
+
var ListTieringConfigurationsInput = [
|
|
3365
|
+
3,
|
|
3366
|
+
n0,
|
|
3367
|
+
_LTCI,
|
|
3368
|
+
0,
|
|
3369
|
+
[_MR, _NT],
|
|
3370
|
+
[
|
|
3371
|
+
[
|
|
3372
|
+
1,
|
|
3373
|
+
{
|
|
3374
|
+
[_hQ]: _mR,
|
|
3375
|
+
},
|
|
3376
|
+
],
|
|
3377
|
+
[
|
|
3378
|
+
0,
|
|
3379
|
+
{
|
|
3380
|
+
[_hQ]: _nT,
|
|
3381
|
+
},
|
|
3382
|
+
],
|
|
3383
|
+
],
|
|
3384
|
+
];
|
|
3385
|
+
var ListTieringConfigurationsOutput = [
|
|
3386
|
+
3,
|
|
3387
|
+
n0,
|
|
3388
|
+
_LTCO,
|
|
3389
|
+
0,
|
|
3390
|
+
[_TCi, _NT],
|
|
3391
|
+
[() => TieringConfigurationsList, 0],
|
|
3392
|
+
];
|
|
3299
3393
|
var MissingParameterValueException = [
|
|
3300
3394
|
-3,
|
|
3301
3395
|
n0,
|
|
@@ -3474,6 +3568,7 @@ var ResourceNotFoundException = [
|
|
|
3474
3568
|
[0, 0, 0, 0],
|
|
3475
3569
|
];
|
|
3476
3570
|
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException, ResourceNotFoundException$1);
|
|
3571
|
+
var ResourceSelection = [3, n0, _RSe, 0, [_Re, _TDSID, _RT], [64 | 0, 1, 0]];
|
|
3477
3572
|
var RestoreAccessBackupVaultListMember = [
|
|
3478
3573
|
3,
|
|
3479
3574
|
n0,
|
|
@@ -3629,8 +3724,8 @@ var StartBackupJobInput = [
|
|
|
3629
3724
|
n0,
|
|
3630
3725
|
_SBJI,
|
|
3631
3726
|
0,
|
|
3632
|
-
[_BVN, _RA, _IRA, _IT, _SWM, _CWMo, _L, _RPT, _BO, _I],
|
|
3633
|
-
[0, 0, 0, [0, 4], 1, 1, () => Lifecycle, [() => Tags, 0], 128 | 0, 0],
|
|
3727
|
+
[_BVN, _LAGBVA, _RA, _IRA, _IT, _SWM, _CWMo, _L, _RPT, _BO, _I],
|
|
3728
|
+
[0, 0, 0, 0, [0, 4], 1, 1, () => Lifecycle, [() => Tags, 0], 128 | 0, 0],
|
|
3634
3729
|
];
|
|
3635
3730
|
var StartBackupJobOutput = [3, n0, _SBJO, 0, [_BJI, _RPA, _CD, _IP], [0, 0, 4, 2]];
|
|
3636
3731
|
var StartCopyJobInput = [
|
|
@@ -3675,6 +3770,38 @@ var TagResourceInput = [
|
|
|
3675
3770
|
[() => Tags, 0],
|
|
3676
3771
|
],
|
|
3677
3772
|
];
|
|
3773
|
+
var TieringConfiguration = [
|
|
3774
|
+
3,
|
|
3775
|
+
n0,
|
|
3776
|
+
_TC,
|
|
3777
|
+
0,
|
|
3778
|
+
[_TCN, _TCA, _BVN, _RSe, _CRI, _CTr, _LUTa],
|
|
3779
|
+
[0, 0, 0, () => ResourceSelections, 0, 4, 4],
|
|
3780
|
+
];
|
|
3781
|
+
var TieringConfigurationInputForCreate = [
|
|
3782
|
+
3,
|
|
3783
|
+
n0,
|
|
3784
|
+
_TCIFC,
|
|
3785
|
+
0,
|
|
3786
|
+
[_TCN, _BVN, _RSe],
|
|
3787
|
+
[0, 0, () => ResourceSelections],
|
|
3788
|
+
];
|
|
3789
|
+
var TieringConfigurationInputForUpdate = [
|
|
3790
|
+
3,
|
|
3791
|
+
n0,
|
|
3792
|
+
_TCIFU,
|
|
3793
|
+
0,
|
|
3794
|
+
[_RSe, _BVN],
|
|
3795
|
+
[() => ResourceSelections, 0],
|
|
3796
|
+
];
|
|
3797
|
+
var TieringConfigurationsListMember = [
|
|
3798
|
+
3,
|
|
3799
|
+
n0,
|
|
3800
|
+
_TCLM,
|
|
3801
|
+
0,
|
|
3802
|
+
[_TCA, _TCN, _BVN, _CTr, _LUTa],
|
|
3803
|
+
[0, 0, 0, 4, 4],
|
|
3804
|
+
];
|
|
3678
3805
|
var UntagResourceInput = [
|
|
3679
3806
|
3,
|
|
3680
3807
|
n0,
|
|
@@ -3793,6 +3920,22 @@ var UpdateRestoreTestingSelectionOutput = [
|
|
|
3793
3920
|
[_CTr, _RTPA, _RTPN, _RTSN, _UT],
|
|
3794
3921
|
[4, 0, 0, 0, 4],
|
|
3795
3922
|
];
|
|
3923
|
+
var UpdateTieringConfigurationInput = [
|
|
3924
|
+
3,
|
|
3925
|
+
n0,
|
|
3926
|
+
_UTCI,
|
|
3927
|
+
0,
|
|
3928
|
+
[_TCN, _TC],
|
|
3929
|
+
[[0, 1], () => TieringConfigurationInputForUpdate],
|
|
3930
|
+
];
|
|
3931
|
+
var UpdateTieringConfigurationOutput = [
|
|
3932
|
+
3,
|
|
3933
|
+
n0,
|
|
3934
|
+
_UTCO,
|
|
3935
|
+
0,
|
|
3936
|
+
[_TCA, _TCN, _CTr, _LUTa],
|
|
3937
|
+
[0, 0, 4, 4],
|
|
3938
|
+
];
|
|
3796
3939
|
var __Unit = "unit";
|
|
3797
3940
|
var BackupServiceException = [-3, _sm, "BackupServiceException", 0, [], []];
|
|
3798
3941
|
schema.TypeRegistry.for(_sm).registerError(BackupServiceException, BackupServiceException$1);
|
|
@@ -3824,6 +3967,7 @@ var RecoveryPointByResourceList = [1, n0, _RPBRL, 0, () => RecoveryPointByResour
|
|
|
3824
3967
|
var RecoveryPointsList = [1, n0, _RPLe, 0, () => RecoveryPointMember];
|
|
3825
3968
|
var ReportJobList = [1, n0, _RJL, 0, () => ReportJob];
|
|
3826
3969
|
var ReportPlanList = [1, n0, _RPLep, 0, () => ReportPlan];
|
|
3970
|
+
var ResourceSelections = [1, n0, _RSes, 0, () => ResourceSelection];
|
|
3827
3971
|
var RestoreAccessBackupVaultList = [
|
|
3828
3972
|
1,
|
|
3829
3973
|
n0,
|
|
@@ -3837,6 +3981,7 @@ var RestoreTestingPlans = [1, n0, _RTPe, 0, () => RestoreTestingPlanForList];
|
|
|
3837
3981
|
var RestoreTestingSelections = [1, n0, _RTSe, 0, () => RestoreTestingSelectionForList];
|
|
3838
3982
|
var ScheduledRunsPreview = [1, n0, _SRP, 0, () => ScheduledPlanExecutionMember];
|
|
3839
3983
|
var TagKeyList = [1, n0, _TKL, 8, 0];
|
|
3984
|
+
var TieringConfigurationsList = [1, n0, _TCL, 0, () => TieringConfigurationsListMember];
|
|
3840
3985
|
var Metadata = [2, n0, _Me, 8, 0, 0];
|
|
3841
3986
|
var SensitiveStringMap = [2, n0, _SSM, 8, 0, 0];
|
|
3842
3987
|
var Tags = [2, n0, _Ta, 8, 0, 0];
|
|
@@ -3960,6 +4105,16 @@ var CreateRestoreTestingSelection = [
|
|
|
3960
4105
|
() => CreateRestoreTestingSelectionInput,
|
|
3961
4106
|
() => CreateRestoreTestingSelectionOutput,
|
|
3962
4107
|
];
|
|
4108
|
+
var CreateTieringConfiguration = [
|
|
4109
|
+
9,
|
|
4110
|
+
n0,
|
|
4111
|
+
_CTC,
|
|
4112
|
+
{
|
|
4113
|
+
[_h]: ["PUT", "/tiering-configurations", 200],
|
|
4114
|
+
},
|
|
4115
|
+
() => CreateTieringConfigurationInput,
|
|
4116
|
+
() => CreateTieringConfigurationOutput,
|
|
4117
|
+
];
|
|
3963
4118
|
var DeleteBackupPlan = [
|
|
3964
4119
|
9,
|
|
3965
4120
|
n0,
|
|
@@ -4070,6 +4225,16 @@ var DeleteRestoreTestingSelection = [
|
|
|
4070
4225
|
() => DeleteRestoreTestingSelectionInput,
|
|
4071
4226
|
() => __Unit,
|
|
4072
4227
|
];
|
|
4228
|
+
var DeleteTieringConfiguration = [
|
|
4229
|
+
9,
|
|
4230
|
+
n0,
|
|
4231
|
+
_DTC,
|
|
4232
|
+
{
|
|
4233
|
+
[_h]: ["DELETE", "/tiering-configurations/{TieringConfigurationName}", 200],
|
|
4234
|
+
},
|
|
4235
|
+
() => DeleteTieringConfigurationInput,
|
|
4236
|
+
() => DeleteTieringConfigurationOutput,
|
|
4237
|
+
];
|
|
4073
4238
|
var DescribeBackupJob = [
|
|
4074
4239
|
9,
|
|
4075
4240
|
n0,
|
|
@@ -4360,6 +4525,16 @@ var GetSupportedResourceTypes = [
|
|
|
4360
4525
|
() => __Unit,
|
|
4361
4526
|
() => GetSupportedResourceTypesOutput,
|
|
4362
4527
|
];
|
|
4528
|
+
var GetTieringConfiguration = [
|
|
4529
|
+
9,
|
|
4530
|
+
n0,
|
|
4531
|
+
_GTC,
|
|
4532
|
+
{
|
|
4533
|
+
[_h]: ["GET", "/tiering-configurations/{TieringConfigurationName}", 200],
|
|
4534
|
+
},
|
|
4535
|
+
() => GetTieringConfigurationInput,
|
|
4536
|
+
() => GetTieringConfigurationOutput,
|
|
4537
|
+
];
|
|
4363
4538
|
var ListBackupJobs = [
|
|
4364
4539
|
9,
|
|
4365
4540
|
n0,
|
|
@@ -4620,6 +4795,16 @@ var ListTags = [
|
|
|
4620
4795
|
() => ListTagsInput,
|
|
4621
4796
|
() => ListTagsOutput,
|
|
4622
4797
|
];
|
|
4798
|
+
var ListTieringConfigurations = [
|
|
4799
|
+
9,
|
|
4800
|
+
n0,
|
|
4801
|
+
_LTC,
|
|
4802
|
+
{
|
|
4803
|
+
[_h]: ["GET", "/tiering-configurations", 200],
|
|
4804
|
+
},
|
|
4805
|
+
() => ListTieringConfigurationsInput,
|
|
4806
|
+
() => ListTieringConfigurationsOutput,
|
|
4807
|
+
];
|
|
4623
4808
|
var PutBackupVaultAccessPolicy = [
|
|
4624
4809
|
9,
|
|
4625
4810
|
n0,
|
|
@@ -4834,6 +5019,16 @@ var UpdateRestoreTestingSelection = [
|
|
|
4834
5019
|
() => UpdateRestoreTestingSelectionInput,
|
|
4835
5020
|
() => UpdateRestoreTestingSelectionOutput,
|
|
4836
5021
|
];
|
|
5022
|
+
var UpdateTieringConfiguration = [
|
|
5023
|
+
9,
|
|
5024
|
+
n0,
|
|
5025
|
+
_UTC,
|
|
5026
|
+
{
|
|
5027
|
+
[_h]: ["PUT", "/tiering-configurations/{TieringConfigurationName}", 200],
|
|
5028
|
+
},
|
|
5029
|
+
() => UpdateTieringConfigurationInput,
|
|
5030
|
+
() => UpdateTieringConfigurationOutput,
|
|
5031
|
+
];
|
|
4837
5032
|
|
|
4838
5033
|
class AssociateBackupVaultMpaApprovalTeamCommand extends smithyClient.Command
|
|
4839
5034
|
.classBuilder()
|
|
@@ -4979,6 +5174,18 @@ class CreateRestoreTestingSelectionCommand extends smithyClient.Command
|
|
|
4979
5174
|
.build() {
|
|
4980
5175
|
}
|
|
4981
5176
|
|
|
5177
|
+
class CreateTieringConfigurationCommand extends smithyClient.Command
|
|
5178
|
+
.classBuilder()
|
|
5179
|
+
.ep(commonParams)
|
|
5180
|
+
.m(function (Command, cs, config, o) {
|
|
5181
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
5182
|
+
})
|
|
5183
|
+
.s("CryoControllerUserManager", "CreateTieringConfiguration", {})
|
|
5184
|
+
.n("BackupClient", "CreateTieringConfigurationCommand")
|
|
5185
|
+
.sc(CreateTieringConfiguration)
|
|
5186
|
+
.build() {
|
|
5187
|
+
}
|
|
5188
|
+
|
|
4982
5189
|
class DeleteBackupPlanCommand extends smithyClient.Command
|
|
4983
5190
|
.classBuilder()
|
|
4984
5191
|
.ep(commonParams)
|
|
@@ -5111,6 +5318,18 @@ class DeleteRestoreTestingSelectionCommand extends smithyClient.Command
|
|
|
5111
5318
|
.build() {
|
|
5112
5319
|
}
|
|
5113
5320
|
|
|
5321
|
+
class DeleteTieringConfigurationCommand extends smithyClient.Command
|
|
5322
|
+
.classBuilder()
|
|
5323
|
+
.ep(commonParams)
|
|
5324
|
+
.m(function (Command, cs, config, o) {
|
|
5325
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
5326
|
+
})
|
|
5327
|
+
.s("CryoControllerUserManager", "DeleteTieringConfiguration", {})
|
|
5328
|
+
.n("BackupClient", "DeleteTieringConfigurationCommand")
|
|
5329
|
+
.sc(DeleteTieringConfiguration)
|
|
5330
|
+
.build() {
|
|
5331
|
+
}
|
|
5332
|
+
|
|
5114
5333
|
class DescribeBackupJobCommand extends smithyClient.Command
|
|
5115
5334
|
.classBuilder()
|
|
5116
5335
|
.ep(commonParams)
|
|
@@ -5459,6 +5678,18 @@ class GetSupportedResourceTypesCommand extends smithyClient.Command
|
|
|
5459
5678
|
.build() {
|
|
5460
5679
|
}
|
|
5461
5680
|
|
|
5681
|
+
class GetTieringConfigurationCommand extends smithyClient.Command
|
|
5682
|
+
.classBuilder()
|
|
5683
|
+
.ep(commonParams)
|
|
5684
|
+
.m(function (Command, cs, config, o) {
|
|
5685
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
5686
|
+
})
|
|
5687
|
+
.s("CryoControllerUserManager", "GetTieringConfiguration", {})
|
|
5688
|
+
.n("BackupClient", "GetTieringConfigurationCommand")
|
|
5689
|
+
.sc(GetTieringConfiguration)
|
|
5690
|
+
.build() {
|
|
5691
|
+
}
|
|
5692
|
+
|
|
5462
5693
|
class ListBackupJobsCommand extends smithyClient.Command
|
|
5463
5694
|
.classBuilder()
|
|
5464
5695
|
.ep(commonParams)
|
|
@@ -5771,6 +6002,18 @@ class ListTagsCommand extends smithyClient.Command
|
|
|
5771
6002
|
.build() {
|
|
5772
6003
|
}
|
|
5773
6004
|
|
|
6005
|
+
class ListTieringConfigurationsCommand extends smithyClient.Command
|
|
6006
|
+
.classBuilder()
|
|
6007
|
+
.ep(commonParams)
|
|
6008
|
+
.m(function (Command, cs, config, o) {
|
|
6009
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
6010
|
+
})
|
|
6011
|
+
.s("CryoControllerUserManager", "ListTieringConfigurations", {})
|
|
6012
|
+
.n("BackupClient", "ListTieringConfigurationsCommand")
|
|
6013
|
+
.sc(ListTieringConfigurations)
|
|
6014
|
+
.build() {
|
|
6015
|
+
}
|
|
6016
|
+
|
|
5774
6017
|
class PutBackupVaultAccessPolicyCommand extends smithyClient.Command
|
|
5775
6018
|
.classBuilder()
|
|
5776
6019
|
.ep(commonParams)
|
|
@@ -6023,6 +6266,18 @@ class UpdateRestoreTestingSelectionCommand extends smithyClient.Command
|
|
|
6023
6266
|
.build() {
|
|
6024
6267
|
}
|
|
6025
6268
|
|
|
6269
|
+
class UpdateTieringConfigurationCommand extends smithyClient.Command
|
|
6270
|
+
.classBuilder()
|
|
6271
|
+
.ep(commonParams)
|
|
6272
|
+
.m(function (Command, cs, config, o) {
|
|
6273
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
6274
|
+
})
|
|
6275
|
+
.s("CryoControllerUserManager", "UpdateTieringConfiguration", {})
|
|
6276
|
+
.n("BackupClient", "UpdateTieringConfigurationCommand")
|
|
6277
|
+
.sc(UpdateTieringConfiguration)
|
|
6278
|
+
.build() {
|
|
6279
|
+
}
|
|
6280
|
+
|
|
6026
6281
|
const commands = {
|
|
6027
6282
|
AssociateBackupVaultMpaApprovalTeamCommand,
|
|
6028
6283
|
CancelLegalHoldCommand,
|
|
@@ -6036,6 +6291,7 @@ const commands = {
|
|
|
6036
6291
|
CreateRestoreAccessBackupVaultCommand,
|
|
6037
6292
|
CreateRestoreTestingPlanCommand,
|
|
6038
6293
|
CreateRestoreTestingSelectionCommand,
|
|
6294
|
+
CreateTieringConfigurationCommand,
|
|
6039
6295
|
DeleteBackupPlanCommand,
|
|
6040
6296
|
DeleteBackupSelectionCommand,
|
|
6041
6297
|
DeleteBackupVaultCommand,
|
|
@@ -6047,6 +6303,7 @@ const commands = {
|
|
|
6047
6303
|
DeleteReportPlanCommand,
|
|
6048
6304
|
DeleteRestoreTestingPlanCommand,
|
|
6049
6305
|
DeleteRestoreTestingSelectionCommand,
|
|
6306
|
+
DeleteTieringConfigurationCommand,
|
|
6050
6307
|
DescribeBackupJobCommand,
|
|
6051
6308
|
DescribeBackupVaultCommand,
|
|
6052
6309
|
DescribeCopyJobCommand,
|
|
@@ -6076,6 +6333,7 @@ const commands = {
|
|
|
6076
6333
|
GetRestoreTestingPlanCommand,
|
|
6077
6334
|
GetRestoreTestingSelectionCommand,
|
|
6078
6335
|
GetSupportedResourceTypesCommand,
|
|
6336
|
+
GetTieringConfigurationCommand,
|
|
6079
6337
|
ListBackupJobsCommand,
|
|
6080
6338
|
ListBackupJobSummariesCommand,
|
|
6081
6339
|
ListBackupPlansCommand,
|
|
@@ -6102,6 +6360,7 @@ const commands = {
|
|
|
6102
6360
|
ListRestoreTestingPlansCommand,
|
|
6103
6361
|
ListRestoreTestingSelectionsCommand,
|
|
6104
6362
|
ListTagsCommand,
|
|
6363
|
+
ListTieringConfigurationsCommand,
|
|
6105
6364
|
PutBackupVaultAccessPolicyCommand,
|
|
6106
6365
|
PutBackupVaultLockConfigurationCommand,
|
|
6107
6366
|
PutBackupVaultNotificationsCommand,
|
|
@@ -6123,6 +6382,7 @@ const commands = {
|
|
|
6123
6382
|
UpdateReportPlanCommand,
|
|
6124
6383
|
UpdateRestoreTestingPlanCommand,
|
|
6125
6384
|
UpdateRestoreTestingSelectionCommand,
|
|
6385
|
+
UpdateTieringConfigurationCommand,
|
|
6126
6386
|
};
|
|
6127
6387
|
class Backup extends BackupClient {
|
|
6128
6388
|
}
|
|
@@ -6180,6 +6440,8 @@ const paginateListRestoreTestingSelections = core.createPaginator(BackupClient,
|
|
|
6180
6440
|
|
|
6181
6441
|
const paginateListTags = core.createPaginator(BackupClient, ListTagsCommand, "NextToken", "NextToken", "MaxResults");
|
|
6182
6442
|
|
|
6443
|
+
const paginateListTieringConfigurations = core.createPaginator(BackupClient, ListTieringConfigurationsCommand, "NextToken", "NextToken", "MaxResults");
|
|
6444
|
+
|
|
6183
6445
|
Object.defineProperty(exports, "$Command", {
|
|
6184
6446
|
enumerable: true,
|
|
6185
6447
|
get: function () { return smithyClient.Command; }
|
|
@@ -6212,6 +6474,7 @@ exports.CreateReportPlanCommand = CreateReportPlanCommand;
|
|
|
6212
6474
|
exports.CreateRestoreAccessBackupVaultCommand = CreateRestoreAccessBackupVaultCommand;
|
|
6213
6475
|
exports.CreateRestoreTestingPlanCommand = CreateRestoreTestingPlanCommand;
|
|
6214
6476
|
exports.CreateRestoreTestingSelectionCommand = CreateRestoreTestingSelectionCommand;
|
|
6477
|
+
exports.CreateTieringConfigurationCommand = CreateTieringConfigurationCommand;
|
|
6215
6478
|
exports.DeleteBackupPlanCommand = DeleteBackupPlanCommand;
|
|
6216
6479
|
exports.DeleteBackupSelectionCommand = DeleteBackupSelectionCommand;
|
|
6217
6480
|
exports.DeleteBackupVaultAccessPolicyCommand = DeleteBackupVaultAccessPolicyCommand;
|
|
@@ -6223,6 +6486,7 @@ exports.DeleteRecoveryPointCommand = DeleteRecoveryPointCommand;
|
|
|
6223
6486
|
exports.DeleteReportPlanCommand = DeleteReportPlanCommand;
|
|
6224
6487
|
exports.DeleteRestoreTestingPlanCommand = DeleteRestoreTestingPlanCommand;
|
|
6225
6488
|
exports.DeleteRestoreTestingSelectionCommand = DeleteRestoreTestingSelectionCommand;
|
|
6489
|
+
exports.DeleteTieringConfigurationCommand = DeleteTieringConfigurationCommand;
|
|
6226
6490
|
exports.DependencyFailureException = DependencyFailureException$1;
|
|
6227
6491
|
exports.DescribeBackupJobCommand = DescribeBackupJobCommand;
|
|
6228
6492
|
exports.DescribeBackupVaultCommand = DescribeBackupVaultCommand;
|
|
@@ -6254,12 +6518,14 @@ exports.GetRestoreTestingInferredMetadataCommand = GetRestoreTestingInferredMeta
|
|
|
6254
6518
|
exports.GetRestoreTestingPlanCommand = GetRestoreTestingPlanCommand;
|
|
6255
6519
|
exports.GetRestoreTestingSelectionCommand = GetRestoreTestingSelectionCommand;
|
|
6256
6520
|
exports.GetSupportedResourceTypesCommand = GetSupportedResourceTypesCommand;
|
|
6521
|
+
exports.GetTieringConfigurationCommand = GetTieringConfigurationCommand;
|
|
6257
6522
|
exports.Index = Index;
|
|
6258
6523
|
exports.IndexStatus = IndexStatus;
|
|
6259
6524
|
exports.InvalidParameterValueException = InvalidParameterValueException$1;
|
|
6260
6525
|
exports.InvalidRequestException = InvalidRequestException$1;
|
|
6261
6526
|
exports.InvalidResourceStateException = InvalidResourceStateException$1;
|
|
6262
6527
|
exports.LegalHoldStatus = LegalHoldStatus;
|
|
6528
|
+
exports.LifecycleDeleteAfterEvent = LifecycleDeleteAfterEvent;
|
|
6263
6529
|
exports.LimitExceededException = LimitExceededException$1;
|
|
6264
6530
|
exports.ListBackupJobSummariesCommand = ListBackupJobSummariesCommand;
|
|
6265
6531
|
exports.ListBackupJobsCommand = ListBackupJobsCommand;
|
|
@@ -6287,6 +6553,7 @@ exports.ListRestoreJobsCommand = ListRestoreJobsCommand;
|
|
|
6287
6553
|
exports.ListRestoreTestingPlansCommand = ListRestoreTestingPlansCommand;
|
|
6288
6554
|
exports.ListRestoreTestingSelectionsCommand = ListRestoreTestingSelectionsCommand;
|
|
6289
6555
|
exports.ListTagsCommand = ListTagsCommand;
|
|
6556
|
+
exports.ListTieringConfigurationsCommand = ListTieringConfigurationsCommand;
|
|
6290
6557
|
exports.MissingParameterValueException = MissingParameterValueException$1;
|
|
6291
6558
|
exports.MpaRevokeSessionStatus = MpaRevokeSessionStatus;
|
|
6292
6559
|
exports.MpaSessionStatus = MpaSessionStatus;
|
|
@@ -6322,6 +6589,7 @@ exports.UpdateRegionSettingsCommand = UpdateRegionSettingsCommand;
|
|
|
6322
6589
|
exports.UpdateReportPlanCommand = UpdateReportPlanCommand;
|
|
6323
6590
|
exports.UpdateRestoreTestingPlanCommand = UpdateRestoreTestingPlanCommand;
|
|
6324
6591
|
exports.UpdateRestoreTestingSelectionCommand = UpdateRestoreTestingSelectionCommand;
|
|
6592
|
+
exports.UpdateTieringConfigurationCommand = UpdateTieringConfigurationCommand;
|
|
6325
6593
|
exports.VaultState = VaultState;
|
|
6326
6594
|
exports.VaultType = VaultType;
|
|
6327
6595
|
exports.paginateListBackupJobSummaries = paginateListBackupJobSummaries;
|
|
@@ -6350,3 +6618,4 @@ exports.paginateListRestoreJobsByProtectedResource = paginateListRestoreJobsByPr
|
|
|
6350
6618
|
exports.paginateListRestoreTestingPlans = paginateListRestoreTestingPlans;
|
|
6351
6619
|
exports.paginateListRestoreTestingSelections = paginateListRestoreTestingSelections;
|
|
6352
6620
|
exports.paginateListTags = paginateListTags;
|
|
6621
|
+
exports.paginateListTieringConfigurations = paginateListTieringConfigurations;
|