@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
|
@@ -48,6 +48,10 @@ import {
|
|
|
48
48
|
CreateRestoreTestingSelectionCommandInput,
|
|
49
49
|
CreateRestoreTestingSelectionCommandOutput,
|
|
50
50
|
} from "./commands/CreateRestoreTestingSelectionCommand";
|
|
51
|
+
import {
|
|
52
|
+
CreateTieringConfigurationCommandInput,
|
|
53
|
+
CreateTieringConfigurationCommandOutput,
|
|
54
|
+
} from "./commands/CreateTieringConfigurationCommand";
|
|
51
55
|
import {
|
|
52
56
|
DeleteBackupPlanCommandInput,
|
|
53
57
|
DeleteBackupPlanCommandOutput,
|
|
@@ -92,6 +96,10 @@ import {
|
|
|
92
96
|
DeleteRestoreTestingSelectionCommandInput,
|
|
93
97
|
DeleteRestoreTestingSelectionCommandOutput,
|
|
94
98
|
} from "./commands/DeleteRestoreTestingSelectionCommand";
|
|
99
|
+
import {
|
|
100
|
+
DeleteTieringConfigurationCommandInput,
|
|
101
|
+
DeleteTieringConfigurationCommandOutput,
|
|
102
|
+
} from "./commands/DeleteTieringConfigurationCommand";
|
|
95
103
|
import {
|
|
96
104
|
DescribeBackupJobCommandInput,
|
|
97
105
|
DescribeBackupJobCommandOutput,
|
|
@@ -208,6 +216,10 @@ import {
|
|
|
208
216
|
GetSupportedResourceTypesCommandInput,
|
|
209
217
|
GetSupportedResourceTypesCommandOutput,
|
|
210
218
|
} from "./commands/GetSupportedResourceTypesCommand";
|
|
219
|
+
import {
|
|
220
|
+
GetTieringConfigurationCommandInput,
|
|
221
|
+
GetTieringConfigurationCommandOutput,
|
|
222
|
+
} from "./commands/GetTieringConfigurationCommand";
|
|
211
223
|
import {
|
|
212
224
|
ListBackupJobsCommandInput,
|
|
213
225
|
ListBackupJobsCommandOutput,
|
|
@@ -312,6 +324,10 @@ import {
|
|
|
312
324
|
ListTagsCommandInput,
|
|
313
325
|
ListTagsCommandOutput,
|
|
314
326
|
} from "./commands/ListTagsCommand";
|
|
327
|
+
import {
|
|
328
|
+
ListTieringConfigurationsCommandInput,
|
|
329
|
+
ListTieringConfigurationsCommandOutput,
|
|
330
|
+
} from "./commands/ListTieringConfigurationsCommand";
|
|
315
331
|
import {
|
|
316
332
|
PutBackupVaultAccessPolicyCommandInput,
|
|
317
333
|
PutBackupVaultAccessPolicyCommandOutput,
|
|
@@ -396,6 +412,10 @@ import {
|
|
|
396
412
|
UpdateRestoreTestingSelectionCommandInput,
|
|
397
413
|
UpdateRestoreTestingSelectionCommandOutput,
|
|
398
414
|
} from "./commands/UpdateRestoreTestingSelectionCommand";
|
|
415
|
+
import {
|
|
416
|
+
UpdateTieringConfigurationCommandInput,
|
|
417
|
+
UpdateTieringConfigurationCommandOutput,
|
|
418
|
+
} from "./commands/UpdateTieringConfigurationCommand";
|
|
399
419
|
export interface Backup {
|
|
400
420
|
associateBackupVaultMpaApprovalTeam(
|
|
401
421
|
args: AssociateBackupVaultMpaApprovalTeamCommandInput,
|
|
@@ -565,6 +585,19 @@ export interface Backup {
|
|
|
565
585
|
options: __HttpHandlerOptions,
|
|
566
586
|
cb: (err: any, data?: CreateRestoreTestingSelectionCommandOutput) => void
|
|
567
587
|
): void;
|
|
588
|
+
createTieringConfiguration(
|
|
589
|
+
args: CreateTieringConfigurationCommandInput,
|
|
590
|
+
options?: __HttpHandlerOptions
|
|
591
|
+
): Promise<CreateTieringConfigurationCommandOutput>;
|
|
592
|
+
createTieringConfiguration(
|
|
593
|
+
args: CreateTieringConfigurationCommandInput,
|
|
594
|
+
cb: (err: any, data?: CreateTieringConfigurationCommandOutput) => void
|
|
595
|
+
): void;
|
|
596
|
+
createTieringConfiguration(
|
|
597
|
+
args: CreateTieringConfigurationCommandInput,
|
|
598
|
+
options: __HttpHandlerOptions,
|
|
599
|
+
cb: (err: any, data?: CreateTieringConfigurationCommandOutput) => void
|
|
600
|
+
): void;
|
|
568
601
|
deleteBackupPlan(
|
|
569
602
|
args: DeleteBackupPlanCommandInput,
|
|
570
603
|
options?: __HttpHandlerOptions
|
|
@@ -714,6 +747,19 @@ export interface Backup {
|
|
|
714
747
|
options: __HttpHandlerOptions,
|
|
715
748
|
cb: (err: any, data?: DeleteRestoreTestingSelectionCommandOutput) => void
|
|
716
749
|
): void;
|
|
750
|
+
deleteTieringConfiguration(
|
|
751
|
+
args: DeleteTieringConfigurationCommandInput,
|
|
752
|
+
options?: __HttpHandlerOptions
|
|
753
|
+
): Promise<DeleteTieringConfigurationCommandOutput>;
|
|
754
|
+
deleteTieringConfiguration(
|
|
755
|
+
args: DeleteTieringConfigurationCommandInput,
|
|
756
|
+
cb: (err: any, data?: DeleteTieringConfigurationCommandOutput) => void
|
|
757
|
+
): void;
|
|
758
|
+
deleteTieringConfiguration(
|
|
759
|
+
args: DeleteTieringConfigurationCommandInput,
|
|
760
|
+
options: __HttpHandlerOptions,
|
|
761
|
+
cb: (err: any, data?: DeleteTieringConfigurationCommandOutput) => void
|
|
762
|
+
): void;
|
|
717
763
|
describeBackupJob(
|
|
718
764
|
args: DescribeBackupJobCommandInput,
|
|
719
765
|
options?: __HttpHandlerOptions
|
|
@@ -1112,6 +1158,19 @@ export interface Backup {
|
|
|
1112
1158
|
options: __HttpHandlerOptions,
|
|
1113
1159
|
cb: (err: any, data?: GetSupportedResourceTypesCommandOutput) => void
|
|
1114
1160
|
): void;
|
|
1161
|
+
getTieringConfiguration(
|
|
1162
|
+
args: GetTieringConfigurationCommandInput,
|
|
1163
|
+
options?: __HttpHandlerOptions
|
|
1164
|
+
): Promise<GetTieringConfigurationCommandOutput>;
|
|
1165
|
+
getTieringConfiguration(
|
|
1166
|
+
args: GetTieringConfigurationCommandInput,
|
|
1167
|
+
cb: (err: any, data?: GetTieringConfigurationCommandOutput) => void
|
|
1168
|
+
): void;
|
|
1169
|
+
getTieringConfiguration(
|
|
1170
|
+
args: GetTieringConfigurationCommandInput,
|
|
1171
|
+
options: __HttpHandlerOptions,
|
|
1172
|
+
cb: (err: any, data?: GetTieringConfigurationCommandOutput) => void
|
|
1173
|
+
): void;
|
|
1115
1174
|
listBackupJobs(): Promise<ListBackupJobsCommandOutput>;
|
|
1116
1175
|
listBackupJobs(
|
|
1117
1176
|
args: ListBackupJobsCommandInput,
|
|
@@ -1478,6 +1537,20 @@ export interface Backup {
|
|
|
1478
1537
|
options: __HttpHandlerOptions,
|
|
1479
1538
|
cb: (err: any, data?: ListTagsCommandOutput) => void
|
|
1480
1539
|
): void;
|
|
1540
|
+
listTieringConfigurations(): Promise<ListTieringConfigurationsCommandOutput>;
|
|
1541
|
+
listTieringConfigurations(
|
|
1542
|
+
args: ListTieringConfigurationsCommandInput,
|
|
1543
|
+
options?: __HttpHandlerOptions
|
|
1544
|
+
): Promise<ListTieringConfigurationsCommandOutput>;
|
|
1545
|
+
listTieringConfigurations(
|
|
1546
|
+
args: ListTieringConfigurationsCommandInput,
|
|
1547
|
+
cb: (err: any, data?: ListTieringConfigurationsCommandOutput) => void
|
|
1548
|
+
): void;
|
|
1549
|
+
listTieringConfigurations(
|
|
1550
|
+
args: ListTieringConfigurationsCommandInput,
|
|
1551
|
+
options: __HttpHandlerOptions,
|
|
1552
|
+
cb: (err: any, data?: ListTieringConfigurationsCommandOutput) => void
|
|
1553
|
+
): void;
|
|
1481
1554
|
putBackupVaultAccessPolicy(
|
|
1482
1555
|
args: PutBackupVaultAccessPolicyCommandInput,
|
|
1483
1556
|
options?: __HttpHandlerOptions
|
|
@@ -1753,5 +1826,18 @@ export interface Backup {
|
|
|
1753
1826
|
options: __HttpHandlerOptions,
|
|
1754
1827
|
cb: (err: any, data?: UpdateRestoreTestingSelectionCommandOutput) => void
|
|
1755
1828
|
): void;
|
|
1829
|
+
updateTieringConfiguration(
|
|
1830
|
+
args: UpdateTieringConfigurationCommandInput,
|
|
1831
|
+
options?: __HttpHandlerOptions
|
|
1832
|
+
): Promise<UpdateTieringConfigurationCommandOutput>;
|
|
1833
|
+
updateTieringConfiguration(
|
|
1834
|
+
args: UpdateTieringConfigurationCommandInput,
|
|
1835
|
+
cb: (err: any, data?: UpdateTieringConfigurationCommandOutput) => void
|
|
1836
|
+
): void;
|
|
1837
|
+
updateTieringConfiguration(
|
|
1838
|
+
args: UpdateTieringConfigurationCommandInput,
|
|
1839
|
+
options: __HttpHandlerOptions,
|
|
1840
|
+
cb: (err: any, data?: UpdateTieringConfigurationCommandOutput) => void
|
|
1841
|
+
): void;
|
|
1756
1842
|
}
|
|
1757
1843
|
export declare class Backup extends BackupClient implements Backup {}
|
|
@@ -96,6 +96,10 @@ import {
|
|
|
96
96
|
CreateRestoreTestingSelectionCommandInput,
|
|
97
97
|
CreateRestoreTestingSelectionCommandOutput,
|
|
98
98
|
} from "./commands/CreateRestoreTestingSelectionCommand";
|
|
99
|
+
import {
|
|
100
|
+
CreateTieringConfigurationCommandInput,
|
|
101
|
+
CreateTieringConfigurationCommandOutput,
|
|
102
|
+
} from "./commands/CreateTieringConfigurationCommand";
|
|
99
103
|
import {
|
|
100
104
|
DeleteBackupPlanCommandInput,
|
|
101
105
|
DeleteBackupPlanCommandOutput,
|
|
@@ -140,6 +144,10 @@ import {
|
|
|
140
144
|
DeleteRestoreTestingSelectionCommandInput,
|
|
141
145
|
DeleteRestoreTestingSelectionCommandOutput,
|
|
142
146
|
} from "./commands/DeleteRestoreTestingSelectionCommand";
|
|
147
|
+
import {
|
|
148
|
+
DeleteTieringConfigurationCommandInput,
|
|
149
|
+
DeleteTieringConfigurationCommandOutput,
|
|
150
|
+
} from "./commands/DeleteTieringConfigurationCommand";
|
|
143
151
|
import {
|
|
144
152
|
DescribeBackupJobCommandInput,
|
|
145
153
|
DescribeBackupJobCommandOutput,
|
|
@@ -256,6 +264,10 @@ import {
|
|
|
256
264
|
GetSupportedResourceTypesCommandInput,
|
|
257
265
|
GetSupportedResourceTypesCommandOutput,
|
|
258
266
|
} from "./commands/GetSupportedResourceTypesCommand";
|
|
267
|
+
import {
|
|
268
|
+
GetTieringConfigurationCommandInput,
|
|
269
|
+
GetTieringConfigurationCommandOutput,
|
|
270
|
+
} from "./commands/GetTieringConfigurationCommand";
|
|
259
271
|
import {
|
|
260
272
|
ListBackupJobsCommandInput,
|
|
261
273
|
ListBackupJobsCommandOutput,
|
|
@@ -360,6 +372,10 @@ import {
|
|
|
360
372
|
ListTagsCommandInput,
|
|
361
373
|
ListTagsCommandOutput,
|
|
362
374
|
} from "./commands/ListTagsCommand";
|
|
375
|
+
import {
|
|
376
|
+
ListTieringConfigurationsCommandInput,
|
|
377
|
+
ListTieringConfigurationsCommandOutput,
|
|
378
|
+
} from "./commands/ListTieringConfigurationsCommand";
|
|
363
379
|
import {
|
|
364
380
|
PutBackupVaultAccessPolicyCommandInput,
|
|
365
381
|
PutBackupVaultAccessPolicyCommandOutput,
|
|
@@ -444,6 +460,10 @@ import {
|
|
|
444
460
|
UpdateRestoreTestingSelectionCommandInput,
|
|
445
461
|
UpdateRestoreTestingSelectionCommandOutput,
|
|
446
462
|
} from "./commands/UpdateRestoreTestingSelectionCommand";
|
|
463
|
+
import {
|
|
464
|
+
UpdateTieringConfigurationCommandInput,
|
|
465
|
+
UpdateTieringConfigurationCommandOutput,
|
|
466
|
+
} from "./commands/UpdateTieringConfigurationCommand";
|
|
447
467
|
import {
|
|
448
468
|
ClientInputEndpointParameters,
|
|
449
469
|
ClientResolvedEndpointParameters,
|
|
@@ -464,6 +484,7 @@ export type ServiceInputTypes =
|
|
|
464
484
|
| CreateRestoreAccessBackupVaultCommandInput
|
|
465
485
|
| CreateRestoreTestingPlanCommandInput
|
|
466
486
|
| CreateRestoreTestingSelectionCommandInput
|
|
487
|
+
| CreateTieringConfigurationCommandInput
|
|
467
488
|
| DeleteBackupPlanCommandInput
|
|
468
489
|
| DeleteBackupSelectionCommandInput
|
|
469
490
|
| DeleteBackupVaultAccessPolicyCommandInput
|
|
@@ -475,6 +496,7 @@ export type ServiceInputTypes =
|
|
|
475
496
|
| DeleteReportPlanCommandInput
|
|
476
497
|
| DeleteRestoreTestingPlanCommandInput
|
|
477
498
|
| DeleteRestoreTestingSelectionCommandInput
|
|
499
|
+
| DeleteTieringConfigurationCommandInput
|
|
478
500
|
| DescribeBackupJobCommandInput
|
|
479
501
|
| DescribeBackupVaultCommandInput
|
|
480
502
|
| DescribeCopyJobCommandInput
|
|
@@ -504,6 +526,7 @@ export type ServiceInputTypes =
|
|
|
504
526
|
| GetRestoreTestingPlanCommandInput
|
|
505
527
|
| GetRestoreTestingSelectionCommandInput
|
|
506
528
|
| GetSupportedResourceTypesCommandInput
|
|
529
|
+
| GetTieringConfigurationCommandInput
|
|
507
530
|
| ListBackupJobSummariesCommandInput
|
|
508
531
|
| ListBackupJobsCommandInput
|
|
509
532
|
| ListBackupPlanTemplatesCommandInput
|
|
@@ -530,6 +553,7 @@ export type ServiceInputTypes =
|
|
|
530
553
|
| ListRestoreTestingPlansCommandInput
|
|
531
554
|
| ListRestoreTestingSelectionsCommandInput
|
|
532
555
|
| ListTagsCommandInput
|
|
556
|
+
| ListTieringConfigurationsCommandInput
|
|
533
557
|
| PutBackupVaultAccessPolicyCommandInput
|
|
534
558
|
| PutBackupVaultLockConfigurationCommandInput
|
|
535
559
|
| PutBackupVaultNotificationsCommandInput
|
|
@@ -550,7 +574,8 @@ export type ServiceInputTypes =
|
|
|
550
574
|
| UpdateRegionSettingsCommandInput
|
|
551
575
|
| UpdateReportPlanCommandInput
|
|
552
576
|
| UpdateRestoreTestingPlanCommandInput
|
|
553
|
-
| UpdateRestoreTestingSelectionCommandInput
|
|
577
|
+
| UpdateRestoreTestingSelectionCommandInput
|
|
578
|
+
| UpdateTieringConfigurationCommandInput;
|
|
554
579
|
export type ServiceOutputTypes =
|
|
555
580
|
| AssociateBackupVaultMpaApprovalTeamCommandOutput
|
|
556
581
|
| CancelLegalHoldCommandOutput
|
|
@@ -564,6 +589,7 @@ export type ServiceOutputTypes =
|
|
|
564
589
|
| CreateRestoreAccessBackupVaultCommandOutput
|
|
565
590
|
| CreateRestoreTestingPlanCommandOutput
|
|
566
591
|
| CreateRestoreTestingSelectionCommandOutput
|
|
592
|
+
| CreateTieringConfigurationCommandOutput
|
|
567
593
|
| DeleteBackupPlanCommandOutput
|
|
568
594
|
| DeleteBackupSelectionCommandOutput
|
|
569
595
|
| DeleteBackupVaultAccessPolicyCommandOutput
|
|
@@ -575,6 +601,7 @@ export type ServiceOutputTypes =
|
|
|
575
601
|
| DeleteReportPlanCommandOutput
|
|
576
602
|
| DeleteRestoreTestingPlanCommandOutput
|
|
577
603
|
| DeleteRestoreTestingSelectionCommandOutput
|
|
604
|
+
| DeleteTieringConfigurationCommandOutput
|
|
578
605
|
| DescribeBackupJobCommandOutput
|
|
579
606
|
| DescribeBackupVaultCommandOutput
|
|
580
607
|
| DescribeCopyJobCommandOutput
|
|
@@ -604,6 +631,7 @@ export type ServiceOutputTypes =
|
|
|
604
631
|
| GetRestoreTestingPlanCommandOutput
|
|
605
632
|
| GetRestoreTestingSelectionCommandOutput
|
|
606
633
|
| GetSupportedResourceTypesCommandOutput
|
|
634
|
+
| GetTieringConfigurationCommandOutput
|
|
607
635
|
| ListBackupJobSummariesCommandOutput
|
|
608
636
|
| ListBackupJobsCommandOutput
|
|
609
637
|
| ListBackupPlanTemplatesCommandOutput
|
|
@@ -630,6 +658,7 @@ export type ServiceOutputTypes =
|
|
|
630
658
|
| ListRestoreTestingPlansCommandOutput
|
|
631
659
|
| ListRestoreTestingSelectionsCommandOutput
|
|
632
660
|
| ListTagsCommandOutput
|
|
661
|
+
| ListTieringConfigurationsCommandOutput
|
|
633
662
|
| PutBackupVaultAccessPolicyCommandOutput
|
|
634
663
|
| PutBackupVaultLockConfigurationCommandOutput
|
|
635
664
|
| PutBackupVaultNotificationsCommandOutput
|
|
@@ -650,7 +679,8 @@ export type ServiceOutputTypes =
|
|
|
650
679
|
| UpdateRegionSettingsCommandOutput
|
|
651
680
|
| UpdateReportPlanCommandOutput
|
|
652
681
|
| UpdateRestoreTestingPlanCommandOutput
|
|
653
|
-
| UpdateRestoreTestingSelectionCommandOutput
|
|
682
|
+
| UpdateRestoreTestingSelectionCommandOutput
|
|
683
|
+
| UpdateTieringConfigurationCommandOutput;
|
|
654
684
|
export interface ClientDefaults
|
|
655
685
|
extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
656
686
|
requestHandler?: __HttpHandlerUserInput;
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
BackupClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../BackupClient";
|
|
8
|
+
import {
|
|
9
|
+
CreateTieringConfigurationInput,
|
|
10
|
+
CreateTieringConfigurationOutput,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface CreateTieringConfigurationCommandInput
|
|
15
|
+
extends CreateTieringConfigurationInput {}
|
|
16
|
+
export interface CreateTieringConfigurationCommandOutput
|
|
17
|
+
extends CreateTieringConfigurationOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const CreateTieringConfigurationCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: CreateTieringConfigurationCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
CreateTieringConfigurationCommandInput,
|
|
24
|
+
CreateTieringConfigurationCommandOutput,
|
|
25
|
+
BackupClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: CreateTieringConfigurationCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
CreateTieringConfigurationCommandInput,
|
|
33
|
+
CreateTieringConfigurationCommandOutput,
|
|
34
|
+
BackupClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class CreateTieringConfigurationCommand extends CreateTieringConfigurationCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: CreateTieringConfigurationInput;
|
|
44
|
+
output: CreateTieringConfigurationOutput;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: CreateTieringConfigurationCommandInput;
|
|
48
|
+
output: CreateTieringConfigurationCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
BackupClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../BackupClient";
|
|
8
|
+
import {
|
|
9
|
+
DeleteTieringConfigurationInput,
|
|
10
|
+
DeleteTieringConfigurationOutput,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface DeleteTieringConfigurationCommandInput
|
|
15
|
+
extends DeleteTieringConfigurationInput {}
|
|
16
|
+
export interface DeleteTieringConfigurationCommandOutput
|
|
17
|
+
extends DeleteTieringConfigurationOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const DeleteTieringConfigurationCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: DeleteTieringConfigurationCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
DeleteTieringConfigurationCommandInput,
|
|
24
|
+
DeleteTieringConfigurationCommandOutput,
|
|
25
|
+
BackupClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: DeleteTieringConfigurationCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
DeleteTieringConfigurationCommandInput,
|
|
33
|
+
DeleteTieringConfigurationCommandOutput,
|
|
34
|
+
BackupClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class DeleteTieringConfigurationCommand extends DeleteTieringConfigurationCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: DeleteTieringConfigurationInput;
|
|
44
|
+
output: {};
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: DeleteTieringConfigurationCommandInput;
|
|
48
|
+
output: DeleteTieringConfigurationCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
BackupClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../BackupClient";
|
|
8
|
+
import {
|
|
9
|
+
GetTieringConfigurationInput,
|
|
10
|
+
GetTieringConfigurationOutput,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface GetTieringConfigurationCommandInput
|
|
15
|
+
extends GetTieringConfigurationInput {}
|
|
16
|
+
export interface GetTieringConfigurationCommandOutput
|
|
17
|
+
extends GetTieringConfigurationOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const GetTieringConfigurationCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: GetTieringConfigurationCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
GetTieringConfigurationCommandInput,
|
|
24
|
+
GetTieringConfigurationCommandOutput,
|
|
25
|
+
BackupClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: GetTieringConfigurationCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
GetTieringConfigurationCommandInput,
|
|
33
|
+
GetTieringConfigurationCommandOutput,
|
|
34
|
+
BackupClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class GetTieringConfigurationCommand extends GetTieringConfigurationCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: GetTieringConfigurationInput;
|
|
44
|
+
output: GetTieringConfigurationOutput;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: GetTieringConfigurationCommandInput;
|
|
48
|
+
output: GetTieringConfigurationCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
BackupClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../BackupClient";
|
|
8
|
+
import {
|
|
9
|
+
ListTieringConfigurationsInput,
|
|
10
|
+
ListTieringConfigurationsOutput,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ListTieringConfigurationsCommandInput
|
|
15
|
+
extends ListTieringConfigurationsInput {}
|
|
16
|
+
export interface ListTieringConfigurationsCommandOutput
|
|
17
|
+
extends ListTieringConfigurationsOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const ListTieringConfigurationsCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: ListTieringConfigurationsCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
ListTieringConfigurationsCommandInput,
|
|
24
|
+
ListTieringConfigurationsCommandOutput,
|
|
25
|
+
BackupClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
...[input]: [] | [ListTieringConfigurationsCommandInput]
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
ListTieringConfigurationsCommandInput,
|
|
33
|
+
ListTieringConfigurationsCommandOutput,
|
|
34
|
+
BackupClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class ListTieringConfigurationsCommand extends ListTieringConfigurationsCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: ListTieringConfigurationsInput;
|
|
44
|
+
output: ListTieringConfigurationsOutput;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: ListTieringConfigurationsCommandInput;
|
|
48
|
+
output: ListTieringConfigurationsCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
BackupClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../BackupClient";
|
|
8
|
+
import {
|
|
9
|
+
UpdateTieringConfigurationInput,
|
|
10
|
+
UpdateTieringConfigurationOutput,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface UpdateTieringConfigurationCommandInput
|
|
15
|
+
extends UpdateTieringConfigurationInput {}
|
|
16
|
+
export interface UpdateTieringConfigurationCommandOutput
|
|
17
|
+
extends UpdateTieringConfigurationOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const UpdateTieringConfigurationCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: UpdateTieringConfigurationCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
UpdateTieringConfigurationCommandInput,
|
|
24
|
+
UpdateTieringConfigurationCommandOutput,
|
|
25
|
+
BackupClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: UpdateTieringConfigurationCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
UpdateTieringConfigurationCommandInput,
|
|
33
|
+
UpdateTieringConfigurationCommandOutput,
|
|
34
|
+
BackupClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class UpdateTieringConfigurationCommand extends UpdateTieringConfigurationCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: UpdateTieringConfigurationInput;
|
|
44
|
+
output: UpdateTieringConfigurationOutput;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: UpdateTieringConfigurationCommandInput;
|
|
48
|
+
output: UpdateTieringConfigurationCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -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";
|