@aws-sdk/client-backup 3.934.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 +32 -0
- package/dist-cjs/index.js +620 -214
- package/dist-es/Backup.js +8 -0
- package/dist-es/commands/DescribeScanJobCommand.js +16 -0
- package/dist-es/commands/ListScanJobSummariesCommand.js +16 -0
- package/dist-es/commands/ListScanJobsCommand.js +16 -0
- package/dist-es/commands/StartScanJobCommand.js +16 -0
- package/dist-es/commands/index.js +4 -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/index.js +2 -0
- package/dist-es/schemas/schemas_0.js +312 -19
- package/dist-types/Backup.d.ts +30 -0
- package/dist-types/BackupClient.d.ts +6 -2
- package/dist-types/commands/CreateBackupPlanCommand.d.ts +15 -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/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/StartScanJobCommand.d.ts +103 -0
- package/dist-types/commands/UpdateBackupPlanCommand.d.ts +24 -0
- package/dist-types/commands/index.d.ts +4 -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 +844 -669
- package/dist-types/pagination/ListScanJobSummariesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListScanJobsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +2 -0
- package/dist-types/schemas/schemas_0.d.ts +26 -0
- package/dist-types/ts3.4/Backup.d.ts +70 -0
- package/dist-types/ts3.4/BackupClient.d.ts +24 -0
- package/dist-types/ts3.4/commands/DescribeScanJobCommand.d.ts +50 -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/StartScanJobCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/index.d.ts +4 -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 +176 -325
- 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/index.d.ts +2 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +26 -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>;
|
|
@@ -24,5 +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";
|
|
28
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;
|
|
@@ -86,6 +87,8 @@ export declare var DescribeReportPlanInput: StaticStructureSchema;
|
|
|
86
87
|
export declare var DescribeReportPlanOutput: StaticStructureSchema;
|
|
87
88
|
export declare var DescribeRestoreJobInput: StaticStructureSchema;
|
|
88
89
|
export declare var DescribeRestoreJobOutput: StaticStructureSchema;
|
|
90
|
+
export declare var DescribeScanJobInput: StaticStructureSchema;
|
|
91
|
+
export declare var DescribeScanJobOutput: StaticStructureSchema;
|
|
89
92
|
export declare var DisassociateBackupVaultMpaApprovalTeamInput: StaticStructureSchema;
|
|
90
93
|
export declare var DisassociateRecoveryPointFromParentInput: StaticStructureSchema;
|
|
91
94
|
export declare var DisassociateRecoveryPointInput: StaticStructureSchema;
|
|
@@ -183,6 +186,10 @@ export declare var ListRestoreTestingPlansInput: StaticStructureSchema;
|
|
|
183
186
|
export declare var ListRestoreTestingPlansOutput: StaticStructureSchema;
|
|
184
187
|
export declare var ListRestoreTestingSelectionsInput: StaticStructureSchema;
|
|
185
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;
|
|
186
193
|
export declare var ListTagsInput: StaticStructureSchema;
|
|
187
194
|
export declare var ListTagsOutput: StaticStructureSchema;
|
|
188
195
|
export declare var ListTieringConfigurationsInput: StaticStructureSchema;
|
|
@@ -220,6 +227,13 @@ export declare var RestoreTestingSelectionForGet: StaticStructureSchema;
|
|
|
220
227
|
export declare var RestoreTestingSelectionForList: StaticStructureSchema;
|
|
221
228
|
export declare var RestoreTestingSelectionForUpdate: StaticStructureSchema;
|
|
222
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;
|
|
223
237
|
export declare var ScheduledPlanExecutionMember: StaticStructureSchema;
|
|
224
238
|
export declare var ServiceUnavailableException: StaticErrorSchema;
|
|
225
239
|
export declare var StartBackupJobInput: StaticStructureSchema;
|
|
@@ -230,6 +244,8 @@ export declare var StartReportJobInput: StaticStructureSchema;
|
|
|
230
244
|
export declare var StartReportJobOutput: StaticStructureSchema;
|
|
231
245
|
export declare var StartRestoreJobInput: StaticStructureSchema;
|
|
232
246
|
export declare var StartRestoreJobOutput: StaticStructureSchema;
|
|
247
|
+
export declare var StartScanJobInput: StaticStructureSchema;
|
|
248
|
+
export declare var StartScanJobOutput: StaticStructureSchema;
|
|
233
249
|
export declare var StopBackupJobInput: StaticStructureSchema;
|
|
234
250
|
export declare var TagResourceInput: StaticStructureSchema;
|
|
235
251
|
export declare var TieringConfiguration: StaticStructureSchema;
|
|
@@ -299,6 +315,12 @@ export declare var RestoreJobSummaryList: StaticListSchema;
|
|
|
299
315
|
export declare var RestoreTestingPlans: StaticListSchema;
|
|
300
316
|
export declare var RestoreTestingRecoveryPointTypeList: number;
|
|
301
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;
|
|
302
324
|
export declare var ScheduledRunsPreview: StaticListSchema;
|
|
303
325
|
export declare var stringList: number;
|
|
304
326
|
export declare var TagKeyList: StaticListSchema;
|
|
@@ -350,6 +372,7 @@ export declare var DescribeRegionSettings: StaticOperationSchema;
|
|
|
350
372
|
export declare var DescribeReportJob: StaticOperationSchema;
|
|
351
373
|
export declare var DescribeReportPlan: StaticOperationSchema;
|
|
352
374
|
export declare var DescribeRestoreJob: StaticOperationSchema;
|
|
375
|
+
export declare var DescribeScanJob: StaticOperationSchema;
|
|
353
376
|
export declare var DisassociateBackupVaultMpaApprovalTeam: StaticOperationSchema;
|
|
354
377
|
export declare var DisassociateRecoveryPoint: StaticOperationSchema;
|
|
355
378
|
export declare var DisassociateRecoveryPointFromParent: StaticOperationSchema;
|
|
@@ -394,6 +417,8 @@ export declare var ListRestoreJobsByProtectedResource: StaticOperationSchema;
|
|
|
394
417
|
export declare var ListRestoreJobSummaries: StaticOperationSchema;
|
|
395
418
|
export declare var ListRestoreTestingPlans: StaticOperationSchema;
|
|
396
419
|
export declare var ListRestoreTestingSelections: StaticOperationSchema;
|
|
420
|
+
export declare var ListScanJobs: StaticOperationSchema;
|
|
421
|
+
export declare var ListScanJobSummaries: StaticOperationSchema;
|
|
397
422
|
export declare var ListTags: StaticOperationSchema;
|
|
398
423
|
export declare var ListTieringConfigurations: StaticOperationSchema;
|
|
399
424
|
export declare var PutBackupVaultAccessPolicy: StaticOperationSchema;
|
|
@@ -405,6 +430,7 @@ export declare var StartBackupJob: StaticOperationSchema;
|
|
|
405
430
|
export declare var StartCopyJob: StaticOperationSchema;
|
|
406
431
|
export declare var StartReportJob: StaticOperationSchema;
|
|
407
432
|
export declare var StartRestoreJob: StaticOperationSchema;
|
|
433
|
+
export declare var StartScanJob: StaticOperationSchema;
|
|
408
434
|
export declare var StopBackupJob: StaticOperationSchema;
|
|
409
435
|
export declare var TagResource: StaticOperationSchema;
|
|
410
436
|
export declare var UntagResource: StaticOperationSchema;
|
|
@@ -144,6 +144,10 @@ import {
|
|
|
144
144
|
DescribeRestoreJobCommandInput,
|
|
145
145
|
DescribeRestoreJobCommandOutput,
|
|
146
146
|
} from "./commands/DescribeRestoreJobCommand";
|
|
147
|
+
import {
|
|
148
|
+
DescribeScanJobCommandInput,
|
|
149
|
+
DescribeScanJobCommandOutput,
|
|
150
|
+
} from "./commands/DescribeScanJobCommand";
|
|
147
151
|
import {
|
|
148
152
|
DisassociateBackupVaultMpaApprovalTeamCommandInput,
|
|
149
153
|
DisassociateBackupVaultMpaApprovalTeamCommandOutput,
|
|
@@ -320,6 +324,14 @@ import {
|
|
|
320
324
|
ListRestoreTestingSelectionsCommandInput,
|
|
321
325
|
ListRestoreTestingSelectionsCommandOutput,
|
|
322
326
|
} from "./commands/ListRestoreTestingSelectionsCommand";
|
|
327
|
+
import {
|
|
328
|
+
ListScanJobsCommandInput,
|
|
329
|
+
ListScanJobsCommandOutput,
|
|
330
|
+
} from "./commands/ListScanJobsCommand";
|
|
331
|
+
import {
|
|
332
|
+
ListScanJobSummariesCommandInput,
|
|
333
|
+
ListScanJobSummariesCommandOutput,
|
|
334
|
+
} from "./commands/ListScanJobSummariesCommand";
|
|
323
335
|
import {
|
|
324
336
|
ListTagsCommandInput,
|
|
325
337
|
ListTagsCommandOutput,
|
|
@@ -364,6 +376,10 @@ import {
|
|
|
364
376
|
StartRestoreJobCommandInput,
|
|
365
377
|
StartRestoreJobCommandOutput,
|
|
366
378
|
} from "./commands/StartRestoreJobCommand";
|
|
379
|
+
import {
|
|
380
|
+
StartScanJobCommandInput,
|
|
381
|
+
StartScanJobCommandOutput,
|
|
382
|
+
} from "./commands/StartScanJobCommand";
|
|
367
383
|
import {
|
|
368
384
|
StopBackupJobCommandInput,
|
|
369
385
|
StopBackupJobCommandOutput,
|
|
@@ -905,6 +921,19 @@ export interface Backup {
|
|
|
905
921
|
options: __HttpHandlerOptions,
|
|
906
922
|
cb: (err: any, data?: DescribeRestoreJobCommandOutput) => void
|
|
907
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;
|
|
908
937
|
disassociateBackupVaultMpaApprovalTeam(
|
|
909
938
|
args: DisassociateBackupVaultMpaApprovalTeamCommandInput,
|
|
910
939
|
options?: __HttpHandlerOptions
|
|
@@ -1524,6 +1553,34 @@ export interface Backup {
|
|
|
1524
1553
|
options: __HttpHandlerOptions,
|
|
1525
1554
|
cb: (err: any, data?: ListRestoreTestingSelectionsCommandOutput) => void
|
|
1526
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;
|
|
1527
1584
|
listTags(
|
|
1528
1585
|
args: ListTagsCommandInput,
|
|
1529
1586
|
options?: __HttpHandlerOptions
|
|
@@ -1668,6 +1725,19 @@ export interface Backup {
|
|
|
1668
1725
|
options: __HttpHandlerOptions,
|
|
1669
1726
|
cb: (err: any, data?: StartRestoreJobCommandOutput) => void
|
|
1670
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;
|
|
1671
1741
|
stopBackupJob(
|
|
1672
1742
|
args: StopBackupJobCommandInput,
|
|
1673
1743
|
options?: __HttpHandlerOptions
|
|
@@ -192,6 +192,10 @@ import {
|
|
|
192
192
|
DescribeRestoreJobCommandInput,
|
|
193
193
|
DescribeRestoreJobCommandOutput,
|
|
194
194
|
} from "./commands/DescribeRestoreJobCommand";
|
|
195
|
+
import {
|
|
196
|
+
DescribeScanJobCommandInput,
|
|
197
|
+
DescribeScanJobCommandOutput,
|
|
198
|
+
} from "./commands/DescribeScanJobCommand";
|
|
195
199
|
import {
|
|
196
200
|
DisassociateBackupVaultMpaApprovalTeamCommandInput,
|
|
197
201
|
DisassociateBackupVaultMpaApprovalTeamCommandOutput,
|
|
@@ -368,6 +372,14 @@ import {
|
|
|
368
372
|
ListRestoreTestingSelectionsCommandInput,
|
|
369
373
|
ListRestoreTestingSelectionsCommandOutput,
|
|
370
374
|
} from "./commands/ListRestoreTestingSelectionsCommand";
|
|
375
|
+
import {
|
|
376
|
+
ListScanJobsCommandInput,
|
|
377
|
+
ListScanJobsCommandOutput,
|
|
378
|
+
} from "./commands/ListScanJobsCommand";
|
|
379
|
+
import {
|
|
380
|
+
ListScanJobSummariesCommandInput,
|
|
381
|
+
ListScanJobSummariesCommandOutput,
|
|
382
|
+
} from "./commands/ListScanJobSummariesCommand";
|
|
371
383
|
import {
|
|
372
384
|
ListTagsCommandInput,
|
|
373
385
|
ListTagsCommandOutput,
|
|
@@ -412,6 +424,10 @@ import {
|
|
|
412
424
|
StartRestoreJobCommandInput,
|
|
413
425
|
StartRestoreJobCommandOutput,
|
|
414
426
|
} from "./commands/StartRestoreJobCommand";
|
|
427
|
+
import {
|
|
428
|
+
StartScanJobCommandInput,
|
|
429
|
+
StartScanJobCommandOutput,
|
|
430
|
+
} from "./commands/StartScanJobCommand";
|
|
415
431
|
import {
|
|
416
432
|
StopBackupJobCommandInput,
|
|
417
433
|
StopBackupJobCommandOutput,
|
|
@@ -508,6 +524,7 @@ export type ServiceInputTypes =
|
|
|
508
524
|
| DescribeReportJobCommandInput
|
|
509
525
|
| DescribeReportPlanCommandInput
|
|
510
526
|
| DescribeRestoreJobCommandInput
|
|
527
|
+
| DescribeScanJobCommandInput
|
|
511
528
|
| DisassociateBackupVaultMpaApprovalTeamCommandInput
|
|
512
529
|
| DisassociateRecoveryPointCommandInput
|
|
513
530
|
| DisassociateRecoveryPointFromParentCommandInput
|
|
@@ -552,6 +569,8 @@ export type ServiceInputTypes =
|
|
|
552
569
|
| ListRestoreJobsCommandInput
|
|
553
570
|
| ListRestoreTestingPlansCommandInput
|
|
554
571
|
| ListRestoreTestingSelectionsCommandInput
|
|
572
|
+
| ListScanJobSummariesCommandInput
|
|
573
|
+
| ListScanJobsCommandInput
|
|
555
574
|
| ListTagsCommandInput
|
|
556
575
|
| ListTieringConfigurationsCommandInput
|
|
557
576
|
| PutBackupVaultAccessPolicyCommandInput
|
|
@@ -563,6 +582,7 @@ export type ServiceInputTypes =
|
|
|
563
582
|
| StartCopyJobCommandInput
|
|
564
583
|
| StartReportJobCommandInput
|
|
565
584
|
| StartRestoreJobCommandInput
|
|
585
|
+
| StartScanJobCommandInput
|
|
566
586
|
| StopBackupJobCommandInput
|
|
567
587
|
| TagResourceCommandInput
|
|
568
588
|
| UntagResourceCommandInput
|
|
@@ -613,6 +633,7 @@ export type ServiceOutputTypes =
|
|
|
613
633
|
| DescribeReportJobCommandOutput
|
|
614
634
|
| DescribeReportPlanCommandOutput
|
|
615
635
|
| DescribeRestoreJobCommandOutput
|
|
636
|
+
| DescribeScanJobCommandOutput
|
|
616
637
|
| DisassociateBackupVaultMpaApprovalTeamCommandOutput
|
|
617
638
|
| DisassociateRecoveryPointCommandOutput
|
|
618
639
|
| DisassociateRecoveryPointFromParentCommandOutput
|
|
@@ -657,6 +678,8 @@ export type ServiceOutputTypes =
|
|
|
657
678
|
| ListRestoreJobsCommandOutput
|
|
658
679
|
| ListRestoreTestingPlansCommandOutput
|
|
659
680
|
| ListRestoreTestingSelectionsCommandOutput
|
|
681
|
+
| ListScanJobSummariesCommandOutput
|
|
682
|
+
| ListScanJobsCommandOutput
|
|
660
683
|
| ListTagsCommandOutput
|
|
661
684
|
| ListTieringConfigurationsCommandOutput
|
|
662
685
|
| PutBackupVaultAccessPolicyCommandOutput
|
|
@@ -668,6 +691,7 @@ export type ServiceOutputTypes =
|
|
|
668
691
|
| StartCopyJobCommandOutput
|
|
669
692
|
| StartReportJobCommandOutput
|
|
670
693
|
| StartRestoreJobCommandOutput
|
|
694
|
+
| StartScanJobCommandOutput
|
|
671
695
|
| StopBackupJobCommandOutput
|
|
672
696
|
| TagResourceCommandOutput
|
|
673
697
|
| UntagResourceCommandOutput
|
|
@@ -0,0 +1,50 @@
|
|
|
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
|
+
DescribeScanJobInput,
|
|
10
|
+
DescribeScanJobOutput,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface DescribeScanJobCommandInput extends DescribeScanJobInput {}
|
|
15
|
+
export interface DescribeScanJobCommandOutput
|
|
16
|
+
extends DescribeScanJobOutput,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const DescribeScanJobCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: DescribeScanJobCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
DescribeScanJobCommandInput,
|
|
23
|
+
DescribeScanJobCommandOutput,
|
|
24
|
+
BackupClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
input: DescribeScanJobCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
DescribeScanJobCommandInput,
|
|
32
|
+
DescribeScanJobCommandOutput,
|
|
33
|
+
BackupClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
|
+
};
|
|
39
|
+
export declare class DescribeScanJobCommand extends DescribeScanJobCommand_base {
|
|
40
|
+
protected static __types: {
|
|
41
|
+
api: {
|
|
42
|
+
input: DescribeScanJobInput;
|
|
43
|
+
output: DescribeScanJobOutput;
|
|
44
|
+
};
|
|
45
|
+
sdk: {
|
|
46
|
+
input: DescribeScanJobCommandInput;
|
|
47
|
+
output: DescribeScanJobCommandOutput;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
}
|
|
@@ -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
|
+
ListScanJobSummariesInput,
|
|
10
|
+
ListScanJobSummariesOutput,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ListScanJobSummariesCommandInput
|
|
15
|
+
extends ListScanJobSummariesInput {}
|
|
16
|
+
export interface ListScanJobSummariesCommandOutput
|
|
17
|
+
extends ListScanJobSummariesOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const ListScanJobSummariesCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: ListScanJobSummariesCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
ListScanJobSummariesCommandInput,
|
|
24
|
+
ListScanJobSummariesCommandOutput,
|
|
25
|
+
BackupClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
...[input]: [] | [ListScanJobSummariesCommandInput]
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
ListScanJobSummariesCommandInput,
|
|
33
|
+
ListScanJobSummariesCommandOutput,
|
|
34
|
+
BackupClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class ListScanJobSummariesCommand extends ListScanJobSummariesCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: ListScanJobSummariesInput;
|
|
44
|
+
output: ListScanJobSummariesOutput;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: ListScanJobSummariesCommandInput;
|
|
48
|
+
output: ListScanJobSummariesCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
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 { ListScanJobsInput, ListScanJobsOutput } from "../models/models_0";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface ListScanJobsCommandInput extends ListScanJobsInput {}
|
|
12
|
+
export interface ListScanJobsCommandOutput
|
|
13
|
+
extends ListScanJobsOutput,
|
|
14
|
+
__MetadataBearer {}
|
|
15
|
+
declare const ListScanJobsCommand_base: {
|
|
16
|
+
new (
|
|
17
|
+
input: ListScanJobsCommandInput
|
|
18
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
19
|
+
ListScanJobsCommandInput,
|
|
20
|
+
ListScanJobsCommandOutput,
|
|
21
|
+
BackupClientResolvedConfig,
|
|
22
|
+
ServiceInputTypes,
|
|
23
|
+
ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
new (
|
|
26
|
+
...[input]: [] | [ListScanJobsCommandInput]
|
|
27
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
28
|
+
ListScanJobsCommandInput,
|
|
29
|
+
ListScanJobsCommandOutput,
|
|
30
|
+
BackupClientResolvedConfig,
|
|
31
|
+
ServiceInputTypes,
|
|
32
|
+
ServiceOutputTypes
|
|
33
|
+
>;
|
|
34
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
35
|
+
};
|
|
36
|
+
export declare class ListScanJobsCommand extends ListScanJobsCommand_base {
|
|
37
|
+
protected static __types: {
|
|
38
|
+
api: {
|
|
39
|
+
input: ListScanJobsInput;
|
|
40
|
+
output: ListScanJobsOutput;
|
|
41
|
+
};
|
|
42
|
+
sdk: {
|
|
43
|
+
input: ListScanJobsCommandInput;
|
|
44
|
+
output: ListScanJobsCommandOutput;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
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 { StartScanJobInput, StartScanJobOutput } from "../models/models_0";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface StartScanJobCommandInput extends StartScanJobInput {}
|
|
12
|
+
export interface StartScanJobCommandOutput
|
|
13
|
+
extends StartScanJobOutput,
|
|
14
|
+
__MetadataBearer {}
|
|
15
|
+
declare const StartScanJobCommand_base: {
|
|
16
|
+
new (
|
|
17
|
+
input: StartScanJobCommandInput
|
|
18
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
19
|
+
StartScanJobCommandInput,
|
|
20
|
+
StartScanJobCommandOutput,
|
|
21
|
+
BackupClientResolvedConfig,
|
|
22
|
+
ServiceInputTypes,
|
|
23
|
+
ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
new (
|
|
26
|
+
input: StartScanJobCommandInput
|
|
27
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
28
|
+
StartScanJobCommandInput,
|
|
29
|
+
StartScanJobCommandOutput,
|
|
30
|
+
BackupClientResolvedConfig,
|
|
31
|
+
ServiceInputTypes,
|
|
32
|
+
ServiceOutputTypes
|
|
33
|
+
>;
|
|
34
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
35
|
+
};
|
|
36
|
+
export declare class StartScanJobCommand extends StartScanJobCommand_base {
|
|
37
|
+
protected static __types: {
|
|
38
|
+
api: {
|
|
39
|
+
input: StartScanJobInput;
|
|
40
|
+
output: StartScanJobOutput;
|
|
41
|
+
};
|
|
42
|
+
sdk: {
|
|
43
|
+
input: StartScanJobCommandInput;
|
|
44
|
+
output: StartScanJobCommandOutput;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
}
|
|
@@ -34,6 +34,7 @@ export * from "./DescribeRegionSettingsCommand";
|
|
|
34
34
|
export * from "./DescribeReportJobCommand";
|
|
35
35
|
export * from "./DescribeReportPlanCommand";
|
|
36
36
|
export * from "./DescribeRestoreJobCommand";
|
|
37
|
+
export * from "./DescribeScanJobCommand";
|
|
37
38
|
export * from "./DisassociateBackupVaultMpaApprovalTeamCommand";
|
|
38
39
|
export * from "./DisassociateRecoveryPointCommand";
|
|
39
40
|
export * from "./DisassociateRecoveryPointFromParentCommand";
|
|
@@ -78,6 +79,8 @@ export * from "./ListRestoreJobsByProtectedResourceCommand";
|
|
|
78
79
|
export * from "./ListRestoreJobsCommand";
|
|
79
80
|
export * from "./ListRestoreTestingPlansCommand";
|
|
80
81
|
export * from "./ListRestoreTestingSelectionsCommand";
|
|
82
|
+
export * from "./ListScanJobSummariesCommand";
|
|
83
|
+
export * from "./ListScanJobsCommand";
|
|
81
84
|
export * from "./ListTagsCommand";
|
|
82
85
|
export * from "./ListTieringConfigurationsCommand";
|
|
83
86
|
export * from "./PutBackupVaultAccessPolicyCommand";
|
|
@@ -89,6 +92,7 @@ export * from "./StartBackupJobCommand";
|
|
|
89
92
|
export * from "./StartCopyJobCommand";
|
|
90
93
|
export * from "./StartReportJobCommand";
|
|
91
94
|
export * from "./StartRestoreJobCommand";
|
|
95
|
+
export * from "./StartScanJobCommand";
|
|
92
96
|
export * from "./StopBackupJobCommand";
|
|
93
97
|
export * from "./TagResourceCommand";
|
|
94
98
|
export * from "./UntagResourceCommand";
|
|
@@ -5,5 +5,7 @@ export { RuntimeExtension } from "./runtimeExtensions";
|
|
|
5
5
|
export { BackupExtensionConfiguration } from "./extensionConfiguration";
|
|
6
6
|
export * from "./commands";
|
|
7
7
|
export * from "./pagination";
|
|
8
|
-
export * from "./models";
|
|
8
|
+
export * from "./models/enums";
|
|
9
|
+
export * from "./models/errors";
|
|
10
|
+
export * from "./models/models_0";
|
|
9
11
|
export { BackupServiceException } from "./models/BackupServiceException";
|