@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.
Files changed (52) hide show
  1. package/README.md +40 -0
  2. package/dist-cjs/index.js +277 -8
  3. package/dist-es/Backup.js +10 -0
  4. package/dist-es/commands/CreateTieringConfigurationCommand.js +16 -0
  5. package/dist-es/commands/DeleteTieringConfigurationCommand.js +16 -0
  6. package/dist-es/commands/GetTieringConfigurationCommand.js +16 -0
  7. package/dist-es/commands/ListTieringConfigurationsCommand.js +16 -0
  8. package/dist-es/commands/UpdateTieringConfigurationCommand.js +16 -0
  9. package/dist-es/commands/index.js +5 -0
  10. package/dist-es/models/models_0.js +3 -0
  11. package/dist-es/pagination/ListTieringConfigurationsPaginator.js +4 -0
  12. package/dist-es/pagination/index.js +1 -0
  13. package/dist-es/schemas/schemas_0.js +200 -8
  14. package/dist-types/Backup.d.ts +36 -0
  15. package/dist-types/BackupClient.d.ts +7 -2
  16. package/dist-types/commands/CreateBackupPlanCommand.d.ts +3 -0
  17. package/dist-types/commands/CreateTieringConfigurationCommand.d.ts +115 -0
  18. package/dist-types/commands/DeleteTieringConfigurationCommand.d.ts +85 -0
  19. package/dist-types/commands/DescribeBackupJobCommand.d.ts +1 -0
  20. package/dist-types/commands/DescribeCopyJobCommand.d.ts +2 -0
  21. package/dist-types/commands/DescribeRecoveryPointCommand.d.ts +1 -0
  22. package/dist-types/commands/GetBackupPlanCommand.d.ts +3 -0
  23. package/dist-types/commands/GetBackupPlanFromJSONCommand.d.ts +3 -0
  24. package/dist-types/commands/GetBackupPlanFromTemplateCommand.d.ts +3 -0
  25. package/dist-types/commands/GetTieringConfigurationCommand.d.ts +105 -0
  26. package/dist-types/commands/ListBackupJobsCommand.d.ts +1 -0
  27. package/dist-types/commands/ListCopyJobsCommand.d.ts +3 -0
  28. package/dist-types/commands/ListRecoveryPointsByBackupVaultCommand.d.ts +1 -0
  29. package/dist-types/commands/ListTieringConfigurationsCommand.d.ts +91 -0
  30. package/dist-types/commands/StartBackupJobCommand.d.ts +2 -0
  31. package/dist-types/commands/StartCopyJobCommand.d.ts +1 -0
  32. package/dist-types/commands/UpdateBackupPlanCommand.d.ts +3 -0
  33. package/dist-types/commands/UpdateRecoveryPointLifecycleCommand.d.ts +2 -0
  34. package/dist-types/commands/UpdateTieringConfigurationCommand.d.ts +134 -0
  35. package/dist-types/commands/index.d.ts +5 -0
  36. package/dist-types/models/models_0.d.ts +395 -2
  37. package/dist-types/pagination/ListTieringConfigurationsPaginator.d.ts +7 -0
  38. package/dist-types/pagination/index.d.ts +1 -0
  39. package/dist-types/schemas/schemas_0.d.ts +22 -0
  40. package/dist-types/ts3.4/Backup.d.ts +86 -0
  41. package/dist-types/ts3.4/BackupClient.d.ts +32 -2
  42. package/dist-types/ts3.4/commands/CreateTieringConfigurationCommand.d.ts +51 -0
  43. package/dist-types/ts3.4/commands/DeleteTieringConfigurationCommand.d.ts +51 -0
  44. package/dist-types/ts3.4/commands/GetTieringConfigurationCommand.d.ts +51 -0
  45. package/dist-types/ts3.4/commands/ListTieringConfigurationsCommand.d.ts +51 -0
  46. package/dist-types/ts3.4/commands/UpdateTieringConfigurationCommand.d.ts +51 -0
  47. package/dist-types/ts3.4/commands/index.d.ts +5 -0
  48. package/dist-types/ts3.4/models/models_0.d.ts +79 -0
  49. package/dist-types/ts3.4/pagination/ListTieringConfigurationsPaginator.d.ts +11 -0
  50. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  51. package/dist-types/ts3.4/schemas/schemas_0.d.ts +22 -0
  52. package/package.json +6 -6
package/dist-es/Backup.js CHANGED
@@ -12,6 +12,7 @@ import { CreateReportPlanCommand, } from "./commands/CreateReportPlanCommand";
12
12
  import { CreateRestoreAccessBackupVaultCommand, } from "./commands/CreateRestoreAccessBackupVaultCommand";
13
13
  import { CreateRestoreTestingPlanCommand, } from "./commands/CreateRestoreTestingPlanCommand";
14
14
  import { CreateRestoreTestingSelectionCommand, } from "./commands/CreateRestoreTestingSelectionCommand";
15
+ import { CreateTieringConfigurationCommand, } from "./commands/CreateTieringConfigurationCommand";
15
16
  import { DeleteBackupPlanCommand, } from "./commands/DeleteBackupPlanCommand";
16
17
  import { DeleteBackupSelectionCommand, } from "./commands/DeleteBackupSelectionCommand";
17
18
  import { DeleteBackupVaultAccessPolicyCommand, } from "./commands/DeleteBackupVaultAccessPolicyCommand";
@@ -23,6 +24,7 @@ import { DeleteRecoveryPointCommand, } from "./commands/DeleteRecoveryPointComma
23
24
  import { DeleteReportPlanCommand, } from "./commands/DeleteReportPlanCommand";
24
25
  import { DeleteRestoreTestingPlanCommand, } from "./commands/DeleteRestoreTestingPlanCommand";
25
26
  import { DeleteRestoreTestingSelectionCommand, } from "./commands/DeleteRestoreTestingSelectionCommand";
27
+ import { DeleteTieringConfigurationCommand, } from "./commands/DeleteTieringConfigurationCommand";
26
28
  import { DescribeBackupJobCommand, } from "./commands/DescribeBackupJobCommand";
27
29
  import { DescribeBackupVaultCommand, } from "./commands/DescribeBackupVaultCommand";
28
30
  import { DescribeCopyJobCommand, } from "./commands/DescribeCopyJobCommand";
@@ -52,6 +54,7 @@ import { GetRestoreTestingInferredMetadataCommand, } from "./commands/GetRestore
52
54
  import { GetRestoreTestingPlanCommand, } from "./commands/GetRestoreTestingPlanCommand";
53
55
  import { GetRestoreTestingSelectionCommand, } from "./commands/GetRestoreTestingSelectionCommand";
54
56
  import { GetSupportedResourceTypesCommand, } from "./commands/GetSupportedResourceTypesCommand";
57
+ import { GetTieringConfigurationCommand, } from "./commands/GetTieringConfigurationCommand";
55
58
  import { ListBackupJobsCommand, } from "./commands/ListBackupJobsCommand";
56
59
  import { ListBackupJobSummariesCommand, } from "./commands/ListBackupJobSummariesCommand";
57
60
  import { ListBackupPlansCommand, } from "./commands/ListBackupPlansCommand";
@@ -78,6 +81,7 @@ import { ListRestoreJobSummariesCommand, } from "./commands/ListRestoreJobSummar
78
81
  import { ListRestoreTestingPlansCommand, } from "./commands/ListRestoreTestingPlansCommand";
79
82
  import { ListRestoreTestingSelectionsCommand, } from "./commands/ListRestoreTestingSelectionsCommand";
80
83
  import { ListTagsCommand } from "./commands/ListTagsCommand";
84
+ import { ListTieringConfigurationsCommand, } from "./commands/ListTieringConfigurationsCommand";
81
85
  import { PutBackupVaultAccessPolicyCommand, } from "./commands/PutBackupVaultAccessPolicyCommand";
82
86
  import { PutBackupVaultLockConfigurationCommand, } from "./commands/PutBackupVaultLockConfigurationCommand";
83
87
  import { PutBackupVaultNotificationsCommand, } from "./commands/PutBackupVaultNotificationsCommand";
@@ -99,6 +103,7 @@ import { UpdateRegionSettingsCommand, } from "./commands/UpdateRegionSettingsCom
99
103
  import { UpdateReportPlanCommand, } from "./commands/UpdateReportPlanCommand";
100
104
  import { UpdateRestoreTestingPlanCommand, } from "./commands/UpdateRestoreTestingPlanCommand";
101
105
  import { UpdateRestoreTestingSelectionCommand, } from "./commands/UpdateRestoreTestingSelectionCommand";
106
+ import { UpdateTieringConfigurationCommand, } from "./commands/UpdateTieringConfigurationCommand";
102
107
  const commands = {
103
108
  AssociateBackupVaultMpaApprovalTeamCommand,
104
109
  CancelLegalHoldCommand,
@@ -112,6 +117,7 @@ const commands = {
112
117
  CreateRestoreAccessBackupVaultCommand,
113
118
  CreateRestoreTestingPlanCommand,
114
119
  CreateRestoreTestingSelectionCommand,
120
+ CreateTieringConfigurationCommand,
115
121
  DeleteBackupPlanCommand,
116
122
  DeleteBackupSelectionCommand,
117
123
  DeleteBackupVaultCommand,
@@ -123,6 +129,7 @@ const commands = {
123
129
  DeleteReportPlanCommand,
124
130
  DeleteRestoreTestingPlanCommand,
125
131
  DeleteRestoreTestingSelectionCommand,
132
+ DeleteTieringConfigurationCommand,
126
133
  DescribeBackupJobCommand,
127
134
  DescribeBackupVaultCommand,
128
135
  DescribeCopyJobCommand,
@@ -152,6 +159,7 @@ const commands = {
152
159
  GetRestoreTestingPlanCommand,
153
160
  GetRestoreTestingSelectionCommand,
154
161
  GetSupportedResourceTypesCommand,
162
+ GetTieringConfigurationCommand,
155
163
  ListBackupJobsCommand,
156
164
  ListBackupJobSummariesCommand,
157
165
  ListBackupPlansCommand,
@@ -178,6 +186,7 @@ const commands = {
178
186
  ListRestoreTestingPlansCommand,
179
187
  ListRestoreTestingSelectionsCommand,
180
188
  ListTagsCommand,
189
+ ListTieringConfigurationsCommand,
181
190
  PutBackupVaultAccessPolicyCommand,
182
191
  PutBackupVaultLockConfigurationCommand,
183
192
  PutBackupVaultNotificationsCommand,
@@ -199,6 +208,7 @@ const commands = {
199
208
  UpdateReportPlanCommand,
200
209
  UpdateRestoreTestingPlanCommand,
201
210
  UpdateRestoreTestingSelectionCommand,
211
+ UpdateTieringConfigurationCommand,
202
212
  };
203
213
  export class Backup extends BackupClient {
204
214
  }
@@ -0,0 +1,16 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { CreateTieringConfiguration } from "../schemas/schemas_0";
5
+ export { $Command };
6
+ export class CreateTieringConfigurationCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
9
+ .m(function (Command, cs, config, o) {
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
+ })
12
+ .s("CryoControllerUserManager", "CreateTieringConfiguration", {})
13
+ .n("BackupClient", "CreateTieringConfigurationCommand")
14
+ .sc(CreateTieringConfiguration)
15
+ .build() {
16
+ }
@@ -0,0 +1,16 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { DeleteTieringConfiguration } from "../schemas/schemas_0";
5
+ export { $Command };
6
+ export class DeleteTieringConfigurationCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
9
+ .m(function (Command, cs, config, o) {
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
+ })
12
+ .s("CryoControllerUserManager", "DeleteTieringConfiguration", {})
13
+ .n("BackupClient", "DeleteTieringConfigurationCommand")
14
+ .sc(DeleteTieringConfiguration)
15
+ .build() {
16
+ }
@@ -0,0 +1,16 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { GetTieringConfiguration } from "../schemas/schemas_0";
5
+ export { $Command };
6
+ export class GetTieringConfigurationCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
9
+ .m(function (Command, cs, config, o) {
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
+ })
12
+ .s("CryoControllerUserManager", "GetTieringConfiguration", {})
13
+ .n("BackupClient", "GetTieringConfigurationCommand")
14
+ .sc(GetTieringConfiguration)
15
+ .build() {
16
+ }
@@ -0,0 +1,16 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { ListTieringConfigurations } from "../schemas/schemas_0";
5
+ export { $Command };
6
+ export class ListTieringConfigurationsCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
9
+ .m(function (Command, cs, config, o) {
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
+ })
12
+ .s("CryoControllerUserManager", "ListTieringConfigurations", {})
13
+ .n("BackupClient", "ListTieringConfigurationsCommand")
14
+ .sc(ListTieringConfigurations)
15
+ .build() {
16
+ }
@@ -0,0 +1,16 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { UpdateTieringConfiguration } from "../schemas/schemas_0";
5
+ export { $Command };
6
+ export class UpdateTieringConfigurationCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
9
+ .m(function (Command, cs, config, o) {
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
+ })
12
+ .s("CryoControllerUserManager", "UpdateTieringConfiguration", {})
13
+ .n("BackupClient", "UpdateTieringConfigurationCommand")
14
+ .sc(UpdateTieringConfiguration)
15
+ .build() {
16
+ }
@@ -10,6 +10,7 @@ export * from "./CreateReportPlanCommand";
10
10
  export * from "./CreateRestoreAccessBackupVaultCommand";
11
11
  export * from "./CreateRestoreTestingPlanCommand";
12
12
  export * from "./CreateRestoreTestingSelectionCommand";
13
+ export * from "./CreateTieringConfigurationCommand";
13
14
  export * from "./DeleteBackupPlanCommand";
14
15
  export * from "./DeleteBackupSelectionCommand";
15
16
  export * from "./DeleteBackupVaultAccessPolicyCommand";
@@ -21,6 +22,7 @@ export * from "./DeleteRecoveryPointCommand";
21
22
  export * from "./DeleteReportPlanCommand";
22
23
  export * from "./DeleteRestoreTestingPlanCommand";
23
24
  export * from "./DeleteRestoreTestingSelectionCommand";
25
+ export * from "./DeleteTieringConfigurationCommand";
24
26
  export * from "./DescribeBackupJobCommand";
25
27
  export * from "./DescribeBackupVaultCommand";
26
28
  export * from "./DescribeCopyJobCommand";
@@ -50,6 +52,7 @@ export * from "./GetRestoreTestingInferredMetadataCommand";
50
52
  export * from "./GetRestoreTestingPlanCommand";
51
53
  export * from "./GetRestoreTestingSelectionCommand";
52
54
  export * from "./GetSupportedResourceTypesCommand";
55
+ export * from "./GetTieringConfigurationCommand";
53
56
  export * from "./ListBackupJobSummariesCommand";
54
57
  export * from "./ListBackupJobsCommand";
55
58
  export * from "./ListBackupPlanTemplatesCommand";
@@ -76,6 +79,7 @@ export * from "./ListRestoreJobsCommand";
76
79
  export * from "./ListRestoreTestingPlansCommand";
77
80
  export * from "./ListRestoreTestingSelectionsCommand";
78
81
  export * from "./ListTagsCommand";
82
+ export * from "./ListTieringConfigurationsCommand";
79
83
  export * from "./PutBackupVaultAccessPolicyCommand";
80
84
  export * from "./PutBackupVaultLockConfigurationCommand";
81
85
  export * from "./PutBackupVaultNotificationsCommand";
@@ -97,3 +101,4 @@ export * from "./UpdateRegionSettingsCommand";
97
101
  export * from "./UpdateReportPlanCommand";
98
102
  export * from "./UpdateRestoreTestingPlanCommand";
99
103
  export * from "./UpdateRestoreTestingSelectionCommand";
104
+ export * from "./UpdateTieringConfigurationCommand";
@@ -128,6 +128,9 @@ export class ServiceUnavailableException extends __BaseException {
128
128
  this.Context = opts.Context;
129
129
  }
130
130
  }
131
+ export const LifecycleDeleteAfterEvent = {
132
+ DELETE_AFTER_COPY: "DELETE_AFTER_COPY",
133
+ };
131
134
  export const BackupJobState = {
132
135
  ABORTED: "ABORTED",
133
136
  ABORTING: "ABORTING",
@@ -0,0 +1,4 @@
1
+ import { createPaginator } from "@smithy/core";
2
+ import { BackupClient } from "../BackupClient";
3
+ import { ListTieringConfigurationsCommand, } from "../commands/ListTieringConfigurationsCommand";
4
+ export const paginateListTieringConfigurations = createPaginator(BackupClient, ListTieringConfigurationsCommand, "NextToken", "NextToken", "MaxResults");
@@ -25,3 +25,4 @@ export * from "./ListRestoreJobsPaginator";
25
25
  export * from "./ListRestoreTestingPlansPaginator";
26
26
  export * from "./ListRestoreTestingSelectionsPaginator";
27
27
  export * from "./ListTagsPaginator";
28
+ export * from "./ListTieringConfigurationsPaginator";
@@ -66,6 +66,7 @@ const _BSB = "BackupSizeBytes";
66
66
  const _BSIB = "BackupSizeInBytes";
67
67
  const _BSL = "BackupSelectionsList";
68
68
  const _BSLM = "BackupSelectionsListMember";
69
+ const _BSRPA = "BySourceRecoveryPointArn";
69
70
  const _BSy = "ByState";
70
71
  const _BSyh = "ByShared";
71
72
  const _BSyt = "ByStatus";
@@ -85,6 +86,7 @@ const _CAo = "CopyAction";
85
86
  const _CAr = "CreatedAfter";
86
87
  const _CAre = "CreationAfter";
87
88
  const _CB = "CreatedBy";
89
+ const _CBBJI = "CreatedByBackupJobId";
88
90
  const _CBP = "CreateBackupPlan";
89
91
  const _CBPI = "CreateBackupPlanInput";
90
92
  const _CBPO = "CreateBackupPlanOutput";
@@ -149,6 +151,9 @@ const _CRTSO = "CreateRestoreTestingSelectionOutput";
149
151
  const _CS = "ControlScope";
150
152
  const _CSTTRR = "CopySourceTagsToRestoredResource";
151
153
  const _CT = "ConditionType";
154
+ const _CTC = "CreateTieringConfiguration";
155
+ const _CTCI = "CreateTieringConfigurationInput";
156
+ const _CTCO = "CreateTieringConfigurationOutput";
152
157
  const _CTo = "CompletionTime";
153
158
  const _CTr = "CreationTime";
154
159
  const _CV = "ConditionValue";
@@ -161,6 +166,7 @@ const _Cou = "Count";
161
166
  const _D = "Description";
162
167
  const _DA = "DeleteAt";
163
168
  const _DAD = "DeleteAfterDays";
169
+ const _DAE = "DeleteAfterEvent";
164
170
  const _DBJ = "DescribeBackupJob";
165
171
  const _DBJI = "DescribeBackupJobInput";
166
172
  const _DBJO = "DescribeBackupJobOutput";
@@ -233,6 +239,9 @@ const _DRTSI = "DeleteRestoreTestingSelectionInput";
233
239
  const _DS = "DeploymentStatus";
234
240
  const _DSM = "DeletionStatusMessage";
235
241
  const _DSe = "DeletionStatus";
242
+ const _DTC = "DeleteTieringConfiguration";
243
+ const _DTCI = "DeleteTieringConfigurationInput";
244
+ const _DTCO = "DeleteTieringConfigurationOutput";
236
245
  const _DVLS = "DestinationVaultLockState";
237
246
  const _DVT = "DestinationVaultType";
238
247
  const _EBPT = "ExportBackupPlanTemplate";
@@ -302,6 +311,9 @@ const _GRTSO = "GetRestoreTestingSelectionOutput";
302
311
  const _GS = "GlobalSettings";
303
312
  const _GSRT = "GetSupportedResourceTypes";
304
313
  const _GSRTO = "GetSupportedResourceTypesOutput";
314
+ const _GTC = "GetTieringConfiguration";
315
+ const _GTCI = "GetTieringConfigurationInput";
316
+ const _GTCO = "GetTieringConfigurationOutput";
305
317
  const _I = "Index";
306
318
  const _IA = "IndexActions";
307
319
  const _IAn = "IndexAction";
@@ -329,6 +341,7 @@ const _KV = "KeyValue";
329
341
  const _KVL = "KeyValueList";
330
342
  const _L = "Lifecycle";
331
343
  const _LAET = "LastAttemptedExecutionTime";
344
+ const _LAGBVA = "LogicallyAirGappedBackupVaultArn";
332
345
  const _LBJ = "ListBackupJobs";
333
346
  const _LBJI = "ListBackupJobsInput";
334
347
  const _LBJO = "ListBackupJobsOutput";
@@ -425,9 +438,13 @@ const _LRTSI = "ListRestoreTestingSelectionsInput";
425
438
  const _LRTSO = "ListRestoreTestingSelectionsOutput";
426
439
  const _LSET = "LastSuccessfulExecutionTime";
427
440
  const _LT = "ListTags";
441
+ const _LTC = "ListTieringConfigurations";
442
+ const _LTCI = "ListTieringConfigurationsInput";
443
+ const _LTCO = "ListTieringConfigurationsOutput";
428
444
  const _LTI = "ListTagsInput";
429
445
  const _LTO = "ListTagsOutput";
430
446
  const _LUT = "LastUpdateTime";
447
+ const _LUTa = "LastUpdatedTime";
431
448
  const _Lo = "Locked";
432
449
  const _M = "Message";
433
450
  const _MATA = "MpaApprovalTeamArn";
@@ -525,6 +542,8 @@ const _RRABVI = "RevokeRestoreAccessBackupVaultInput";
525
542
  const _RRID = "RetainRecordInDays";
526
543
  const _RRU = "RetainRecordUntil";
527
544
  const _RS = "ReportSetting";
545
+ const _RSe = "ResourceSelection";
546
+ const _RSes = "ResourceSelections";
528
547
  const _RT = "ResourceType";
529
548
  const _RTMP = "ResourceTypeManagementPreference";
530
549
  const _RTOIP = "ResourceTypeOptInPreference";
@@ -595,9 +614,20 @@ const _SWM = "StartWindowMinutes";
595
614
  const _St = "Status";
596
615
  const _T = "Type";
597
616
  const _TBVN = "TargetBackupVaultName";
617
+ const _TC = "TieringConfiguration";
618
+ const _TCA = "TieringConfigurationArn";
619
+ const _TCIFC = "TieringConfigurationInputForCreate";
620
+ const _TCIFU = "TieringConfigurationInputForUpdate";
621
+ const _TCL = "TieringConfigurationsList";
622
+ const _TCLM = "TieringConfigurationsListMember";
623
+ const _TCN = "TieringConfigurationName";
624
+ const _TCT = "TieringConfigurationTags";
625
+ const _TCi = "TieringConfigurations";
598
626
  const _TD = "ToDate";
627
+ const _TDSID = "TieringDownSettingsInDays";
599
628
  const _TII = "TotalItemsIndexed";
600
629
  const _TKL = "TagKeyList";
630
+ const _TLAGBVA = "TargetLogicallyAirGappedBackupVaultArn";
601
631
  const _TR = "TagResource";
602
632
  const _TRI = "TagResourceInput";
603
633
  const _Ta = "Tags";
@@ -630,6 +660,9 @@ const _URTS = "UpdateRestoreTestingSelection";
630
660
  const _URTSI = "UpdateRestoreTestingSelectionInput";
631
661
  const _URTSO = "UpdateRestoreTestingSelectionOutput";
632
662
  const _UT = "UpdateTime";
663
+ const _UTC = "UpdateTieringConfiguration";
664
+ const _UTCI = "UpdateTieringConfigurationInput";
665
+ const _UTCO = "UpdateTieringConfigurationOutput";
633
666
  const _V = "Value";
634
667
  const _VI = "VersionId";
635
668
  const _VLS = "VaultLockState";
@@ -672,6 +705,7 @@ const _rT = "resourceType";
672
705
  const _rTPA = "restoreTestingPlanArn";
673
706
  const _s = "server";
674
707
  const _sRA = "sourceResourceArn";
708
+ const _sRPA = "sourceRecoveryPointArn";
675
709
  const _sh = "shared";
676
710
  const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.backup";
677
711
  const _st = "state";
@@ -811,16 +845,16 @@ export var BackupRule = [
811
845
  n0,
812
846
  _BR,
813
847
  0,
814
- [_RNu, _TBVN, _SE, _SWM, _CWM, _L, _RPT, _RI, _CA, _ECB, _SET, _IA],
815
- [0, 0, 0, 1, 1, () => Lifecycle, [() => Tags, 0], 0, () => CopyActions, 2, 0, () => IndexActions],
848
+ [_RNu, _TBVN, _TLAGBVA, _SE, _SWM, _CWM, _L, _RPT, _RI, _CA, _ECB, _SET, _IA],
849
+ [0, 0, 0, 0, 1, 1, () => Lifecycle, [() => Tags, 0], 0, () => CopyActions, 2, 0, () => IndexActions],
816
850
  ];
817
851
  export var BackupRuleInput = [
818
852
  3,
819
853
  n0,
820
854
  _BRI,
821
855
  0,
822
- [_RNu, _TBVN, _SE, _SWM, _CWM, _L, _RPT, _CA, _ECB, _SET, _IA],
823
- [0, 0, 0, 1, 1, () => Lifecycle, [() => Tags, 0], () => CopyActions, 2, 0, () => IndexActions],
856
+ [_RNu, _TBVN, _TLAGBVA, _SE, _SWM, _CWM, _L, _RPT, _CA, _ECB, _SET, _IA],
857
+ [0, 0, 0, 0, 1, 1, () => Lifecycle, [() => Tags, 0], () => CopyActions, 2, 0, () => IndexActions],
824
858
  ];
825
859
  export var BackupSelection = [
826
860
  3,
@@ -920,6 +954,7 @@ export var CopyJob = [
920
954
  _BSIB,
921
955
  _IRA,
922
956
  _CB,
957
+ _CBBJI,
923
958
  _RT,
924
959
  _PJI,
925
960
  _IP,
@@ -950,6 +985,7 @@ export var CopyJob = [
950
985
  () => RecoveryPointCreator,
951
986
  0,
952
987
  0,
988
+ 0,
953
989
  2,
954
990
  0,
955
991
  1,
@@ -1095,6 +1131,15 @@ export var CreateRestoreTestingSelectionOutput = [
1095
1131
  [_CTr, _RTPA, _RTPN, _RTSN],
1096
1132
  [4, 0, 0, 0],
1097
1133
  ];
1134
+ export var CreateTieringConfigurationInput = [
1135
+ 3,
1136
+ n0,
1137
+ _CTCI,
1138
+ 0,
1139
+ [_TC, _TCT, _CRI],
1140
+ [() => TieringConfigurationInputForCreate, [() => Tags, 0], [0, 4]],
1141
+ ];
1142
+ export var CreateTieringConfigurationOutput = [3, n0, _CTCO, 0, [_TCA, _TCN, _CTr], [0, 0, 4]];
1098
1143
  export var DateRange = [3, n0, _DR, 0, [_FDr, _TD], [4, 4]];
1099
1144
  export var DeleteBackupPlanInput = [3, n0, _DBPI, 0, [_BPIa], [[0, 1]]];
1100
1145
  export var DeleteBackupPlanOutput = [3, n0, _DBPO, 0, [_BPIa, _BPA, _DD, _VI], [0, 0, 4, 0]];
@@ -1138,6 +1183,8 @@ export var DeleteRestoreTestingSelectionInput = [
1138
1183
  [0, 1],
1139
1184
  ],
1140
1185
  ];
1186
+ export var DeleteTieringConfigurationInput = [3, n0, _DTCI, 0, [_TCN], [[0, 1]]];
1187
+ export var DeleteTieringConfigurationOutput = [3, n0, _DTCO, 0, [], []];
1141
1188
  export var DependencyFailureException = [
1142
1189
  -3,
1143
1190
  n0,
@@ -1626,6 +1673,15 @@ export var GetRestoreTestingSelectionOutput = [
1626
1673
  [[() => RestoreTestingSelectionForGet, 0]],
1627
1674
  ];
1628
1675
  export var GetSupportedResourceTypesOutput = [3, n0, _GSRTO, 0, [_RTe], [64 | 0]];
1676
+ export var GetTieringConfigurationInput = [3, n0, _GTCI, 0, [_TCN], [[0, 1]]];
1677
+ export var GetTieringConfigurationOutput = [
1678
+ 3,
1679
+ n0,
1680
+ _GTCO,
1681
+ 0,
1682
+ [_TC],
1683
+ [() => TieringConfiguration],
1684
+ ];
1629
1685
  export var IndexAction = [3, n0, _IAn, 0, [_RTe], [64 | 0]];
1630
1686
  export var IndexedRecoveryPoint = [
1631
1687
  3,
@@ -1686,7 +1742,7 @@ export var LegalHold = [
1686
1742
  [_Ti, _St, _D, _LHI, _LHA, _CD, _CDan],
1687
1743
  [0, 0, 0, 0, 0, 4, 4],
1688
1744
  ];
1689
- export var Lifecycle = [3, n0, _L, 0, [_MTCSAD, _DAD, _OITAFSR], [1, 1, 2]];
1745
+ export var Lifecycle = [3, n0, _L, 0, [_MTCSAD, _DAD, _OITAFSR, _DAE], [1, 1, 2, 0]];
1690
1746
  export var LimitExceededException = [
1691
1747
  -3,
1692
1748
  n0,
@@ -2001,7 +2057,7 @@ export var ListCopyJobsInput = [
2001
2057
  n0,
2002
2058
  _LCJI,
2003
2059
  0,
2004
- [_NT, _MR, _BRA, _BSy, _BCB, _BCA, _BRT, _BDVA, _BAI, _BCBy, _BCAy, _BPJI, _BMC],
2060
+ [_NT, _MR, _BRA, _BSy, _BCB, _BCA, _BRT, _BDVA, _BAI, _BCBy, _BCAy, _BPJI, _BMC, _BSRPA],
2005
2061
  [
2006
2062
  [
2007
2063
  0,
@@ -2081,6 +2137,12 @@ export var ListCopyJobsInput = [
2081
2137
  [_hQ]: _mC,
2082
2138
  },
2083
2139
  ],
2140
+ [
2141
+ 0,
2142
+ {
2143
+ [_hQ]: _sRPA,
2144
+ },
2145
+ ],
2084
2146
  ],
2085
2147
  ];
2086
2148
  export var ListCopyJobsOutput = [3, n0, _LCJO, 0, [_CJo, _NT], [() => CopyJobsList, 0]];
@@ -2806,6 +2868,35 @@ export var ListTagsInput = [
2806
2868
  ],
2807
2869
  ];
2808
2870
  export var ListTagsOutput = [3, n0, _LTO, 0, [_NT, _Ta], [0, [() => Tags, 0]]];
2871
+ export var ListTieringConfigurationsInput = [
2872
+ 3,
2873
+ n0,
2874
+ _LTCI,
2875
+ 0,
2876
+ [_MR, _NT],
2877
+ [
2878
+ [
2879
+ 1,
2880
+ {
2881
+ [_hQ]: _mR,
2882
+ },
2883
+ ],
2884
+ [
2885
+ 0,
2886
+ {
2887
+ [_hQ]: _nT,
2888
+ },
2889
+ ],
2890
+ ],
2891
+ ];
2892
+ export var ListTieringConfigurationsOutput = [
2893
+ 3,
2894
+ n0,
2895
+ _LTCO,
2896
+ 0,
2897
+ [_TCi, _NT],
2898
+ [() => TieringConfigurationsList, 0],
2899
+ ];
2809
2900
  export var MissingParameterValueException = [
2810
2901
  -3,
2811
2902
  n0,
@@ -2984,6 +3075,7 @@ export var ResourceNotFoundException = [
2984
3075
  [0, 0, 0, 0],
2985
3076
  ];
2986
3077
  TypeRegistry.for(n0).registerError(ResourceNotFoundException, __ResourceNotFoundException);
3078
+ export var ResourceSelection = [3, n0, _RSe, 0, [_Re, _TDSID, _RT], [64 | 0, 1, 0]];
2987
3079
  export var RestoreAccessBackupVaultListMember = [
2988
3080
  3,
2989
3081
  n0,
@@ -3139,8 +3231,8 @@ export var StartBackupJobInput = [
3139
3231
  n0,
3140
3232
  _SBJI,
3141
3233
  0,
3142
- [_BVN, _RA, _IRA, _IT, _SWM, _CWMo, _L, _RPT, _BO, _I],
3143
- [0, 0, 0, [0, 4], 1, 1, () => Lifecycle, [() => Tags, 0], 128 | 0, 0],
3234
+ [_BVN, _LAGBVA, _RA, _IRA, _IT, _SWM, _CWMo, _L, _RPT, _BO, _I],
3235
+ [0, 0, 0, 0, [0, 4], 1, 1, () => Lifecycle, [() => Tags, 0], 128 | 0, 0],
3144
3236
  ];
3145
3237
  export var StartBackupJobOutput = [3, n0, _SBJO, 0, [_BJI, _RPA, _CD, _IP], [0, 0, 4, 2]];
3146
3238
  export var StartCopyJobInput = [
@@ -3185,6 +3277,38 @@ export var TagResourceInput = [
3185
3277
  [() => Tags, 0],
3186
3278
  ],
3187
3279
  ];
3280
+ export var TieringConfiguration = [
3281
+ 3,
3282
+ n0,
3283
+ _TC,
3284
+ 0,
3285
+ [_TCN, _TCA, _BVN, _RSe, _CRI, _CTr, _LUTa],
3286
+ [0, 0, 0, () => ResourceSelections, 0, 4, 4],
3287
+ ];
3288
+ export var TieringConfigurationInputForCreate = [
3289
+ 3,
3290
+ n0,
3291
+ _TCIFC,
3292
+ 0,
3293
+ [_TCN, _BVN, _RSe],
3294
+ [0, 0, () => ResourceSelections],
3295
+ ];
3296
+ export var TieringConfigurationInputForUpdate = [
3297
+ 3,
3298
+ n0,
3299
+ _TCIFU,
3300
+ 0,
3301
+ [_RSe, _BVN],
3302
+ [() => ResourceSelections, 0],
3303
+ ];
3304
+ export var TieringConfigurationsListMember = [
3305
+ 3,
3306
+ n0,
3307
+ _TCLM,
3308
+ 0,
3309
+ [_TCA, _TCN, _BVN, _CTr, _LUTa],
3310
+ [0, 0, 0, 4, 4],
3311
+ ];
3188
3312
  export var UntagResourceInput = [
3189
3313
  3,
3190
3314
  n0,
@@ -3303,6 +3427,22 @@ export var UpdateRestoreTestingSelectionOutput = [
3303
3427
  [_CTr, _RTPA, _RTPN, _RTSN, _UT],
3304
3428
  [4, 0, 0, 0, 4],
3305
3429
  ];
3430
+ export var UpdateTieringConfigurationInput = [
3431
+ 3,
3432
+ n0,
3433
+ _UTCI,
3434
+ 0,
3435
+ [_TCN, _TC],
3436
+ [[0, 1], () => TieringConfigurationInputForUpdate],
3437
+ ];
3438
+ export var UpdateTieringConfigurationOutput = [
3439
+ 3,
3440
+ n0,
3441
+ _UTCO,
3442
+ 0,
3443
+ [_TCA, _TCN, _CTr, _LUTa],
3444
+ [0, 0, 4, 4],
3445
+ ];
3306
3446
  export var __Unit = "unit";
3307
3447
  export var BackupServiceException = [-3, _sm, "BackupServiceException", 0, [], []];
3308
3448
  TypeRegistry.for(_sm).registerError(BackupServiceException, __BackupServiceException);
@@ -3339,6 +3479,7 @@ export var ReportJobList = [1, n0, _RJL, 0, () => ReportJob];
3339
3479
  export var ReportPlanList = [1, n0, _RPLep, 0, () => ReportPlan];
3340
3480
  export var ResourceArns = 64 | 0;
3341
3481
  export var ResourceIdentifiers = 64 | 0;
3482
+ export var ResourceSelections = [1, n0, _RSes, 0, () => ResourceSelection];
3342
3483
  export var ResourceTypeList = 64 | 0;
3343
3484
  export var ResourceTypes = 64 | 0;
3344
3485
  export var RestoreAccessBackupVaultList = [
@@ -3356,6 +3497,7 @@ export var RestoreTestingSelections = [1, n0, _RTSe, 0, () => RestoreTestingSele
3356
3497
  export var ScheduledRunsPreview = [1, n0, _SRP, 0, () => ScheduledPlanExecutionMember];
3357
3498
  export var stringList = 64 | 0;
3358
3499
  export var TagKeyList = [1, n0, _TKL, 8, 0];
3500
+ export var TieringConfigurationsList = [1, n0, _TCL, 0, () => TieringConfigurationsListMember];
3359
3501
  export var VaultNames = 64 | 0;
3360
3502
  export var BackupJobChildJobsInState = 128 | 1;
3361
3503
  export var BackupOptions = 128 | 0;
@@ -3487,6 +3629,16 @@ export var CreateRestoreTestingSelection = [
3487
3629
  () => CreateRestoreTestingSelectionInput,
3488
3630
  () => CreateRestoreTestingSelectionOutput,
3489
3631
  ];
3632
+ export var CreateTieringConfiguration = [
3633
+ 9,
3634
+ n0,
3635
+ _CTC,
3636
+ {
3637
+ [_h]: ["PUT", "/tiering-configurations", 200],
3638
+ },
3639
+ () => CreateTieringConfigurationInput,
3640
+ () => CreateTieringConfigurationOutput,
3641
+ ];
3490
3642
  export var DeleteBackupPlan = [
3491
3643
  9,
3492
3644
  n0,
@@ -3597,6 +3749,16 @@ export var DeleteRestoreTestingSelection = [
3597
3749
  () => DeleteRestoreTestingSelectionInput,
3598
3750
  () => __Unit,
3599
3751
  ];
3752
+ export var DeleteTieringConfiguration = [
3753
+ 9,
3754
+ n0,
3755
+ _DTC,
3756
+ {
3757
+ [_h]: ["DELETE", "/tiering-configurations/{TieringConfigurationName}", 200],
3758
+ },
3759
+ () => DeleteTieringConfigurationInput,
3760
+ () => DeleteTieringConfigurationOutput,
3761
+ ];
3600
3762
  export var DescribeBackupJob = [
3601
3763
  9,
3602
3764
  n0,
@@ -3887,6 +4049,16 @@ export var GetSupportedResourceTypes = [
3887
4049
  () => __Unit,
3888
4050
  () => GetSupportedResourceTypesOutput,
3889
4051
  ];
4052
+ export var GetTieringConfiguration = [
4053
+ 9,
4054
+ n0,
4055
+ _GTC,
4056
+ {
4057
+ [_h]: ["GET", "/tiering-configurations/{TieringConfigurationName}", 200],
4058
+ },
4059
+ () => GetTieringConfigurationInput,
4060
+ () => GetTieringConfigurationOutput,
4061
+ ];
3890
4062
  export var ListBackupJobs = [
3891
4063
  9,
3892
4064
  n0,
@@ -4147,6 +4319,16 @@ export var ListTags = [
4147
4319
  () => ListTagsInput,
4148
4320
  () => ListTagsOutput,
4149
4321
  ];
4322
+ export var ListTieringConfigurations = [
4323
+ 9,
4324
+ n0,
4325
+ _LTC,
4326
+ {
4327
+ [_h]: ["GET", "/tiering-configurations", 200],
4328
+ },
4329
+ () => ListTieringConfigurationsInput,
4330
+ () => ListTieringConfigurationsOutput,
4331
+ ];
4150
4332
  export var PutBackupVaultAccessPolicy = [
4151
4333
  9,
4152
4334
  n0,
@@ -4361,3 +4543,13 @@ export var UpdateRestoreTestingSelection = [
4361
4543
  () => UpdateRestoreTestingSelectionInput,
4362
4544
  () => UpdateRestoreTestingSelectionOutput,
4363
4545
  ];
4546
+ export var UpdateTieringConfiguration = [
4547
+ 9,
4548
+ n0,
4549
+ _UTC,
4550
+ {
4551
+ [_h]: ["PUT", "/tiering-configurations/{TieringConfigurationName}", 200],
4552
+ },
4553
+ () => UpdateTieringConfigurationInput,
4554
+ () => UpdateTieringConfigurationOutput,
4555
+ ];