@aws-sdk/client-backup 3.933.0 → 3.935.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 +72 -0
- package/dist-cjs/index.js +854 -197
- package/dist-es/Backup.js +18 -0
- package/dist-es/commands/CreateTieringConfigurationCommand.js +16 -0
- package/dist-es/commands/DeleteTieringConfigurationCommand.js +16 -0
- package/dist-es/commands/DescribeScanJobCommand.js +16 -0
- package/dist-es/commands/GetTieringConfigurationCommand.js +16 -0
- package/dist-es/commands/ListScanJobSummariesCommand.js +16 -0
- package/dist-es/commands/ListScanJobsCommand.js +16 -0
- package/dist-es/commands/ListTieringConfigurationsCommand.js +16 -0
- package/dist-es/commands/StartScanJobCommand.js +16 -0
- package/dist-es/commands/UpdateTieringConfigurationCommand.js +16 -0
- package/dist-es/commands/index.js +9 -0
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +215 -0
- package/dist-es/models/errors.js +205 -0
- package/dist-es/models/models_0.js +1 -377
- package/dist-es/pagination/ListScanJobSummariesPaginator.js +4 -0
- package/dist-es/pagination/ListScanJobsPaginator.js +4 -0
- package/dist-es/pagination/ListTieringConfigurationsPaginator.js +4 -0
- package/dist-es/pagination/index.js +3 -0
- package/dist-es/schemas/schemas_0.js +490 -19
- package/dist-types/Backup.d.ts +66 -0
- package/dist-types/BackupClient.d.ts +11 -2
- package/dist-types/commands/CreateBackupPlanCommand.d.ts +15 -0
- package/dist-types/commands/CreateTieringConfigurationCommand.d.ts +115 -0
- package/dist-types/commands/DeleteTieringConfigurationCommand.d.ts +85 -0
- package/dist-types/commands/DescribeRecoveryPointCommand.d.ts +10 -0
- package/dist-types/commands/DescribeScanJobCommand.d.ts +113 -0
- package/dist-types/commands/GetBackupPlanCommand.d.ts +15 -0
- package/dist-types/commands/GetBackupPlanFromJSONCommand.d.ts +15 -0
- package/dist-types/commands/GetBackupPlanFromTemplateCommand.d.ts +15 -0
- package/dist-types/commands/GetTieringConfigurationCommand.d.ts +105 -0
- package/dist-types/commands/ListRecoveryPointsByBackupVaultCommand.d.ts +7 -0
- package/dist-types/commands/ListRecoveryPointsByResourceCommand.d.ts +7 -0
- package/dist-types/commands/ListScanJobSummariesCommand.d.ts +102 -0
- package/dist-types/commands/ListScanJobsCommand.d.ts +123 -0
- package/dist-types/commands/ListTieringConfigurationsCommand.d.ts +91 -0
- package/dist-types/commands/StartScanJobCommand.d.ts +103 -0
- package/dist-types/commands/UpdateBackupPlanCommand.d.ts +24 -0
- package/dist-types/commands/UpdateTieringConfigurationCommand.d.ts +134 -0
- package/dist-types/commands/index.d.ts +9 -0
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +479 -0
- package/dist-types/models/errors.d.ts +257 -0
- package/dist-types/models/models_0.d.ts +1231 -723
- package/dist-types/pagination/ListScanJobSummariesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListScanJobsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListTieringConfigurationsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +3 -0
- package/dist-types/schemas/schemas_0.d.ts +48 -0
- package/dist-types/ts3.4/Backup.d.ts +156 -0
- package/dist-types/ts3.4/BackupClient.d.ts +56 -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/DescribeScanJobCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/GetTieringConfigurationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListScanJobSummariesCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListScanJobsCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/ListTieringConfigurationsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/StartScanJobCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/UpdateTieringConfigurationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +9 -0
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +268 -0
- package/dist-types/ts3.4/models/errors.d.ts +112 -0
- package/dist-types/ts3.4/models/models_0.d.ts +243 -324
- package/dist-types/ts3.4/pagination/ListScanJobSummariesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListScanJobsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListTieringConfigurationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +3 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +48 -0
- package/package.json +12 -12
- package/dist-es/models/index.js +0 -1
- package/dist-types/models/index.d.ts +0 -1
- package/dist-types/ts3.4/models/index.d.ts +0 -1
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListScanJobSummariesCommandInput, ListScanJobSummariesCommandOutput } from "../commands/ListScanJobSummariesCommand";
|
|
3
|
+
import { BackupPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListScanJobSummaries: (config: BackupPaginationConfiguration, input: ListScanJobSummariesCommandInput, ...rest: any[]) => Paginator<ListScanJobSummariesCommandOutput>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListScanJobsCommandInput, ListScanJobsCommandOutput } from "../commands/ListScanJobsCommand";
|
|
3
|
+
import { BackupPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListScanJobs: (config: BackupPaginationConfiguration, input: ListScanJobsCommandInput, ...rest: any[]) => Paginator<ListScanJobsCommandOutput>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListTieringConfigurationsCommandInput, ListTieringConfigurationsCommandOutput } from "../commands/ListTieringConfigurationsCommand";
|
|
3
|
+
import { BackupPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListTieringConfigurations: (config: BackupPaginationConfiguration, input: ListTieringConfigurationsCommandInput, ...rest: any[]) => Paginator<ListTieringConfigurationsCommandOutput>;
|
|
@@ -24,4 +24,7 @@ export * from "./ListRestoreJobsByProtectedResourcePaginator";
|
|
|
24
24
|
export * from "./ListRestoreJobsPaginator";
|
|
25
25
|
export * from "./ListRestoreTestingPlansPaginator";
|
|
26
26
|
export * from "./ListRestoreTestingSelectionsPaginator";
|
|
27
|
+
export * from "./ListScanJobSummariesPaginator";
|
|
28
|
+
export * from "./ListScanJobsPaginator";
|
|
27
29
|
export * from "./ListTagsPaginator";
|
|
30
|
+
export * from "./ListTieringConfigurationsPaginator";
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { StaticErrorSchema, StaticListSchema, StaticMapSchema, StaticOperationSchema, StaticSimpleSchema, StaticStructureSchema } from "@smithy/types";
|
|
2
2
|
export declare var RequesterComment: StaticSimpleSchema;
|
|
3
3
|
export declare var AdvancedBackupSetting: StaticStructureSchema;
|
|
4
|
+
export declare var AggregatedScanResult: StaticStructureSchema;
|
|
4
5
|
export declare var AlreadyExistsException: StaticErrorSchema;
|
|
5
6
|
export declare var AssociateBackupVaultMpaApprovalTeamInput: StaticStructureSchema;
|
|
6
7
|
export declare var BackupJob: StaticStructureSchema;
|
|
@@ -46,6 +47,8 @@ export declare var CreateRestoreTestingPlanInput: StaticStructureSchema;
|
|
|
46
47
|
export declare var CreateRestoreTestingPlanOutput: StaticStructureSchema;
|
|
47
48
|
export declare var CreateRestoreTestingSelectionInput: StaticStructureSchema;
|
|
48
49
|
export declare var CreateRestoreTestingSelectionOutput: StaticStructureSchema;
|
|
50
|
+
export declare var CreateTieringConfigurationInput: StaticStructureSchema;
|
|
51
|
+
export declare var CreateTieringConfigurationOutput: StaticStructureSchema;
|
|
49
52
|
export declare var DateRange: StaticStructureSchema;
|
|
50
53
|
export declare var DeleteBackupPlanInput: StaticStructureSchema;
|
|
51
54
|
export declare var DeleteBackupPlanOutput: StaticStructureSchema;
|
|
@@ -59,6 +62,8 @@ export declare var DeleteRecoveryPointInput: StaticStructureSchema;
|
|
|
59
62
|
export declare var DeleteReportPlanInput: StaticStructureSchema;
|
|
60
63
|
export declare var DeleteRestoreTestingPlanInput: StaticStructureSchema;
|
|
61
64
|
export declare var DeleteRestoreTestingSelectionInput: StaticStructureSchema;
|
|
65
|
+
export declare var DeleteTieringConfigurationInput: StaticStructureSchema;
|
|
66
|
+
export declare var DeleteTieringConfigurationOutput: StaticStructureSchema;
|
|
62
67
|
export declare var DependencyFailureException: StaticErrorSchema;
|
|
63
68
|
export declare var DescribeBackupJobInput: StaticStructureSchema;
|
|
64
69
|
export declare var DescribeBackupJobOutput: StaticStructureSchema;
|
|
@@ -82,6 +87,8 @@ export declare var DescribeReportPlanInput: StaticStructureSchema;
|
|
|
82
87
|
export declare var DescribeReportPlanOutput: StaticStructureSchema;
|
|
83
88
|
export declare var DescribeRestoreJobInput: StaticStructureSchema;
|
|
84
89
|
export declare var DescribeRestoreJobOutput: StaticStructureSchema;
|
|
90
|
+
export declare var DescribeScanJobInput: StaticStructureSchema;
|
|
91
|
+
export declare var DescribeScanJobOutput: StaticStructureSchema;
|
|
85
92
|
export declare var DisassociateBackupVaultMpaApprovalTeamInput: StaticStructureSchema;
|
|
86
93
|
export declare var DisassociateRecoveryPointFromParentInput: StaticStructureSchema;
|
|
87
94
|
export declare var DisassociateRecoveryPointInput: StaticStructureSchema;
|
|
@@ -116,6 +123,8 @@ export declare var GetRestoreTestingPlanOutput: StaticStructureSchema;
|
|
|
116
123
|
export declare var GetRestoreTestingSelectionInput: StaticStructureSchema;
|
|
117
124
|
export declare var GetRestoreTestingSelectionOutput: StaticStructureSchema;
|
|
118
125
|
export declare var GetSupportedResourceTypesOutput: StaticStructureSchema;
|
|
126
|
+
export declare var GetTieringConfigurationInput: StaticStructureSchema;
|
|
127
|
+
export declare var GetTieringConfigurationOutput: StaticStructureSchema;
|
|
119
128
|
export declare var IndexAction: StaticStructureSchema;
|
|
120
129
|
export declare var IndexedRecoveryPoint: StaticStructureSchema;
|
|
121
130
|
export declare var InvalidParameterValueException: StaticErrorSchema;
|
|
@@ -177,8 +186,14 @@ export declare var ListRestoreTestingPlansInput: StaticStructureSchema;
|
|
|
177
186
|
export declare var ListRestoreTestingPlansOutput: StaticStructureSchema;
|
|
178
187
|
export declare var ListRestoreTestingSelectionsInput: StaticStructureSchema;
|
|
179
188
|
export declare var ListRestoreTestingSelectionsOutput: StaticStructureSchema;
|
|
189
|
+
export declare var ListScanJobsInput: StaticStructureSchema;
|
|
190
|
+
export declare var ListScanJobsOutput: StaticStructureSchema;
|
|
191
|
+
export declare var ListScanJobSummariesInput: StaticStructureSchema;
|
|
192
|
+
export declare var ListScanJobSummariesOutput: StaticStructureSchema;
|
|
180
193
|
export declare var ListTagsInput: StaticStructureSchema;
|
|
181
194
|
export declare var ListTagsOutput: StaticStructureSchema;
|
|
195
|
+
export declare var ListTieringConfigurationsInput: StaticStructureSchema;
|
|
196
|
+
export declare var ListTieringConfigurationsOutput: StaticStructureSchema;
|
|
182
197
|
export declare var MissingParameterValueException: StaticErrorSchema;
|
|
183
198
|
export declare var ProtectedResource: StaticStructureSchema;
|
|
184
199
|
export declare var ProtectedResourceConditions: StaticStructureSchema;
|
|
@@ -197,6 +212,7 @@ export declare var ReportJob: StaticStructureSchema;
|
|
|
197
212
|
export declare var ReportPlan: StaticStructureSchema;
|
|
198
213
|
export declare var ReportSetting: StaticStructureSchema;
|
|
199
214
|
export declare var ResourceNotFoundException: StaticErrorSchema;
|
|
215
|
+
export declare var ResourceSelection: StaticStructureSchema;
|
|
200
216
|
export declare var RestoreAccessBackupVaultListMember: StaticStructureSchema;
|
|
201
217
|
export declare var RestoreJobCreator: StaticStructureSchema;
|
|
202
218
|
export declare var RestoreJobsListMember: StaticStructureSchema;
|
|
@@ -211,6 +227,13 @@ export declare var RestoreTestingSelectionForGet: StaticStructureSchema;
|
|
|
211
227
|
export declare var RestoreTestingSelectionForList: StaticStructureSchema;
|
|
212
228
|
export declare var RestoreTestingSelectionForUpdate: StaticStructureSchema;
|
|
213
229
|
export declare var RevokeRestoreAccessBackupVaultInput: StaticStructureSchema;
|
|
230
|
+
export declare var ScanAction: StaticStructureSchema;
|
|
231
|
+
export declare var ScanJob: StaticStructureSchema;
|
|
232
|
+
export declare var ScanJobCreator: StaticStructureSchema;
|
|
233
|
+
export declare var ScanJobSummary: StaticStructureSchema;
|
|
234
|
+
export declare var ScanResult: StaticStructureSchema;
|
|
235
|
+
export declare var ScanResultInfo: StaticStructureSchema;
|
|
236
|
+
export declare var ScanSetting: StaticStructureSchema;
|
|
214
237
|
export declare var ScheduledPlanExecutionMember: StaticStructureSchema;
|
|
215
238
|
export declare var ServiceUnavailableException: StaticErrorSchema;
|
|
216
239
|
export declare var StartBackupJobInput: StaticStructureSchema;
|
|
@@ -221,8 +244,14 @@ export declare var StartReportJobInput: StaticStructureSchema;
|
|
|
221
244
|
export declare var StartReportJobOutput: StaticStructureSchema;
|
|
222
245
|
export declare var StartRestoreJobInput: StaticStructureSchema;
|
|
223
246
|
export declare var StartRestoreJobOutput: StaticStructureSchema;
|
|
247
|
+
export declare var StartScanJobInput: StaticStructureSchema;
|
|
248
|
+
export declare var StartScanJobOutput: StaticStructureSchema;
|
|
224
249
|
export declare var StopBackupJobInput: StaticStructureSchema;
|
|
225
250
|
export declare var TagResourceInput: StaticStructureSchema;
|
|
251
|
+
export declare var TieringConfiguration: StaticStructureSchema;
|
|
252
|
+
export declare var TieringConfigurationInputForCreate: StaticStructureSchema;
|
|
253
|
+
export declare var TieringConfigurationInputForUpdate: StaticStructureSchema;
|
|
254
|
+
export declare var TieringConfigurationsListMember: StaticStructureSchema;
|
|
226
255
|
export declare var UntagResourceInput: StaticStructureSchema;
|
|
227
256
|
export declare var UpdateBackupPlanInput: StaticStructureSchema;
|
|
228
257
|
export declare var UpdateBackupPlanOutput: StaticStructureSchema;
|
|
@@ -240,6 +269,8 @@ export declare var UpdateRestoreTestingPlanInput: StaticStructureSchema;
|
|
|
240
269
|
export declare var UpdateRestoreTestingPlanOutput: StaticStructureSchema;
|
|
241
270
|
export declare var UpdateRestoreTestingSelectionInput: StaticStructureSchema;
|
|
242
271
|
export declare var UpdateRestoreTestingSelectionOutput: StaticStructureSchema;
|
|
272
|
+
export declare var UpdateTieringConfigurationInput: StaticStructureSchema;
|
|
273
|
+
export declare var UpdateTieringConfigurationOutput: StaticStructureSchema;
|
|
243
274
|
export declare var __Unit: "unit";
|
|
244
275
|
export declare var BackupServiceException: StaticErrorSchema;
|
|
245
276
|
export declare var AdvancedBackupSettings: StaticListSchema;
|
|
@@ -275,6 +306,7 @@ export declare var ReportJobList: StaticListSchema;
|
|
|
275
306
|
export declare var ReportPlanList: StaticListSchema;
|
|
276
307
|
export declare var ResourceArns: number;
|
|
277
308
|
export declare var ResourceIdentifiers: number;
|
|
309
|
+
export declare var ResourceSelections: StaticListSchema;
|
|
278
310
|
export declare var ResourceTypeList: number;
|
|
279
311
|
export declare var ResourceTypes: number;
|
|
280
312
|
export declare var RestoreAccessBackupVaultList: StaticListSchema;
|
|
@@ -283,9 +315,16 @@ export declare var RestoreJobSummaryList: StaticListSchema;
|
|
|
283
315
|
export declare var RestoreTestingPlans: StaticListSchema;
|
|
284
316
|
export declare var RestoreTestingRecoveryPointTypeList: number;
|
|
285
317
|
export declare var RestoreTestingSelections: StaticListSchema;
|
|
318
|
+
export declare var ScanActions: StaticListSchema;
|
|
319
|
+
export declare var ScanFindings: number;
|
|
320
|
+
export declare var ScanJobs: StaticListSchema;
|
|
321
|
+
export declare var ScanJobSummaryList: StaticListSchema;
|
|
322
|
+
export declare var ScanResults: StaticListSchema;
|
|
323
|
+
export declare var ScanSettings: StaticListSchema;
|
|
286
324
|
export declare var ScheduledRunsPreview: StaticListSchema;
|
|
287
325
|
export declare var stringList: number;
|
|
288
326
|
export declare var TagKeyList: StaticListSchema;
|
|
327
|
+
export declare var TieringConfigurationsList: StaticListSchema;
|
|
289
328
|
export declare var VaultNames: number;
|
|
290
329
|
export declare var BackupJobChildJobsInState: number;
|
|
291
330
|
export declare var BackupOptions: number;
|
|
@@ -309,6 +348,7 @@ export declare var CreateReportPlan: StaticOperationSchema;
|
|
|
309
348
|
export declare var CreateRestoreAccessBackupVault: StaticOperationSchema;
|
|
310
349
|
export declare var CreateRestoreTestingPlan: StaticOperationSchema;
|
|
311
350
|
export declare var CreateRestoreTestingSelection: StaticOperationSchema;
|
|
351
|
+
export declare var CreateTieringConfiguration: StaticOperationSchema;
|
|
312
352
|
export declare var DeleteBackupPlan: StaticOperationSchema;
|
|
313
353
|
export declare var DeleteBackupSelection: StaticOperationSchema;
|
|
314
354
|
export declare var DeleteBackupVault: StaticOperationSchema;
|
|
@@ -320,6 +360,7 @@ export declare var DeleteRecoveryPoint: StaticOperationSchema;
|
|
|
320
360
|
export declare var DeleteReportPlan: StaticOperationSchema;
|
|
321
361
|
export declare var DeleteRestoreTestingPlan: StaticOperationSchema;
|
|
322
362
|
export declare var DeleteRestoreTestingSelection: StaticOperationSchema;
|
|
363
|
+
export declare var DeleteTieringConfiguration: StaticOperationSchema;
|
|
323
364
|
export declare var DescribeBackupJob: StaticOperationSchema;
|
|
324
365
|
export declare var DescribeBackupVault: StaticOperationSchema;
|
|
325
366
|
export declare var DescribeCopyJob: StaticOperationSchema;
|
|
@@ -331,6 +372,7 @@ export declare var DescribeRegionSettings: StaticOperationSchema;
|
|
|
331
372
|
export declare var DescribeReportJob: StaticOperationSchema;
|
|
332
373
|
export declare var DescribeReportPlan: StaticOperationSchema;
|
|
333
374
|
export declare var DescribeRestoreJob: StaticOperationSchema;
|
|
375
|
+
export declare var DescribeScanJob: StaticOperationSchema;
|
|
334
376
|
export declare var DisassociateBackupVaultMpaApprovalTeam: StaticOperationSchema;
|
|
335
377
|
export declare var DisassociateRecoveryPoint: StaticOperationSchema;
|
|
336
378
|
export declare var DisassociateRecoveryPointFromParent: StaticOperationSchema;
|
|
@@ -349,6 +391,7 @@ export declare var GetRestoreTestingInferredMetadata: StaticOperationSchema;
|
|
|
349
391
|
export declare var GetRestoreTestingPlan: StaticOperationSchema;
|
|
350
392
|
export declare var GetRestoreTestingSelection: StaticOperationSchema;
|
|
351
393
|
export declare var GetSupportedResourceTypes: StaticOperationSchema;
|
|
394
|
+
export declare var GetTieringConfiguration: StaticOperationSchema;
|
|
352
395
|
export declare var ListBackupJobs: StaticOperationSchema;
|
|
353
396
|
export declare var ListBackupJobSummaries: StaticOperationSchema;
|
|
354
397
|
export declare var ListBackupPlans: StaticOperationSchema;
|
|
@@ -374,7 +417,10 @@ export declare var ListRestoreJobsByProtectedResource: StaticOperationSchema;
|
|
|
374
417
|
export declare var ListRestoreJobSummaries: StaticOperationSchema;
|
|
375
418
|
export declare var ListRestoreTestingPlans: StaticOperationSchema;
|
|
376
419
|
export declare var ListRestoreTestingSelections: StaticOperationSchema;
|
|
420
|
+
export declare var ListScanJobs: StaticOperationSchema;
|
|
421
|
+
export declare var ListScanJobSummaries: StaticOperationSchema;
|
|
377
422
|
export declare var ListTags: StaticOperationSchema;
|
|
423
|
+
export declare var ListTieringConfigurations: StaticOperationSchema;
|
|
378
424
|
export declare var PutBackupVaultAccessPolicy: StaticOperationSchema;
|
|
379
425
|
export declare var PutBackupVaultLockConfiguration: StaticOperationSchema;
|
|
380
426
|
export declare var PutBackupVaultNotifications: StaticOperationSchema;
|
|
@@ -384,6 +430,7 @@ export declare var StartBackupJob: StaticOperationSchema;
|
|
|
384
430
|
export declare var StartCopyJob: StaticOperationSchema;
|
|
385
431
|
export declare var StartReportJob: StaticOperationSchema;
|
|
386
432
|
export declare var StartRestoreJob: StaticOperationSchema;
|
|
433
|
+
export declare var StartScanJob: StaticOperationSchema;
|
|
387
434
|
export declare var StopBackupJob: StaticOperationSchema;
|
|
388
435
|
export declare var TagResource: StaticOperationSchema;
|
|
389
436
|
export declare var UntagResource: StaticOperationSchema;
|
|
@@ -396,3 +443,4 @@ export declare var UpdateRegionSettings: StaticOperationSchema;
|
|
|
396
443
|
export declare var UpdateReportPlan: StaticOperationSchema;
|
|
397
444
|
export declare var UpdateRestoreTestingPlan: StaticOperationSchema;
|
|
398
445
|
export declare var UpdateRestoreTestingSelection: StaticOperationSchema;
|
|
446
|
+
export declare var UpdateTieringConfiguration: StaticOperationSchema;
|
|
@@ -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,
|
|
@@ -136,6 +144,10 @@ import {
|
|
|
136
144
|
DescribeRestoreJobCommandInput,
|
|
137
145
|
DescribeRestoreJobCommandOutput,
|
|
138
146
|
} from "./commands/DescribeRestoreJobCommand";
|
|
147
|
+
import {
|
|
148
|
+
DescribeScanJobCommandInput,
|
|
149
|
+
DescribeScanJobCommandOutput,
|
|
150
|
+
} from "./commands/DescribeScanJobCommand";
|
|
139
151
|
import {
|
|
140
152
|
DisassociateBackupVaultMpaApprovalTeamCommandInput,
|
|
141
153
|
DisassociateBackupVaultMpaApprovalTeamCommandOutput,
|
|
@@ -208,6 +220,10 @@ import {
|
|
|
208
220
|
GetSupportedResourceTypesCommandInput,
|
|
209
221
|
GetSupportedResourceTypesCommandOutput,
|
|
210
222
|
} from "./commands/GetSupportedResourceTypesCommand";
|
|
223
|
+
import {
|
|
224
|
+
GetTieringConfigurationCommandInput,
|
|
225
|
+
GetTieringConfigurationCommandOutput,
|
|
226
|
+
} from "./commands/GetTieringConfigurationCommand";
|
|
211
227
|
import {
|
|
212
228
|
ListBackupJobsCommandInput,
|
|
213
229
|
ListBackupJobsCommandOutput,
|
|
@@ -308,10 +324,22 @@ import {
|
|
|
308
324
|
ListRestoreTestingSelectionsCommandInput,
|
|
309
325
|
ListRestoreTestingSelectionsCommandOutput,
|
|
310
326
|
} from "./commands/ListRestoreTestingSelectionsCommand";
|
|
327
|
+
import {
|
|
328
|
+
ListScanJobsCommandInput,
|
|
329
|
+
ListScanJobsCommandOutput,
|
|
330
|
+
} from "./commands/ListScanJobsCommand";
|
|
331
|
+
import {
|
|
332
|
+
ListScanJobSummariesCommandInput,
|
|
333
|
+
ListScanJobSummariesCommandOutput,
|
|
334
|
+
} from "./commands/ListScanJobSummariesCommand";
|
|
311
335
|
import {
|
|
312
336
|
ListTagsCommandInput,
|
|
313
337
|
ListTagsCommandOutput,
|
|
314
338
|
} from "./commands/ListTagsCommand";
|
|
339
|
+
import {
|
|
340
|
+
ListTieringConfigurationsCommandInput,
|
|
341
|
+
ListTieringConfigurationsCommandOutput,
|
|
342
|
+
} from "./commands/ListTieringConfigurationsCommand";
|
|
315
343
|
import {
|
|
316
344
|
PutBackupVaultAccessPolicyCommandInput,
|
|
317
345
|
PutBackupVaultAccessPolicyCommandOutput,
|
|
@@ -348,6 +376,10 @@ import {
|
|
|
348
376
|
StartRestoreJobCommandInput,
|
|
349
377
|
StartRestoreJobCommandOutput,
|
|
350
378
|
} from "./commands/StartRestoreJobCommand";
|
|
379
|
+
import {
|
|
380
|
+
StartScanJobCommandInput,
|
|
381
|
+
StartScanJobCommandOutput,
|
|
382
|
+
} from "./commands/StartScanJobCommand";
|
|
351
383
|
import {
|
|
352
384
|
StopBackupJobCommandInput,
|
|
353
385
|
StopBackupJobCommandOutput,
|
|
@@ -396,6 +428,10 @@ import {
|
|
|
396
428
|
UpdateRestoreTestingSelectionCommandInput,
|
|
397
429
|
UpdateRestoreTestingSelectionCommandOutput,
|
|
398
430
|
} from "./commands/UpdateRestoreTestingSelectionCommand";
|
|
431
|
+
import {
|
|
432
|
+
UpdateTieringConfigurationCommandInput,
|
|
433
|
+
UpdateTieringConfigurationCommandOutput,
|
|
434
|
+
} from "./commands/UpdateTieringConfigurationCommand";
|
|
399
435
|
export interface Backup {
|
|
400
436
|
associateBackupVaultMpaApprovalTeam(
|
|
401
437
|
args: AssociateBackupVaultMpaApprovalTeamCommandInput,
|
|
@@ -565,6 +601,19 @@ export interface Backup {
|
|
|
565
601
|
options: __HttpHandlerOptions,
|
|
566
602
|
cb: (err: any, data?: CreateRestoreTestingSelectionCommandOutput) => void
|
|
567
603
|
): void;
|
|
604
|
+
createTieringConfiguration(
|
|
605
|
+
args: CreateTieringConfigurationCommandInput,
|
|
606
|
+
options?: __HttpHandlerOptions
|
|
607
|
+
): Promise<CreateTieringConfigurationCommandOutput>;
|
|
608
|
+
createTieringConfiguration(
|
|
609
|
+
args: CreateTieringConfigurationCommandInput,
|
|
610
|
+
cb: (err: any, data?: CreateTieringConfigurationCommandOutput) => void
|
|
611
|
+
): void;
|
|
612
|
+
createTieringConfiguration(
|
|
613
|
+
args: CreateTieringConfigurationCommandInput,
|
|
614
|
+
options: __HttpHandlerOptions,
|
|
615
|
+
cb: (err: any, data?: CreateTieringConfigurationCommandOutput) => void
|
|
616
|
+
): void;
|
|
568
617
|
deleteBackupPlan(
|
|
569
618
|
args: DeleteBackupPlanCommandInput,
|
|
570
619
|
options?: __HttpHandlerOptions
|
|
@@ -714,6 +763,19 @@ export interface Backup {
|
|
|
714
763
|
options: __HttpHandlerOptions,
|
|
715
764
|
cb: (err: any, data?: DeleteRestoreTestingSelectionCommandOutput) => void
|
|
716
765
|
): void;
|
|
766
|
+
deleteTieringConfiguration(
|
|
767
|
+
args: DeleteTieringConfigurationCommandInput,
|
|
768
|
+
options?: __HttpHandlerOptions
|
|
769
|
+
): Promise<DeleteTieringConfigurationCommandOutput>;
|
|
770
|
+
deleteTieringConfiguration(
|
|
771
|
+
args: DeleteTieringConfigurationCommandInput,
|
|
772
|
+
cb: (err: any, data?: DeleteTieringConfigurationCommandOutput) => void
|
|
773
|
+
): void;
|
|
774
|
+
deleteTieringConfiguration(
|
|
775
|
+
args: DeleteTieringConfigurationCommandInput,
|
|
776
|
+
options: __HttpHandlerOptions,
|
|
777
|
+
cb: (err: any, data?: DeleteTieringConfigurationCommandOutput) => void
|
|
778
|
+
): void;
|
|
717
779
|
describeBackupJob(
|
|
718
780
|
args: DescribeBackupJobCommandInput,
|
|
719
781
|
options?: __HttpHandlerOptions
|
|
@@ -859,6 +921,19 @@ export interface Backup {
|
|
|
859
921
|
options: __HttpHandlerOptions,
|
|
860
922
|
cb: (err: any, data?: DescribeRestoreJobCommandOutput) => void
|
|
861
923
|
): void;
|
|
924
|
+
describeScanJob(
|
|
925
|
+
args: DescribeScanJobCommandInput,
|
|
926
|
+
options?: __HttpHandlerOptions
|
|
927
|
+
): Promise<DescribeScanJobCommandOutput>;
|
|
928
|
+
describeScanJob(
|
|
929
|
+
args: DescribeScanJobCommandInput,
|
|
930
|
+
cb: (err: any, data?: DescribeScanJobCommandOutput) => void
|
|
931
|
+
): void;
|
|
932
|
+
describeScanJob(
|
|
933
|
+
args: DescribeScanJobCommandInput,
|
|
934
|
+
options: __HttpHandlerOptions,
|
|
935
|
+
cb: (err: any, data?: DescribeScanJobCommandOutput) => void
|
|
936
|
+
): void;
|
|
862
937
|
disassociateBackupVaultMpaApprovalTeam(
|
|
863
938
|
args: DisassociateBackupVaultMpaApprovalTeamCommandInput,
|
|
864
939
|
options?: __HttpHandlerOptions
|
|
@@ -1112,6 +1187,19 @@ export interface Backup {
|
|
|
1112
1187
|
options: __HttpHandlerOptions,
|
|
1113
1188
|
cb: (err: any, data?: GetSupportedResourceTypesCommandOutput) => void
|
|
1114
1189
|
): void;
|
|
1190
|
+
getTieringConfiguration(
|
|
1191
|
+
args: GetTieringConfigurationCommandInput,
|
|
1192
|
+
options?: __HttpHandlerOptions
|
|
1193
|
+
): Promise<GetTieringConfigurationCommandOutput>;
|
|
1194
|
+
getTieringConfiguration(
|
|
1195
|
+
args: GetTieringConfigurationCommandInput,
|
|
1196
|
+
cb: (err: any, data?: GetTieringConfigurationCommandOutput) => void
|
|
1197
|
+
): void;
|
|
1198
|
+
getTieringConfiguration(
|
|
1199
|
+
args: GetTieringConfigurationCommandInput,
|
|
1200
|
+
options: __HttpHandlerOptions,
|
|
1201
|
+
cb: (err: any, data?: GetTieringConfigurationCommandOutput) => void
|
|
1202
|
+
): void;
|
|
1115
1203
|
listBackupJobs(): Promise<ListBackupJobsCommandOutput>;
|
|
1116
1204
|
listBackupJobs(
|
|
1117
1205
|
args: ListBackupJobsCommandInput,
|
|
@@ -1465,6 +1553,34 @@ export interface Backup {
|
|
|
1465
1553
|
options: __HttpHandlerOptions,
|
|
1466
1554
|
cb: (err: any, data?: ListRestoreTestingSelectionsCommandOutput) => void
|
|
1467
1555
|
): void;
|
|
1556
|
+
listScanJobs(): Promise<ListScanJobsCommandOutput>;
|
|
1557
|
+
listScanJobs(
|
|
1558
|
+
args: ListScanJobsCommandInput,
|
|
1559
|
+
options?: __HttpHandlerOptions
|
|
1560
|
+
): Promise<ListScanJobsCommandOutput>;
|
|
1561
|
+
listScanJobs(
|
|
1562
|
+
args: ListScanJobsCommandInput,
|
|
1563
|
+
cb: (err: any, data?: ListScanJobsCommandOutput) => void
|
|
1564
|
+
): void;
|
|
1565
|
+
listScanJobs(
|
|
1566
|
+
args: ListScanJobsCommandInput,
|
|
1567
|
+
options: __HttpHandlerOptions,
|
|
1568
|
+
cb: (err: any, data?: ListScanJobsCommandOutput) => void
|
|
1569
|
+
): void;
|
|
1570
|
+
listScanJobSummaries(): Promise<ListScanJobSummariesCommandOutput>;
|
|
1571
|
+
listScanJobSummaries(
|
|
1572
|
+
args: ListScanJobSummariesCommandInput,
|
|
1573
|
+
options?: __HttpHandlerOptions
|
|
1574
|
+
): Promise<ListScanJobSummariesCommandOutput>;
|
|
1575
|
+
listScanJobSummaries(
|
|
1576
|
+
args: ListScanJobSummariesCommandInput,
|
|
1577
|
+
cb: (err: any, data?: ListScanJobSummariesCommandOutput) => void
|
|
1578
|
+
): void;
|
|
1579
|
+
listScanJobSummaries(
|
|
1580
|
+
args: ListScanJobSummariesCommandInput,
|
|
1581
|
+
options: __HttpHandlerOptions,
|
|
1582
|
+
cb: (err: any, data?: ListScanJobSummariesCommandOutput) => void
|
|
1583
|
+
): void;
|
|
1468
1584
|
listTags(
|
|
1469
1585
|
args: ListTagsCommandInput,
|
|
1470
1586
|
options?: __HttpHandlerOptions
|
|
@@ -1478,6 +1594,20 @@ export interface Backup {
|
|
|
1478
1594
|
options: __HttpHandlerOptions,
|
|
1479
1595
|
cb: (err: any, data?: ListTagsCommandOutput) => void
|
|
1480
1596
|
): void;
|
|
1597
|
+
listTieringConfigurations(): Promise<ListTieringConfigurationsCommandOutput>;
|
|
1598
|
+
listTieringConfigurations(
|
|
1599
|
+
args: ListTieringConfigurationsCommandInput,
|
|
1600
|
+
options?: __HttpHandlerOptions
|
|
1601
|
+
): Promise<ListTieringConfigurationsCommandOutput>;
|
|
1602
|
+
listTieringConfigurations(
|
|
1603
|
+
args: ListTieringConfigurationsCommandInput,
|
|
1604
|
+
cb: (err: any, data?: ListTieringConfigurationsCommandOutput) => void
|
|
1605
|
+
): void;
|
|
1606
|
+
listTieringConfigurations(
|
|
1607
|
+
args: ListTieringConfigurationsCommandInput,
|
|
1608
|
+
options: __HttpHandlerOptions,
|
|
1609
|
+
cb: (err: any, data?: ListTieringConfigurationsCommandOutput) => void
|
|
1610
|
+
): void;
|
|
1481
1611
|
putBackupVaultAccessPolicy(
|
|
1482
1612
|
args: PutBackupVaultAccessPolicyCommandInput,
|
|
1483
1613
|
options?: __HttpHandlerOptions
|
|
@@ -1595,6 +1725,19 @@ export interface Backup {
|
|
|
1595
1725
|
options: __HttpHandlerOptions,
|
|
1596
1726
|
cb: (err: any, data?: StartRestoreJobCommandOutput) => void
|
|
1597
1727
|
): void;
|
|
1728
|
+
startScanJob(
|
|
1729
|
+
args: StartScanJobCommandInput,
|
|
1730
|
+
options?: __HttpHandlerOptions
|
|
1731
|
+
): Promise<StartScanJobCommandOutput>;
|
|
1732
|
+
startScanJob(
|
|
1733
|
+
args: StartScanJobCommandInput,
|
|
1734
|
+
cb: (err: any, data?: StartScanJobCommandOutput) => void
|
|
1735
|
+
): void;
|
|
1736
|
+
startScanJob(
|
|
1737
|
+
args: StartScanJobCommandInput,
|
|
1738
|
+
options: __HttpHandlerOptions,
|
|
1739
|
+
cb: (err: any, data?: StartScanJobCommandOutput) => void
|
|
1740
|
+
): void;
|
|
1598
1741
|
stopBackupJob(
|
|
1599
1742
|
args: StopBackupJobCommandInput,
|
|
1600
1743
|
options?: __HttpHandlerOptions
|
|
@@ -1753,5 +1896,18 @@ export interface Backup {
|
|
|
1753
1896
|
options: __HttpHandlerOptions,
|
|
1754
1897
|
cb: (err: any, data?: UpdateRestoreTestingSelectionCommandOutput) => void
|
|
1755
1898
|
): void;
|
|
1899
|
+
updateTieringConfiguration(
|
|
1900
|
+
args: UpdateTieringConfigurationCommandInput,
|
|
1901
|
+
options?: __HttpHandlerOptions
|
|
1902
|
+
): Promise<UpdateTieringConfigurationCommandOutput>;
|
|
1903
|
+
updateTieringConfiguration(
|
|
1904
|
+
args: UpdateTieringConfigurationCommandInput,
|
|
1905
|
+
cb: (err: any, data?: UpdateTieringConfigurationCommandOutput) => void
|
|
1906
|
+
): void;
|
|
1907
|
+
updateTieringConfiguration(
|
|
1908
|
+
args: UpdateTieringConfigurationCommandInput,
|
|
1909
|
+
options: __HttpHandlerOptions,
|
|
1910
|
+
cb: (err: any, data?: UpdateTieringConfigurationCommandOutput) => void
|
|
1911
|
+
): void;
|
|
1756
1912
|
}
|
|
1757
1913
|
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,
|
|
@@ -184,6 +192,10 @@ import {
|
|
|
184
192
|
DescribeRestoreJobCommandInput,
|
|
185
193
|
DescribeRestoreJobCommandOutput,
|
|
186
194
|
} from "./commands/DescribeRestoreJobCommand";
|
|
195
|
+
import {
|
|
196
|
+
DescribeScanJobCommandInput,
|
|
197
|
+
DescribeScanJobCommandOutput,
|
|
198
|
+
} from "./commands/DescribeScanJobCommand";
|
|
187
199
|
import {
|
|
188
200
|
DisassociateBackupVaultMpaApprovalTeamCommandInput,
|
|
189
201
|
DisassociateBackupVaultMpaApprovalTeamCommandOutput,
|
|
@@ -256,6 +268,10 @@ import {
|
|
|
256
268
|
GetSupportedResourceTypesCommandInput,
|
|
257
269
|
GetSupportedResourceTypesCommandOutput,
|
|
258
270
|
} from "./commands/GetSupportedResourceTypesCommand";
|
|
271
|
+
import {
|
|
272
|
+
GetTieringConfigurationCommandInput,
|
|
273
|
+
GetTieringConfigurationCommandOutput,
|
|
274
|
+
} from "./commands/GetTieringConfigurationCommand";
|
|
259
275
|
import {
|
|
260
276
|
ListBackupJobsCommandInput,
|
|
261
277
|
ListBackupJobsCommandOutput,
|
|
@@ -356,10 +372,22 @@ import {
|
|
|
356
372
|
ListRestoreTestingSelectionsCommandInput,
|
|
357
373
|
ListRestoreTestingSelectionsCommandOutput,
|
|
358
374
|
} from "./commands/ListRestoreTestingSelectionsCommand";
|
|
375
|
+
import {
|
|
376
|
+
ListScanJobsCommandInput,
|
|
377
|
+
ListScanJobsCommandOutput,
|
|
378
|
+
} from "./commands/ListScanJobsCommand";
|
|
379
|
+
import {
|
|
380
|
+
ListScanJobSummariesCommandInput,
|
|
381
|
+
ListScanJobSummariesCommandOutput,
|
|
382
|
+
} from "./commands/ListScanJobSummariesCommand";
|
|
359
383
|
import {
|
|
360
384
|
ListTagsCommandInput,
|
|
361
385
|
ListTagsCommandOutput,
|
|
362
386
|
} from "./commands/ListTagsCommand";
|
|
387
|
+
import {
|
|
388
|
+
ListTieringConfigurationsCommandInput,
|
|
389
|
+
ListTieringConfigurationsCommandOutput,
|
|
390
|
+
} from "./commands/ListTieringConfigurationsCommand";
|
|
363
391
|
import {
|
|
364
392
|
PutBackupVaultAccessPolicyCommandInput,
|
|
365
393
|
PutBackupVaultAccessPolicyCommandOutput,
|
|
@@ -396,6 +424,10 @@ import {
|
|
|
396
424
|
StartRestoreJobCommandInput,
|
|
397
425
|
StartRestoreJobCommandOutput,
|
|
398
426
|
} from "./commands/StartRestoreJobCommand";
|
|
427
|
+
import {
|
|
428
|
+
StartScanJobCommandInput,
|
|
429
|
+
StartScanJobCommandOutput,
|
|
430
|
+
} from "./commands/StartScanJobCommand";
|
|
399
431
|
import {
|
|
400
432
|
StopBackupJobCommandInput,
|
|
401
433
|
StopBackupJobCommandOutput,
|
|
@@ -444,6 +476,10 @@ import {
|
|
|
444
476
|
UpdateRestoreTestingSelectionCommandInput,
|
|
445
477
|
UpdateRestoreTestingSelectionCommandOutput,
|
|
446
478
|
} from "./commands/UpdateRestoreTestingSelectionCommand";
|
|
479
|
+
import {
|
|
480
|
+
UpdateTieringConfigurationCommandInput,
|
|
481
|
+
UpdateTieringConfigurationCommandOutput,
|
|
482
|
+
} from "./commands/UpdateTieringConfigurationCommand";
|
|
447
483
|
import {
|
|
448
484
|
ClientInputEndpointParameters,
|
|
449
485
|
ClientResolvedEndpointParameters,
|
|
@@ -464,6 +500,7 @@ export type ServiceInputTypes =
|
|
|
464
500
|
| CreateRestoreAccessBackupVaultCommandInput
|
|
465
501
|
| CreateRestoreTestingPlanCommandInput
|
|
466
502
|
| CreateRestoreTestingSelectionCommandInput
|
|
503
|
+
| CreateTieringConfigurationCommandInput
|
|
467
504
|
| DeleteBackupPlanCommandInput
|
|
468
505
|
| DeleteBackupSelectionCommandInput
|
|
469
506
|
| DeleteBackupVaultAccessPolicyCommandInput
|
|
@@ -475,6 +512,7 @@ export type ServiceInputTypes =
|
|
|
475
512
|
| DeleteReportPlanCommandInput
|
|
476
513
|
| DeleteRestoreTestingPlanCommandInput
|
|
477
514
|
| DeleteRestoreTestingSelectionCommandInput
|
|
515
|
+
| DeleteTieringConfigurationCommandInput
|
|
478
516
|
| DescribeBackupJobCommandInput
|
|
479
517
|
| DescribeBackupVaultCommandInput
|
|
480
518
|
| DescribeCopyJobCommandInput
|
|
@@ -486,6 +524,7 @@ export type ServiceInputTypes =
|
|
|
486
524
|
| DescribeReportJobCommandInput
|
|
487
525
|
| DescribeReportPlanCommandInput
|
|
488
526
|
| DescribeRestoreJobCommandInput
|
|
527
|
+
| DescribeScanJobCommandInput
|
|
489
528
|
| DisassociateBackupVaultMpaApprovalTeamCommandInput
|
|
490
529
|
| DisassociateRecoveryPointCommandInput
|
|
491
530
|
| DisassociateRecoveryPointFromParentCommandInput
|
|
@@ -504,6 +543,7 @@ export type ServiceInputTypes =
|
|
|
504
543
|
| GetRestoreTestingPlanCommandInput
|
|
505
544
|
| GetRestoreTestingSelectionCommandInput
|
|
506
545
|
| GetSupportedResourceTypesCommandInput
|
|
546
|
+
| GetTieringConfigurationCommandInput
|
|
507
547
|
| ListBackupJobSummariesCommandInput
|
|
508
548
|
| ListBackupJobsCommandInput
|
|
509
549
|
| ListBackupPlanTemplatesCommandInput
|
|
@@ -529,7 +569,10 @@ export type ServiceInputTypes =
|
|
|
529
569
|
| ListRestoreJobsCommandInput
|
|
530
570
|
| ListRestoreTestingPlansCommandInput
|
|
531
571
|
| ListRestoreTestingSelectionsCommandInput
|
|
572
|
+
| ListScanJobSummariesCommandInput
|
|
573
|
+
| ListScanJobsCommandInput
|
|
532
574
|
| ListTagsCommandInput
|
|
575
|
+
| ListTieringConfigurationsCommandInput
|
|
533
576
|
| PutBackupVaultAccessPolicyCommandInput
|
|
534
577
|
| PutBackupVaultLockConfigurationCommandInput
|
|
535
578
|
| PutBackupVaultNotificationsCommandInput
|
|
@@ -539,6 +582,7 @@ export type ServiceInputTypes =
|
|
|
539
582
|
| StartCopyJobCommandInput
|
|
540
583
|
| StartReportJobCommandInput
|
|
541
584
|
| StartRestoreJobCommandInput
|
|
585
|
+
| StartScanJobCommandInput
|
|
542
586
|
| StopBackupJobCommandInput
|
|
543
587
|
| TagResourceCommandInput
|
|
544
588
|
| UntagResourceCommandInput
|
|
@@ -550,7 +594,8 @@ export type ServiceInputTypes =
|
|
|
550
594
|
| UpdateRegionSettingsCommandInput
|
|
551
595
|
| UpdateReportPlanCommandInput
|
|
552
596
|
| UpdateRestoreTestingPlanCommandInput
|
|
553
|
-
| UpdateRestoreTestingSelectionCommandInput
|
|
597
|
+
| UpdateRestoreTestingSelectionCommandInput
|
|
598
|
+
| UpdateTieringConfigurationCommandInput;
|
|
554
599
|
export type ServiceOutputTypes =
|
|
555
600
|
| AssociateBackupVaultMpaApprovalTeamCommandOutput
|
|
556
601
|
| CancelLegalHoldCommandOutput
|
|
@@ -564,6 +609,7 @@ export type ServiceOutputTypes =
|
|
|
564
609
|
| CreateRestoreAccessBackupVaultCommandOutput
|
|
565
610
|
| CreateRestoreTestingPlanCommandOutput
|
|
566
611
|
| CreateRestoreTestingSelectionCommandOutput
|
|
612
|
+
| CreateTieringConfigurationCommandOutput
|
|
567
613
|
| DeleteBackupPlanCommandOutput
|
|
568
614
|
| DeleteBackupSelectionCommandOutput
|
|
569
615
|
| DeleteBackupVaultAccessPolicyCommandOutput
|
|
@@ -575,6 +621,7 @@ export type ServiceOutputTypes =
|
|
|
575
621
|
| DeleteReportPlanCommandOutput
|
|
576
622
|
| DeleteRestoreTestingPlanCommandOutput
|
|
577
623
|
| DeleteRestoreTestingSelectionCommandOutput
|
|
624
|
+
| DeleteTieringConfigurationCommandOutput
|
|
578
625
|
| DescribeBackupJobCommandOutput
|
|
579
626
|
| DescribeBackupVaultCommandOutput
|
|
580
627
|
| DescribeCopyJobCommandOutput
|
|
@@ -586,6 +633,7 @@ export type ServiceOutputTypes =
|
|
|
586
633
|
| DescribeReportJobCommandOutput
|
|
587
634
|
| DescribeReportPlanCommandOutput
|
|
588
635
|
| DescribeRestoreJobCommandOutput
|
|
636
|
+
| DescribeScanJobCommandOutput
|
|
589
637
|
| DisassociateBackupVaultMpaApprovalTeamCommandOutput
|
|
590
638
|
| DisassociateRecoveryPointCommandOutput
|
|
591
639
|
| DisassociateRecoveryPointFromParentCommandOutput
|
|
@@ -604,6 +652,7 @@ export type ServiceOutputTypes =
|
|
|
604
652
|
| GetRestoreTestingPlanCommandOutput
|
|
605
653
|
| GetRestoreTestingSelectionCommandOutput
|
|
606
654
|
| GetSupportedResourceTypesCommandOutput
|
|
655
|
+
| GetTieringConfigurationCommandOutput
|
|
607
656
|
| ListBackupJobSummariesCommandOutput
|
|
608
657
|
| ListBackupJobsCommandOutput
|
|
609
658
|
| ListBackupPlanTemplatesCommandOutput
|
|
@@ -629,7 +678,10 @@ export type ServiceOutputTypes =
|
|
|
629
678
|
| ListRestoreJobsCommandOutput
|
|
630
679
|
| ListRestoreTestingPlansCommandOutput
|
|
631
680
|
| ListRestoreTestingSelectionsCommandOutput
|
|
681
|
+
| ListScanJobSummariesCommandOutput
|
|
682
|
+
| ListScanJobsCommandOutput
|
|
632
683
|
| ListTagsCommandOutput
|
|
684
|
+
| ListTieringConfigurationsCommandOutput
|
|
633
685
|
| PutBackupVaultAccessPolicyCommandOutput
|
|
634
686
|
| PutBackupVaultLockConfigurationCommandOutput
|
|
635
687
|
| PutBackupVaultNotificationsCommandOutput
|
|
@@ -639,6 +691,7 @@ export type ServiceOutputTypes =
|
|
|
639
691
|
| StartCopyJobCommandOutput
|
|
640
692
|
| StartReportJobCommandOutput
|
|
641
693
|
| StartRestoreJobCommandOutput
|
|
694
|
+
| StartScanJobCommandOutput
|
|
642
695
|
| StopBackupJobCommandOutput
|
|
643
696
|
| TagResourceCommandOutput
|
|
644
697
|
| UntagResourceCommandOutput
|
|
@@ -650,7 +703,8 @@ export type ServiceOutputTypes =
|
|
|
650
703
|
| UpdateRegionSettingsCommandOutput
|
|
651
704
|
| UpdateReportPlanCommandOutput
|
|
652
705
|
| UpdateRestoreTestingPlanCommandOutput
|
|
653
|
-
| UpdateRestoreTestingSelectionCommandOutput
|
|
706
|
+
| UpdateRestoreTestingSelectionCommandOutput
|
|
707
|
+
| UpdateTieringConfigurationCommandOutput;
|
|
654
708
|
export interface ClientDefaults
|
|
655
709
|
extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
656
710
|
requestHandler?: __HttpHandlerUserInput;
|