@aws-sdk/client-backup 3.933.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 +251 -0
- 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/pagination/ListTieringConfigurationsPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/schemas/schemas_0.js +178 -0
- package/dist-types/Backup.d.ts +36 -0
- package/dist-types/BackupClient.d.ts +7 -2
- package/dist-types/commands/CreateTieringConfigurationCommand.d.ts +115 -0
- package/dist-types/commands/DeleteTieringConfigurationCommand.d.ts +85 -0
- package/dist-types/commands/GetTieringConfigurationCommand.d.ts +105 -0
- package/dist-types/commands/ListTieringConfigurationsCommand.d.ts +91 -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 +333 -0
- 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 +68 -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 +5 -5
|
@@ -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";
|
|
@@ -639,6 +639,26 @@ export interface CreateRestoreTestingSelectionOutput {
|
|
|
639
639
|
RestoreTestingPlanName: string | undefined;
|
|
640
640
|
RestoreTestingSelectionName: string | undefined;
|
|
641
641
|
}
|
|
642
|
+
export interface ResourceSelection {
|
|
643
|
+
Resources: string[] | undefined;
|
|
644
|
+
TieringDownSettingsInDays: number | undefined;
|
|
645
|
+
ResourceType: string | undefined;
|
|
646
|
+
}
|
|
647
|
+
export interface TieringConfigurationInputForCreate {
|
|
648
|
+
TieringConfigurationName: string | undefined;
|
|
649
|
+
BackupVaultName: string | undefined;
|
|
650
|
+
ResourceSelection: ResourceSelection[] | undefined;
|
|
651
|
+
}
|
|
652
|
+
export interface CreateTieringConfigurationInput {
|
|
653
|
+
TieringConfiguration: TieringConfigurationInputForCreate | undefined;
|
|
654
|
+
TieringConfigurationTags?: Record<string, string> | undefined;
|
|
655
|
+
CreatorRequestId?: string | undefined;
|
|
656
|
+
}
|
|
657
|
+
export interface CreateTieringConfigurationOutput {
|
|
658
|
+
TieringConfigurationArn?: string | undefined;
|
|
659
|
+
TieringConfigurationName?: string | undefined;
|
|
660
|
+
CreationTime?: Date | undefined;
|
|
661
|
+
}
|
|
642
662
|
export interface DeleteBackupPlanInput {
|
|
643
663
|
BackupPlanId: string | undefined;
|
|
644
664
|
}
|
|
@@ -681,6 +701,10 @@ export interface DeleteRestoreTestingSelectionInput {
|
|
|
681
701
|
RestoreTestingPlanName: string | undefined;
|
|
682
702
|
RestoreTestingSelectionName: string | undefined;
|
|
683
703
|
}
|
|
704
|
+
export interface DeleteTieringConfigurationInput {
|
|
705
|
+
TieringConfigurationName: string | undefined;
|
|
706
|
+
}
|
|
707
|
+
export interface DeleteTieringConfigurationOutput {}
|
|
684
708
|
export declare class DependencyFailureException extends __BaseException {
|
|
685
709
|
readonly name: "DependencyFailureException";
|
|
686
710
|
readonly $fault: "server";
|
|
@@ -1143,6 +1167,21 @@ export interface GetRestoreTestingSelectionOutput {
|
|
|
1143
1167
|
export interface GetSupportedResourceTypesOutput {
|
|
1144
1168
|
ResourceTypes?: string[] | undefined;
|
|
1145
1169
|
}
|
|
1170
|
+
export interface GetTieringConfigurationInput {
|
|
1171
|
+
TieringConfigurationName: string | undefined;
|
|
1172
|
+
}
|
|
1173
|
+
export interface TieringConfiguration {
|
|
1174
|
+
TieringConfigurationName: string | undefined;
|
|
1175
|
+
TieringConfigurationArn?: string | undefined;
|
|
1176
|
+
BackupVaultName: string | undefined;
|
|
1177
|
+
ResourceSelection: ResourceSelection[] | undefined;
|
|
1178
|
+
CreatorRequestId?: string | undefined;
|
|
1179
|
+
CreationTime?: Date | undefined;
|
|
1180
|
+
LastUpdatedTime?: Date | undefined;
|
|
1181
|
+
}
|
|
1182
|
+
export interface GetTieringConfigurationOutput {
|
|
1183
|
+
TieringConfiguration?: TieringConfiguration | undefined;
|
|
1184
|
+
}
|
|
1146
1185
|
export interface ListBackupJobsInput {
|
|
1147
1186
|
NextToken?: string | undefined;
|
|
1148
1187
|
MaxResults?: number | undefined;
|
|
@@ -1605,6 +1644,21 @@ export interface ListTagsOutput {
|
|
|
1605
1644
|
NextToken?: string | undefined;
|
|
1606
1645
|
Tags?: Record<string, string> | undefined;
|
|
1607
1646
|
}
|
|
1647
|
+
export interface ListTieringConfigurationsInput {
|
|
1648
|
+
MaxResults?: number | undefined;
|
|
1649
|
+
NextToken?: string | undefined;
|
|
1650
|
+
}
|
|
1651
|
+
export interface TieringConfigurationsListMember {
|
|
1652
|
+
TieringConfigurationArn?: string | undefined;
|
|
1653
|
+
TieringConfigurationName?: string | undefined;
|
|
1654
|
+
BackupVaultName?: string | undefined;
|
|
1655
|
+
CreationTime?: Date | undefined;
|
|
1656
|
+
LastUpdatedTime?: Date | undefined;
|
|
1657
|
+
}
|
|
1658
|
+
export interface ListTieringConfigurationsOutput {
|
|
1659
|
+
TieringConfigurations?: TieringConfigurationsListMember[] | undefined;
|
|
1660
|
+
NextToken?: string | undefined;
|
|
1661
|
+
}
|
|
1608
1662
|
export interface PutBackupVaultAccessPolicyInput {
|
|
1609
1663
|
BackupVaultName: string | undefined;
|
|
1610
1664
|
Policy?: string | undefined;
|
|
@@ -1795,3 +1849,17 @@ export interface UpdateRestoreTestingSelectionOutput {
|
|
|
1795
1849
|
RestoreTestingSelectionName: string | undefined;
|
|
1796
1850
|
UpdateTime: Date | undefined;
|
|
1797
1851
|
}
|
|
1852
|
+
export interface TieringConfigurationInputForUpdate {
|
|
1853
|
+
ResourceSelection: ResourceSelection[] | undefined;
|
|
1854
|
+
BackupVaultName: string | undefined;
|
|
1855
|
+
}
|
|
1856
|
+
export interface UpdateTieringConfigurationInput {
|
|
1857
|
+
TieringConfigurationName: string | undefined;
|
|
1858
|
+
TieringConfiguration: TieringConfigurationInputForUpdate | undefined;
|
|
1859
|
+
}
|
|
1860
|
+
export interface UpdateTieringConfigurationOutput {
|
|
1861
|
+
TieringConfigurationArn?: string | undefined;
|
|
1862
|
+
TieringConfigurationName?: string | undefined;
|
|
1863
|
+
CreationTime?: Date | undefined;
|
|
1864
|
+
LastUpdatedTime?: Date | undefined;
|
|
1865
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListTieringConfigurationsCommandInput,
|
|
4
|
+
ListTieringConfigurationsCommandOutput,
|
|
5
|
+
} from "../commands/ListTieringConfigurationsCommand";
|
|
6
|
+
import { BackupPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListTieringConfigurations: (
|
|
8
|
+
config: BackupPaginationConfiguration,
|
|
9
|
+
input: ListTieringConfigurationsCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListTieringConfigurationsCommandOutput>;
|
|
@@ -53,6 +53,8 @@ export declare var CreateRestoreTestingPlanInput: StaticStructureSchema;
|
|
|
53
53
|
export declare var CreateRestoreTestingPlanOutput: StaticStructureSchema;
|
|
54
54
|
export declare var CreateRestoreTestingSelectionInput: StaticStructureSchema;
|
|
55
55
|
export declare var CreateRestoreTestingSelectionOutput: StaticStructureSchema;
|
|
56
|
+
export declare var CreateTieringConfigurationInput: StaticStructureSchema;
|
|
57
|
+
export declare var CreateTieringConfigurationOutput: StaticStructureSchema;
|
|
56
58
|
export declare var DateRange: StaticStructureSchema;
|
|
57
59
|
export declare var DeleteBackupPlanInput: StaticStructureSchema;
|
|
58
60
|
export declare var DeleteBackupPlanOutput: StaticStructureSchema;
|
|
@@ -66,6 +68,8 @@ export declare var DeleteRecoveryPointInput: StaticStructureSchema;
|
|
|
66
68
|
export declare var DeleteReportPlanInput: StaticStructureSchema;
|
|
67
69
|
export declare var DeleteRestoreTestingPlanInput: StaticStructureSchema;
|
|
68
70
|
export declare var DeleteRestoreTestingSelectionInput: StaticStructureSchema;
|
|
71
|
+
export declare var DeleteTieringConfigurationInput: StaticStructureSchema;
|
|
72
|
+
export declare var DeleteTieringConfigurationOutput: StaticStructureSchema;
|
|
69
73
|
export declare var DependencyFailureException: StaticErrorSchema;
|
|
70
74
|
export declare var DescribeBackupJobInput: StaticStructureSchema;
|
|
71
75
|
export declare var DescribeBackupJobOutput: StaticStructureSchema;
|
|
@@ -123,6 +127,8 @@ export declare var GetRestoreTestingPlanOutput: StaticStructureSchema;
|
|
|
123
127
|
export declare var GetRestoreTestingSelectionInput: StaticStructureSchema;
|
|
124
128
|
export declare var GetRestoreTestingSelectionOutput: StaticStructureSchema;
|
|
125
129
|
export declare var GetSupportedResourceTypesOutput: StaticStructureSchema;
|
|
130
|
+
export declare var GetTieringConfigurationInput: StaticStructureSchema;
|
|
131
|
+
export declare var GetTieringConfigurationOutput: StaticStructureSchema;
|
|
126
132
|
export declare var IndexAction: StaticStructureSchema;
|
|
127
133
|
export declare var IndexedRecoveryPoint: StaticStructureSchema;
|
|
128
134
|
export declare var InvalidParameterValueException: StaticErrorSchema;
|
|
@@ -186,6 +192,8 @@ export declare var ListRestoreTestingSelectionsInput: StaticStructureSchema;
|
|
|
186
192
|
export declare var ListRestoreTestingSelectionsOutput: StaticStructureSchema;
|
|
187
193
|
export declare var ListTagsInput: StaticStructureSchema;
|
|
188
194
|
export declare var ListTagsOutput: StaticStructureSchema;
|
|
195
|
+
export declare var ListTieringConfigurationsInput: StaticStructureSchema;
|
|
196
|
+
export declare var ListTieringConfigurationsOutput: StaticStructureSchema;
|
|
189
197
|
export declare var MissingParameterValueException: StaticErrorSchema;
|
|
190
198
|
export declare var ProtectedResource: StaticStructureSchema;
|
|
191
199
|
export declare var ProtectedResourceConditions: StaticStructureSchema;
|
|
@@ -204,6 +212,7 @@ export declare var ReportJob: StaticStructureSchema;
|
|
|
204
212
|
export declare var ReportPlan: StaticStructureSchema;
|
|
205
213
|
export declare var ReportSetting: StaticStructureSchema;
|
|
206
214
|
export declare var ResourceNotFoundException: StaticErrorSchema;
|
|
215
|
+
export declare var ResourceSelection: StaticStructureSchema;
|
|
207
216
|
export declare var RestoreAccessBackupVaultListMember: StaticStructureSchema;
|
|
208
217
|
export declare var RestoreJobCreator: StaticStructureSchema;
|
|
209
218
|
export declare var RestoreJobsListMember: StaticStructureSchema;
|
|
@@ -230,6 +239,10 @@ export declare var StartRestoreJobInput: StaticStructureSchema;
|
|
|
230
239
|
export declare var StartRestoreJobOutput: StaticStructureSchema;
|
|
231
240
|
export declare var StopBackupJobInput: StaticStructureSchema;
|
|
232
241
|
export declare var TagResourceInput: StaticStructureSchema;
|
|
242
|
+
export declare var TieringConfiguration: StaticStructureSchema;
|
|
243
|
+
export declare var TieringConfigurationInputForCreate: StaticStructureSchema;
|
|
244
|
+
export declare var TieringConfigurationInputForUpdate: StaticStructureSchema;
|
|
245
|
+
export declare var TieringConfigurationsListMember: StaticStructureSchema;
|
|
233
246
|
export declare var UntagResourceInput: StaticStructureSchema;
|
|
234
247
|
export declare var UpdateBackupPlanInput: StaticStructureSchema;
|
|
235
248
|
export declare var UpdateBackupPlanOutput: StaticStructureSchema;
|
|
@@ -247,6 +260,8 @@ export declare var UpdateRestoreTestingPlanInput: StaticStructureSchema;
|
|
|
247
260
|
export declare var UpdateRestoreTestingPlanOutput: StaticStructureSchema;
|
|
248
261
|
export declare var UpdateRestoreTestingSelectionInput: StaticStructureSchema;
|
|
249
262
|
export declare var UpdateRestoreTestingSelectionOutput: StaticStructureSchema;
|
|
263
|
+
export declare var UpdateTieringConfigurationInput: StaticStructureSchema;
|
|
264
|
+
export declare var UpdateTieringConfigurationOutput: StaticStructureSchema;
|
|
250
265
|
export declare var __Unit: "unit";
|
|
251
266
|
export declare var BackupServiceException: StaticErrorSchema;
|
|
252
267
|
export declare var AdvancedBackupSettings: StaticListSchema;
|
|
@@ -282,6 +297,7 @@ export declare var ReportJobList: StaticListSchema;
|
|
|
282
297
|
export declare var ReportPlanList: StaticListSchema;
|
|
283
298
|
export declare var ResourceArns: number;
|
|
284
299
|
export declare var ResourceIdentifiers: number;
|
|
300
|
+
export declare var ResourceSelections: StaticListSchema;
|
|
285
301
|
export declare var ResourceTypeList: number;
|
|
286
302
|
export declare var ResourceTypes: number;
|
|
287
303
|
export declare var RestoreAccessBackupVaultList: StaticListSchema;
|
|
@@ -293,6 +309,7 @@ export declare var RestoreTestingSelections: StaticListSchema;
|
|
|
293
309
|
export declare var ScheduledRunsPreview: StaticListSchema;
|
|
294
310
|
export declare var stringList: number;
|
|
295
311
|
export declare var TagKeyList: StaticListSchema;
|
|
312
|
+
export declare var TieringConfigurationsList: StaticListSchema;
|
|
296
313
|
export declare var VaultNames: number;
|
|
297
314
|
export declare var BackupJobChildJobsInState: number;
|
|
298
315
|
export declare var BackupOptions: number;
|
|
@@ -316,6 +333,7 @@ export declare var CreateReportPlan: StaticOperationSchema;
|
|
|
316
333
|
export declare var CreateRestoreAccessBackupVault: StaticOperationSchema;
|
|
317
334
|
export declare var CreateRestoreTestingPlan: StaticOperationSchema;
|
|
318
335
|
export declare var CreateRestoreTestingSelection: StaticOperationSchema;
|
|
336
|
+
export declare var CreateTieringConfiguration: StaticOperationSchema;
|
|
319
337
|
export declare var DeleteBackupPlan: StaticOperationSchema;
|
|
320
338
|
export declare var DeleteBackupSelection: StaticOperationSchema;
|
|
321
339
|
export declare var DeleteBackupVault: StaticOperationSchema;
|
|
@@ -327,6 +345,7 @@ export declare var DeleteRecoveryPoint: StaticOperationSchema;
|
|
|
327
345
|
export declare var DeleteReportPlan: StaticOperationSchema;
|
|
328
346
|
export declare var DeleteRestoreTestingPlan: StaticOperationSchema;
|
|
329
347
|
export declare var DeleteRestoreTestingSelection: StaticOperationSchema;
|
|
348
|
+
export declare var DeleteTieringConfiguration: StaticOperationSchema;
|
|
330
349
|
export declare var DescribeBackupJob: StaticOperationSchema;
|
|
331
350
|
export declare var DescribeBackupVault: StaticOperationSchema;
|
|
332
351
|
export declare var DescribeCopyJob: StaticOperationSchema;
|
|
@@ -356,6 +375,7 @@ export declare var GetRestoreTestingInferredMetadata: StaticOperationSchema;
|
|
|
356
375
|
export declare var GetRestoreTestingPlan: StaticOperationSchema;
|
|
357
376
|
export declare var GetRestoreTestingSelection: StaticOperationSchema;
|
|
358
377
|
export declare var GetSupportedResourceTypes: StaticOperationSchema;
|
|
378
|
+
export declare var GetTieringConfiguration: StaticOperationSchema;
|
|
359
379
|
export declare var ListBackupJobs: StaticOperationSchema;
|
|
360
380
|
export declare var ListBackupJobSummaries: StaticOperationSchema;
|
|
361
381
|
export declare var ListBackupPlans: StaticOperationSchema;
|
|
@@ -382,6 +402,7 @@ export declare var ListRestoreJobSummaries: StaticOperationSchema;
|
|
|
382
402
|
export declare var ListRestoreTestingPlans: StaticOperationSchema;
|
|
383
403
|
export declare var ListRestoreTestingSelections: StaticOperationSchema;
|
|
384
404
|
export declare var ListTags: StaticOperationSchema;
|
|
405
|
+
export declare var ListTieringConfigurations: StaticOperationSchema;
|
|
385
406
|
export declare var PutBackupVaultAccessPolicy: StaticOperationSchema;
|
|
386
407
|
export declare var PutBackupVaultLockConfiguration: StaticOperationSchema;
|
|
387
408
|
export declare var PutBackupVaultNotifications: StaticOperationSchema;
|
|
@@ -403,3 +424,4 @@ export declare var UpdateRegionSettings: StaticOperationSchema;
|
|
|
403
424
|
export declare var UpdateReportPlan: StaticOperationSchema;
|
|
404
425
|
export declare var UpdateRestoreTestingPlan: StaticOperationSchema;
|
|
405
426
|
export declare var UpdateRestoreTestingSelection: StaticOperationSchema;
|
|
427
|
+
export declare var UpdateTieringConfiguration: StaticOperationSchema;
|