@aws-sdk/client-backup 3.1053.0 → 3.1055.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 +7 -0
- package/dist-cjs/index.js +15 -0
- package/dist-cjs/schemas/schemas_0.js +32 -12
- package/dist-es/Backup.js +2 -0
- package/dist-es/commands/GetPITRMalwareScanResultsCommand.js +16 -0
- package/dist-es/commands/index.js +1 -0
- package/dist-es/models/enums.js +1 -0
- package/dist-es/schemas/schemas_0.js +26 -6
- package/dist-types/Backup.d.ts +7 -0
- package/dist-types/BackupClient.d.ts +3 -2
- package/dist-types/commands/DescribeScanJobCommand.d.ts +3 -1
- package/dist-types/commands/GetPITRMalwareScanResultsCommand.d.ts +98 -0
- package/dist-types/commands/ListScanJobSummariesCommand.d.ts +2 -2
- package/dist-types/commands/ListScanJobsCommand.d.ts +4 -2
- package/dist-types/commands/StartScanJobCommand.d.ts +1 -0
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/models/enums.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +84 -1
- package/dist-types/schemas/schemas_0.d.ts +3 -0
- package/dist-types/ts3.4/Backup.d.ts +17 -0
- package/dist-types/ts3.4/BackupClient.d.ts +6 -0
- package/dist-types/ts3.4/commands/GetPITRMalwareScanResultsCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/models/enums.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +18 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +3 -0
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -521,6 +521,13 @@ GetLegalHold
|
|
|
521
521
|
</details>
|
|
522
522
|
<details>
|
|
523
523
|
<summary>
|
|
524
|
+
GetPITRMalwareScanResults
|
|
525
|
+
</summary>
|
|
526
|
+
|
|
527
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/backup/command/GetPITRMalwareScanResultsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-backup/Interface/GetPITRMalwareScanResultsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-backup/Interface/GetPITRMalwareScanResultsCommandOutput/)
|
|
528
|
+
</details>
|
|
529
|
+
<details>
|
|
530
|
+
<summary>
|
|
524
531
|
GetRecoveryPointIndexDetails
|
|
525
532
|
</summary>
|
|
526
533
|
|
package/dist-cjs/index.js
CHANGED
|
@@ -684,6 +684,18 @@ class GetLegalHoldCommand extends client.Command
|
|
|
684
684
|
.build() {
|
|
685
685
|
}
|
|
686
686
|
|
|
687
|
+
class GetPITRMalwareScanResultsCommand extends client.Command
|
|
688
|
+
.classBuilder()
|
|
689
|
+
.ep(commonParams)
|
|
690
|
+
.m(function (Command, cs, config, o) {
|
|
691
|
+
return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
692
|
+
})
|
|
693
|
+
.s("CryoControllerUserManager", "GetPITRMalwareScanResults", {})
|
|
694
|
+
.n("BackupClient", "GetPITRMalwareScanResultsCommand")
|
|
695
|
+
.sc(schemas_0.GetPITRMalwareScanResults$)
|
|
696
|
+
.build() {
|
|
697
|
+
}
|
|
698
|
+
|
|
687
699
|
class GetRecoveryPointIndexDetailsCommand extends client.Command
|
|
688
700
|
.classBuilder()
|
|
689
701
|
.ep(commonParams)
|
|
@@ -1511,6 +1523,7 @@ const commands = {
|
|
|
1511
1523
|
GetBackupVaultAccessPolicyCommand,
|
|
1512
1524
|
GetBackupVaultNotificationsCommand,
|
|
1513
1525
|
GetLegalHoldCommand,
|
|
1526
|
+
GetPITRMalwareScanResultsCommand,
|
|
1514
1527
|
GetRecoveryPointIndexDetailsCommand,
|
|
1515
1528
|
GetRecoveryPointRestoreMetadataCommand,
|
|
1516
1529
|
GetRestoreJobMetadataCommand,
|
|
@@ -1783,6 +1796,7 @@ const ScanResourceType = {
|
|
|
1783
1796
|
const ScanResultStatus = {
|
|
1784
1797
|
NO_THREATS_FOUND: "NO_THREATS_FOUND",
|
|
1785
1798
|
THREATS_FOUND: "THREATS_FOUND",
|
|
1799
|
+
UNKNOWN: "UNKNOWN",
|
|
1786
1800
|
};
|
|
1787
1801
|
const ScanState = {
|
|
1788
1802
|
CANCELED: "CANCELED",
|
|
@@ -1887,6 +1901,7 @@ exports.GetBackupSelectionCommand = GetBackupSelectionCommand;
|
|
|
1887
1901
|
exports.GetBackupVaultAccessPolicyCommand = GetBackupVaultAccessPolicyCommand;
|
|
1888
1902
|
exports.GetBackupVaultNotificationsCommand = GetBackupVaultNotificationsCommand;
|
|
1889
1903
|
exports.GetLegalHoldCommand = GetLegalHoldCommand;
|
|
1904
|
+
exports.GetPITRMalwareScanResultsCommand = GetPITRMalwareScanResultsCommand;
|
|
1890
1905
|
exports.GetRecoveryPointIndexDetailsCommand = GetRecoveryPointIndexDetailsCommand;
|
|
1891
1906
|
exports.GetRecoveryPointRestoreMetadataCommand = GetRecoveryPointRestoreMetadataCommand;
|
|
1892
1907
|
exports.GetRestoreJobMetadataCommand = GetRestoreJobMetadataCommand;
|
|
@@ -2,12 +2,12 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.CreateReportPlanInput$ = exports.CreateLogicallyAirGappedBackupVaultOutput$ = exports.CreateLogicallyAirGappedBackupVaultInput$ = exports.CreateLegalHoldOutput$ = exports.CreateLegalHoldInput$ = exports.CreateFrameworkOutput$ = exports.CreateFrameworkInput$ = exports.CreateBackupVaultOutput$ = exports.CreateBackupVaultInput$ = exports.CreateBackupSelectionOutput$ = exports.CreateBackupSelectionInput$ = exports.CreateBackupPlanOutput$ = exports.CreateBackupPlanInput$ = exports.CopyJobSummary$ = exports.CopyJob$ = exports.CopyAction$ = exports.ControlScope$ = exports.ControlInputParameter$ = exports.Conditions$ = exports.ConditionParameter$ = exports.Condition$ = exports.CancelLegalHoldOutput$ = exports.CancelLegalHoldInput$ = exports.CalculatedLifecycle$ = exports.BackupVaultListMember$ = exports.BackupSelectionsListMember$ = exports.BackupSelection$ = exports.BackupRuleInput$ = exports.BackupRule$ = exports.BackupPlanTemplatesListMember$ = exports.BackupPlansListMember$ = exports.BackupPlanInput$ = exports.BackupPlan$ = exports.BackupJobSummary$ = exports.BackupJob$ = exports.AssociateBackupVaultMpaApprovalTeamInput$ = exports.AggregatedScanResult$ = exports.AdvancedBackupSetting$ = exports.errorTypeRegistries = exports.ServiceUnavailableException$ = exports.ResourceNotFoundException$ = exports.MissingParameterValueException$ = exports.LimitExceededException$ = exports.InvalidResourceStateException$ = exports.InvalidRequestException$ = exports.InvalidParameterValueException$ = exports.DependencyFailureException$ = exports.ConflictException$ = exports.AlreadyExistsException$ = exports.BackupServiceException$ = void 0;
|
|
4
4
|
exports.DisassociateRecoveryPointFromParentInput$ = exports.DisassociateBackupVaultMpaApprovalTeamInput$ = exports.DescribeScanJobOutput$ = exports.DescribeScanJobInput$ = exports.DescribeRestoreJobOutput$ = exports.DescribeRestoreJobInput$ = exports.DescribeReportPlanOutput$ = exports.DescribeReportPlanInput$ = exports.DescribeReportJobOutput$ = exports.DescribeReportJobInput$ = exports.DescribeRegionSettingsOutput$ = exports.DescribeRegionSettingsInput$ = exports.DescribeRecoveryPointOutput$ = exports.DescribeRecoveryPointInput$ = exports.DescribeProtectedResourceOutput$ = exports.DescribeProtectedResourceInput$ = exports.DescribeGlobalSettingsOutput$ = exports.DescribeGlobalSettingsInput$ = exports.DescribeFrameworkOutput$ = exports.DescribeFrameworkInput$ = exports.DescribeCopyJobOutput$ = exports.DescribeCopyJobInput$ = exports.DescribeBackupVaultOutput$ = exports.DescribeBackupVaultInput$ = exports.DescribeBackupJobOutput$ = exports.DescribeBackupJobInput$ = exports.DeleteTieringConfigurationOutput$ = exports.DeleteTieringConfigurationInput$ = exports.DeleteRestoreTestingSelectionInput$ = exports.DeleteRestoreTestingPlanInput$ = exports.DeleteReportPlanInput$ = exports.DeleteRecoveryPointInput$ = exports.DeleteFrameworkInput$ = exports.DeleteBackupVaultNotificationsInput$ = exports.DeleteBackupVaultLockConfigurationInput$ = exports.DeleteBackupVaultInput$ = exports.DeleteBackupVaultAccessPolicyInput$ = exports.DeleteBackupSelectionInput$ = exports.DeleteBackupPlanOutput$ = exports.DeleteBackupPlanInput$ = exports.DateRange$ = exports.CreateTieringConfigurationOutput$ = exports.CreateTieringConfigurationInput$ = exports.CreateRestoreTestingSelectionOutput$ = exports.CreateRestoreTestingSelectionInput$ = exports.CreateRestoreTestingPlanOutput$ = exports.CreateRestoreTestingPlanInput$ = exports.CreateRestoreAccessBackupVaultOutput$ = exports.CreateRestoreAccessBackupVaultInput$ = exports.CreateReportPlanOutput$ = void 0;
|
|
5
|
-
exports.
|
|
6
|
-
exports.
|
|
7
|
-
exports.
|
|
8
|
-
exports.
|
|
9
|
-
exports.
|
|
10
|
-
exports.UpdateTieringConfiguration$ = exports.UpdateRestoreTestingSelection$ = exports.UpdateRestoreTestingPlan$ = exports.UpdateReportPlan$ = exports.UpdateRegionSettings$ = exports.UpdateRecoveryPointLifecycle$ = exports.UpdateRecoveryPointIndexSettings$ = exports.UpdateGlobalSettings$ = exports.UpdateFramework$ = exports.UpdateBackupPlan$ = exports.UntagResource$ = exports.TagResource$ = exports.StopBackupJob$ = exports.StartScanJob$ = exports.StartRestoreJob$ = exports.StartReportJob$ = exports.StartCopyJob$ = exports.StartBackupJob$ = exports.RevokeRestoreAccessBackupVault$ = exports.PutRestoreValidationResult$ = exports.PutBackupVaultNotifications$ = exports.PutBackupVaultLockConfiguration$ = exports.PutBackupVaultAccessPolicy$ = exports.ListTieringConfigurations$ = exports.ListTags$ = exports.ListScanJobSummaries$ = exports.ListScanJobs$ = exports.ListRestoreTestingSelections$ = exports.ListRestoreTestingPlans$ = exports.ListRestoreJobSummaries$ = exports.ListRestoreJobsByProtectedResource$ = void 0;
|
|
5
|
+
exports.ListBackupPlanTemplatesInput$ = exports.ListBackupPlansOutput$ = exports.ListBackupPlansInput$ = exports.ListBackupJobSummariesOutput$ = exports.ListBackupJobSummariesInput$ = exports.ListBackupJobsOutput$ = exports.ListBackupJobsInput$ = exports.Lifecycle$ = exports.LegalHold$ = exports.LatestRevokeRequest$ = exports.LatestMpaApprovalTeamUpdate$ = exports.KeyValue$ = exports.IndexedRecoveryPoint$ = exports.IndexAction$ = exports.GetTieringConfigurationOutput$ = exports.GetTieringConfigurationInput$ = exports.GetSupportedResourceTypesOutput$ = exports.GetRestoreTestingSelectionOutput$ = exports.GetRestoreTestingSelectionInput$ = exports.GetRestoreTestingPlanOutput$ = exports.GetRestoreTestingPlanInput$ = exports.GetRestoreTestingInferredMetadataOutput$ = exports.GetRestoreTestingInferredMetadataInput$ = exports.GetRestoreJobMetadataOutput$ = exports.GetRestoreJobMetadataInput$ = exports.GetRecoveryPointRestoreMetadataOutput$ = exports.GetRecoveryPointRestoreMetadataInput$ = exports.GetRecoveryPointIndexDetailsOutput$ = exports.GetRecoveryPointIndexDetailsInput$ = exports.GetPITRMalwareScanResultsOutput$ = exports.GetPITRMalwareScanResultsInput$ = exports.GetLegalHoldOutput$ = exports.GetLegalHoldInput$ = exports.GetBackupVaultNotificationsOutput$ = exports.GetBackupVaultNotificationsInput$ = exports.GetBackupVaultAccessPolicyOutput$ = exports.GetBackupVaultAccessPolicyInput$ = exports.GetBackupSelectionOutput$ = exports.GetBackupSelectionInput$ = exports.GetBackupPlanOutput$ = exports.GetBackupPlanInput$ = exports.GetBackupPlanFromTemplateOutput$ = exports.GetBackupPlanFromTemplateInput$ = exports.GetBackupPlanFromJSONOutput$ = exports.GetBackupPlanFromJSONInput$ = exports.FrameworkControl$ = exports.Framework$ = exports.ExportBackupPlanTemplateOutput$ = exports.ExportBackupPlanTemplateInput$ = exports.DisassociateRecoveryPointInput$ = void 0;
|
|
6
|
+
exports.ListTieringConfigurationsInput$ = exports.ListTagsOutput$ = exports.ListTagsInput$ = exports.ListScanJobSummariesOutput$ = exports.ListScanJobSummariesInput$ = exports.ListScanJobsOutput$ = exports.ListScanJobsInput$ = exports.ListRestoreTestingSelectionsOutput$ = exports.ListRestoreTestingSelectionsInput$ = exports.ListRestoreTestingPlansOutput$ = exports.ListRestoreTestingPlansInput$ = exports.ListRestoreJobSummariesOutput$ = exports.ListRestoreJobSummariesInput$ = exports.ListRestoreJobsOutput$ = exports.ListRestoreJobsInput$ = exports.ListRestoreJobsByProtectedResourceOutput$ = exports.ListRestoreJobsByProtectedResourceInput$ = exports.ListRestoreAccessBackupVaultsOutput$ = exports.ListRestoreAccessBackupVaultsInput$ = exports.ListReportPlansOutput$ = exports.ListReportPlansInput$ = exports.ListReportJobsOutput$ = exports.ListReportJobsInput$ = exports.ListRecoveryPointsByResourceOutput$ = exports.ListRecoveryPointsByResourceInput$ = exports.ListRecoveryPointsByLegalHoldOutput$ = exports.ListRecoveryPointsByLegalHoldInput$ = exports.ListRecoveryPointsByBackupVaultOutput$ = exports.ListRecoveryPointsByBackupVaultInput$ = exports.ListProtectedResourcesOutput$ = exports.ListProtectedResourcesInput$ = exports.ListProtectedResourcesByBackupVaultOutput$ = exports.ListProtectedResourcesByBackupVaultInput$ = exports.ListLegalHoldsOutput$ = exports.ListLegalHoldsInput$ = exports.ListIndexedRecoveryPointsOutput$ = exports.ListIndexedRecoveryPointsInput$ = exports.ListFrameworksOutput$ = exports.ListFrameworksInput$ = exports.ListCopyJobSummariesOutput$ = exports.ListCopyJobSummariesInput$ = exports.ListCopyJobsOutput$ = exports.ListCopyJobsInput$ = exports.ListBackupVaultsOutput$ = exports.ListBackupVaultsInput$ = exports.ListBackupSelectionsOutput$ = exports.ListBackupSelectionsInput$ = exports.ListBackupPlanVersionsOutput$ = exports.ListBackupPlanVersionsInput$ = exports.ListBackupPlanTemplatesOutput$ = void 0;
|
|
7
|
+
exports.StartScanJobOutput$ = exports.StartScanJobInput$ = exports.StartRestoreJobOutput$ = exports.StartRestoreJobInput$ = exports.StartReportJobOutput$ = exports.StartReportJobInput$ = exports.StartCopyJobOutput$ = exports.StartCopyJobInput$ = exports.StartBackupJobOutput$ = exports.StartBackupJobInput$ = exports.ScheduledPlanExecutionMember$ = exports.ScanSetting$ = exports.ScanResultInfo$ = exports.ScanResult$ = exports.ScanJobSummary$ = exports.ScanJobCreator$ = exports.ScanJob$ = exports.ScanAction$ = exports.RevokeRestoreAccessBackupVaultInput$ = exports.RestoreTestingSelectionForUpdate$ = exports.RestoreTestingSelectionForList$ = exports.RestoreTestingSelectionForGet$ = exports.RestoreTestingSelectionForCreate$ = exports.RestoreTestingRecoveryPointSelection$ = exports.RestoreTestingPlanForUpdate$ = exports.RestoreTestingPlanForList$ = exports.RestoreTestingPlanForGet$ = exports.RestoreTestingPlanForCreate$ = exports.RestoreJobSummary$ = exports.RestoreJobsListMember$ = exports.RestoreJobCreator$ = exports.RestoreAccessBackupVaultListMember$ = exports.ResourceSelection$ = exports.ReportSetting$ = exports.ReportPlan$ = exports.ReportJob$ = exports.ReportDestination$ = exports.ReportDeliveryChannel$ = exports.RecoveryPointSelection$ = exports.RecoveryPointMember$ = exports.RecoveryPointCreator$ = exports.RecoveryPointByResource$ = exports.RecoveryPointByBackupVault$ = exports.PutRestoreValidationResultInput$ = exports.PutBackupVaultNotificationsInput$ = exports.PutBackupVaultLockConfigurationInput$ = exports.PutBackupVaultAccessPolicyInput$ = exports.ProtectedResourceConditions$ = exports.ProtectedResource$ = exports.ListTieringConfigurationsOutput$ = void 0;
|
|
8
|
+
exports.DeleteTieringConfiguration$ = exports.DeleteRestoreTestingSelection$ = exports.DeleteRestoreTestingPlan$ = exports.DeleteReportPlan$ = exports.DeleteRecoveryPoint$ = exports.DeleteFramework$ = exports.DeleteBackupVaultNotifications$ = exports.DeleteBackupVaultLockConfiguration$ = exports.DeleteBackupVaultAccessPolicy$ = exports.DeleteBackupVault$ = exports.DeleteBackupSelection$ = exports.DeleteBackupPlan$ = exports.CreateTieringConfiguration$ = exports.CreateRestoreTestingSelection$ = exports.CreateRestoreTestingPlan$ = exports.CreateRestoreAccessBackupVault$ = exports.CreateReportPlan$ = exports.CreateLogicallyAirGappedBackupVault$ = exports.CreateLegalHold$ = exports.CreateFramework$ = exports.CreateBackupVault$ = exports.CreateBackupSelection$ = exports.CreateBackupPlan$ = exports.CancelLegalHold$ = exports.AssociateBackupVaultMpaApprovalTeam$ = exports.UpdateTieringConfigurationOutput$ = exports.UpdateTieringConfigurationInput$ = exports.UpdateRestoreTestingSelectionOutput$ = exports.UpdateRestoreTestingSelectionInput$ = exports.UpdateRestoreTestingPlanOutput$ = exports.UpdateRestoreTestingPlanInput$ = exports.UpdateReportPlanOutput$ = exports.UpdateReportPlanInput$ = exports.UpdateRegionSettingsInput$ = exports.UpdateRecoveryPointLifecycleOutput$ = exports.UpdateRecoveryPointLifecycleInput$ = exports.UpdateRecoveryPointIndexSettingsOutput$ = exports.UpdateRecoveryPointIndexSettingsInput$ = exports.UpdateGlobalSettingsInput$ = exports.UpdateFrameworkOutput$ = exports.UpdateFrameworkInput$ = exports.UpdateBackupPlanOutput$ = exports.UpdateBackupPlanInput$ = exports.UntagResourceInput$ = exports.TieringConfigurationsListMember$ = exports.TieringConfigurationInputForUpdate$ = exports.TieringConfigurationInputForCreate$ = exports.TieringConfiguration$ = exports.TagResourceInput$ = exports.StopBackupJobInput$ = void 0;
|
|
9
|
+
exports.ListReportJobs$ = exports.ListRecoveryPointsByResource$ = exports.ListRecoveryPointsByLegalHold$ = exports.ListRecoveryPointsByBackupVault$ = exports.ListProtectedResourcesByBackupVault$ = exports.ListProtectedResources$ = exports.ListLegalHolds$ = exports.ListIndexedRecoveryPoints$ = exports.ListFrameworks$ = exports.ListCopyJobSummaries$ = exports.ListCopyJobs$ = exports.ListBackupVaults$ = exports.ListBackupSelections$ = exports.ListBackupPlanVersions$ = exports.ListBackupPlanTemplates$ = exports.ListBackupPlans$ = exports.ListBackupJobSummaries$ = exports.ListBackupJobs$ = exports.GetTieringConfiguration$ = exports.GetSupportedResourceTypes$ = exports.GetRestoreTestingSelection$ = exports.GetRestoreTestingPlan$ = exports.GetRestoreTestingInferredMetadata$ = exports.GetRestoreJobMetadata$ = exports.GetRecoveryPointRestoreMetadata$ = exports.GetRecoveryPointIndexDetails$ = exports.GetPITRMalwareScanResults$ = exports.GetLegalHold$ = exports.GetBackupVaultNotifications$ = exports.GetBackupVaultAccessPolicy$ = exports.GetBackupSelection$ = exports.GetBackupPlanFromTemplate$ = exports.GetBackupPlanFromJSON$ = exports.GetBackupPlan$ = exports.ExportBackupPlanTemplate$ = exports.DisassociateRecoveryPointFromParent$ = exports.DisassociateRecoveryPoint$ = exports.DisassociateBackupVaultMpaApprovalTeam$ = exports.DescribeScanJob$ = exports.DescribeRestoreJob$ = exports.DescribeReportPlan$ = exports.DescribeReportJob$ = exports.DescribeRegionSettings$ = exports.DescribeRecoveryPoint$ = exports.DescribeProtectedResource$ = exports.DescribeGlobalSettings$ = exports.DescribeFramework$ = exports.DescribeCopyJob$ = exports.DescribeBackupVault$ = exports.DescribeBackupJob$ = void 0;
|
|
10
|
+
exports.UpdateTieringConfiguration$ = exports.UpdateRestoreTestingSelection$ = exports.UpdateRestoreTestingPlan$ = exports.UpdateReportPlan$ = exports.UpdateRegionSettings$ = exports.UpdateRecoveryPointLifecycle$ = exports.UpdateRecoveryPointIndexSettings$ = exports.UpdateGlobalSettings$ = exports.UpdateFramework$ = exports.UpdateBackupPlan$ = exports.UntagResource$ = exports.TagResource$ = exports.StopBackupJob$ = exports.StartScanJob$ = exports.StartRestoreJob$ = exports.StartReportJob$ = exports.StartCopyJob$ = exports.StartBackupJob$ = exports.RevokeRestoreAccessBackupVault$ = exports.PutRestoreValidationResult$ = exports.PutBackupVaultNotifications$ = exports.PutBackupVaultLockConfiguration$ = exports.PutBackupVaultAccessPolicy$ = exports.ListTieringConfigurations$ = exports.ListTags$ = exports.ListScanJobSummaries$ = exports.ListScanJobs$ = exports.ListRestoreTestingSelections$ = exports.ListRestoreTestingPlans$ = exports.ListRestoreJobSummaries$ = exports.ListRestoreJobsByProtectedResource$ = exports.ListRestoreJobs$ = exports.ListRestoreAccessBackupVaults$ = exports.ListReportPlans$ = void 0;
|
|
11
11
|
const _A = "Arn";
|
|
12
12
|
const _ABS = "AdvancedBackupSetting";
|
|
13
13
|
const _ABSd = "AdvancedBackupSettings";
|
|
@@ -163,6 +163,8 @@ const _CRTS = "CreateRestoreTestingSelection";
|
|
|
163
163
|
const _CRTSI = "CreateRestoreTestingSelectionInput";
|
|
164
164
|
const _CRTSO = "CreateRestoreTestingSelectionOutput";
|
|
165
165
|
const _CS = "ControlScope";
|
|
166
|
+
const _CSET = "ContinuousScanEndTime";
|
|
167
|
+
const _CSST = "ContinuousScanStartTime";
|
|
166
168
|
const _CSTTRR = "CopySourceTagsToRestoredResource";
|
|
167
169
|
const _CT = "ConditionType";
|
|
168
170
|
const _CTC = "CreateTieringConfiguration";
|
|
@@ -309,6 +311,9 @@ const _GBVNO = "GetBackupVaultNotificationsOutput";
|
|
|
309
311
|
const _GLH = "GetLegalHold";
|
|
310
312
|
const _GLHI = "GetLegalHoldInput";
|
|
311
313
|
const _GLHO = "GetLegalHoldOutput";
|
|
314
|
+
const _GPITRMSR = "GetPITRMalwareScanResults";
|
|
315
|
+
const _GPITRMSRI = "GetPITRMalwareScanResultsInput";
|
|
316
|
+
const _GPITRMSRO = "GetPITRMalwareScanResultsOutput";
|
|
312
317
|
const _GRJM = "GetRestoreJobMetadata";
|
|
313
318
|
const _GRJMI = "GetRestoreJobMetadataInput";
|
|
314
319
|
const _GRJMO = "GetRestoreJobMetadataOutput";
|
|
@@ -463,6 +468,7 @@ const _LSJO = "ListScanJobsOutput";
|
|
|
463
468
|
const _LSJS = "ListScanJobSummaries";
|
|
464
469
|
const _LSJSI = "ListScanJobSummariesInput";
|
|
465
470
|
const _LSJSO = "ListScanJobSummariesOutput";
|
|
471
|
+
const _LSJT = "LastScanJobTime";
|
|
466
472
|
const _LST = "LastScanTimestamp";
|
|
467
473
|
const _LT = "ListTags";
|
|
468
474
|
const _LTC = "ListTieringConfigurations";
|
|
@@ -616,6 +622,7 @@ const _SCJI = "StartCopyJobInput";
|
|
|
616
622
|
const _SCJO = "StartCopyJobOutput";
|
|
617
623
|
const _SE = "ScheduleExpression";
|
|
618
624
|
const _SET = "ScheduleExpressionTimezone";
|
|
625
|
+
const _SETc = "ScanEndTime";
|
|
619
626
|
const _SEt = "StringEquals";
|
|
620
627
|
const _SI = "SelectionId";
|
|
621
628
|
const _SIc = "ScanId";
|
|
@@ -1263,8 +1270,8 @@ exports.DescribeScanJobInput$ = [3, n0, _DSJI,
|
|
|
1263
1270
|
];
|
|
1264
1271
|
exports.DescribeScanJobOutput$ = [3, n0, _DSJO,
|
|
1265
1272
|
0,
|
|
1266
|
-
[_AI, _BVA, _BVN, _CB, _CD, _IRA, _MS, _RPA, _RA, _RN, _RT, _SJI, _SMc, _SRAc, _S, _CDo, _SBRPA, _SIc, _SRc, _SM],
|
|
1267
|
-
[0, 0, 0, () => exports.ScanJobCreator$, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, () => exports.ScanResultInfo$, 0], 15
|
|
1273
|
+
[_AI, _BVA, _BVN, _CB, _CD, _IRA, _MS, _RPA, _RA, _RN, _RT, _SJI, _SMc, _SRAc, _S, _CDo, _CSET, _CSST, _SBRPA, _SIc, _SRc, _SM],
|
|
1274
|
+
[0, 0, 0, () => exports.ScanJobCreator$, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 0, 0, () => exports.ScanResultInfo$, 0], 15
|
|
1268
1275
|
];
|
|
1269
1276
|
exports.DisassociateBackupVaultMpaApprovalTeamInput$ = [3, n0, _DBVMATI,
|
|
1270
1277
|
0,
|
|
@@ -1371,6 +1378,16 @@ exports.GetLegalHoldOutput$ = [3, n0, _GLHO,
|
|
|
1371
1378
|
[_Ti, _St, _D, _CDa, _LHI, _LHA, _CD, _CDan, _RRU, _RPS],
|
|
1372
1379
|
[0, 0, 0, 0, 0, 0, 4, 4, 4, () => exports.RecoveryPointSelection$]
|
|
1373
1380
|
];
|
|
1381
|
+
exports.GetPITRMalwareScanResultsInput$ = [3, n0, _GPITRMSRI,
|
|
1382
|
+
0,
|
|
1383
|
+
[_RPA, _BVN, _SETc, _MS],
|
|
1384
|
+
[[0, { [_hQ]: _RPA }], [0, { [_hQ]: _BVN }], [4, { [_hQ]: _SETc }], [0, { [_hQ]: _MS }]], 4
|
|
1385
|
+
];
|
|
1386
|
+
exports.GetPITRMalwareScanResultsOutput$ = [3, n0, _GPITRMSRO,
|
|
1387
|
+
0,
|
|
1388
|
+
[_SETc, _SRc, _LSJT, _SIc, _SMc],
|
|
1389
|
+
[4, () => exports.ScanResultInfo$, 4, 0, 0], 2
|
|
1390
|
+
];
|
|
1374
1391
|
exports.GetRecoveryPointIndexDetailsInput$ = [3, n0, _GRPIDI,
|
|
1375
1392
|
0,
|
|
1376
1393
|
[_BVN, _RPA],
|
|
@@ -1933,8 +1950,8 @@ exports.ScanAction$ = [3, n0, _SAc,
|
|
|
1933
1950
|
];
|
|
1934
1951
|
exports.ScanJob$ = [3, n0, _SJc,
|
|
1935
1952
|
0,
|
|
1936
|
-
[_AI, _BVA, _BVN, _CB, _CD, _IRA, _MS, _RPA, _RA, _RN, _RT, _SJI, _SMc, _SRAc, _CDo, _SBRPA, _SIc, _SRc, _S, _SM],
|
|
1937
|
-
[0, 0, 0, () => exports.ScanJobCreator$, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, () => exports.ScanResultInfo$, 0, 0], 14
|
|
1953
|
+
[_AI, _BVA, _BVN, _CB, _CD, _IRA, _MS, _RPA, _RA, _RN, _RT, _SJI, _SMc, _SRAc, _CDo, _CSET, _CSST, _SBRPA, _SIc, _SRc, _S, _SM],
|
|
1954
|
+
[0, 0, 0, () => exports.ScanJobCreator$, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 0, 0, () => exports.ScanResultInfo$, 0, 0], 14
|
|
1938
1955
|
];
|
|
1939
1956
|
exports.ScanJobCreator$ = [3, n0, _SJC,
|
|
1940
1957
|
0,
|
|
@@ -2008,8 +2025,8 @@ exports.StartRestoreJobOutput$ = [3, n0, _SRJOt,
|
|
|
2008
2025
|
];
|
|
2009
2026
|
exports.StartScanJobInput$ = [3, n0, _SSJI,
|
|
2010
2027
|
0,
|
|
2011
|
-
[_BVN, _IRA, _MS, _RPA, _SMc, _SRAc, _IT, _SBRPA],
|
|
2012
|
-
[0, 0, 0, 0, 0, 0, 0, 0], 6
|
|
2028
|
+
[_BVN, _IRA, _MS, _RPA, _SMc, _SRAc, _CSET, _IT, _SBRPA],
|
|
2029
|
+
[0, 0, 0, 0, 0, 0, 4, 0, 0], 6
|
|
2013
2030
|
];
|
|
2014
2031
|
exports.StartScanJobOutput$ = [3, n0, _SSJO,
|
|
2015
2032
|
0,
|
|
@@ -2441,6 +2458,9 @@ exports.GetBackupVaultNotifications$ = [9, n0, _GBVN,
|
|
|
2441
2458
|
exports.GetLegalHold$ = [9, n0, _GLH,
|
|
2442
2459
|
{ [_h]: ["GET", "/legal-holds/{LegalHoldId}", 200] }, () => exports.GetLegalHoldInput$, () => exports.GetLegalHoldOutput$
|
|
2443
2460
|
];
|
|
2461
|
+
exports.GetPITRMalwareScanResults$ = [9, n0, _GPITRMSR,
|
|
2462
|
+
{ [_h]: ["GET", "/scan/pitr-malware-scan-results", 200] }, () => exports.GetPITRMalwareScanResultsInput$, () => exports.GetPITRMalwareScanResultsOutput$
|
|
2463
|
+
];
|
|
2444
2464
|
exports.GetRecoveryPointIndexDetails$ = [9, n0, _GRPID,
|
|
2445
2465
|
{ [_h]: ["GET", "/backup-vaults/{BackupVaultName}/recovery-points/{RecoveryPointArn}/index", 200] }, () => exports.GetRecoveryPointIndexDetailsInput$, () => exports.GetRecoveryPointIndexDetailsOutput$
|
|
2446
2466
|
];
|
package/dist-es/Backup.js
CHANGED
|
@@ -48,6 +48,7 @@ import { GetBackupSelectionCommand, } from "./commands/GetBackupSelectionCommand
|
|
|
48
48
|
import { GetBackupVaultAccessPolicyCommand, } from "./commands/GetBackupVaultAccessPolicyCommand";
|
|
49
49
|
import { GetBackupVaultNotificationsCommand, } from "./commands/GetBackupVaultNotificationsCommand";
|
|
50
50
|
import { GetLegalHoldCommand, } from "./commands/GetLegalHoldCommand";
|
|
51
|
+
import { GetPITRMalwareScanResultsCommand, } from "./commands/GetPITRMalwareScanResultsCommand";
|
|
51
52
|
import { GetRecoveryPointIndexDetailsCommand, } from "./commands/GetRecoveryPointIndexDetailsCommand";
|
|
52
53
|
import { GetRecoveryPointRestoreMetadataCommand, } from "./commands/GetRecoveryPointRestoreMetadataCommand";
|
|
53
54
|
import { GetRestoreJobMetadataCommand, } from "./commands/GetRestoreJobMetadataCommand";
|
|
@@ -186,6 +187,7 @@ const commands = {
|
|
|
186
187
|
GetBackupVaultAccessPolicyCommand,
|
|
187
188
|
GetBackupVaultNotificationsCommand,
|
|
188
189
|
GetLegalHoldCommand,
|
|
190
|
+
GetPITRMalwareScanResultsCommand,
|
|
189
191
|
GetRecoveryPointIndexDetailsCommand,
|
|
190
192
|
GetRecoveryPointRestoreMetadataCommand,
|
|
191
193
|
GetRestoreJobMetadataCommand,
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { GetPITRMalwareScanResults$ } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class GetPITRMalwareScanResultsCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("CryoControllerUserManager", "GetPITRMalwareScanResults", {})
|
|
13
|
+
.n("BackupClient", "GetPITRMalwareScanResultsCommand")
|
|
14
|
+
.sc(GetPITRMalwareScanResults$)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -46,6 +46,7 @@ export * from "./GetBackupSelectionCommand";
|
|
|
46
46
|
export * from "./GetBackupVaultAccessPolicyCommand";
|
|
47
47
|
export * from "./GetBackupVaultNotificationsCommand";
|
|
48
48
|
export * from "./GetLegalHoldCommand";
|
|
49
|
+
export * from "./GetPITRMalwareScanResultsCommand";
|
|
49
50
|
export * from "./GetRecoveryPointIndexDetailsCommand";
|
|
50
51
|
export * from "./GetRecoveryPointRestoreMetadataCommand";
|
|
51
52
|
export * from "./GetRestoreJobMetadataCommand";
|
package/dist-es/models/enums.js
CHANGED
|
@@ -153,6 +153,8 @@ const _CRTS = "CreateRestoreTestingSelection";
|
|
|
153
153
|
const _CRTSI = "CreateRestoreTestingSelectionInput";
|
|
154
154
|
const _CRTSO = "CreateRestoreTestingSelectionOutput";
|
|
155
155
|
const _CS = "ControlScope";
|
|
156
|
+
const _CSET = "ContinuousScanEndTime";
|
|
157
|
+
const _CSST = "ContinuousScanStartTime";
|
|
156
158
|
const _CSTTRR = "CopySourceTagsToRestoredResource";
|
|
157
159
|
const _CT = "ConditionType";
|
|
158
160
|
const _CTC = "CreateTieringConfiguration";
|
|
@@ -299,6 +301,9 @@ const _GBVNO = "GetBackupVaultNotificationsOutput";
|
|
|
299
301
|
const _GLH = "GetLegalHold";
|
|
300
302
|
const _GLHI = "GetLegalHoldInput";
|
|
301
303
|
const _GLHO = "GetLegalHoldOutput";
|
|
304
|
+
const _GPITRMSR = "GetPITRMalwareScanResults";
|
|
305
|
+
const _GPITRMSRI = "GetPITRMalwareScanResultsInput";
|
|
306
|
+
const _GPITRMSRO = "GetPITRMalwareScanResultsOutput";
|
|
302
307
|
const _GRJM = "GetRestoreJobMetadata";
|
|
303
308
|
const _GRJMI = "GetRestoreJobMetadataInput";
|
|
304
309
|
const _GRJMO = "GetRestoreJobMetadataOutput";
|
|
@@ -453,6 +458,7 @@ const _LSJO = "ListScanJobsOutput";
|
|
|
453
458
|
const _LSJS = "ListScanJobSummaries";
|
|
454
459
|
const _LSJSI = "ListScanJobSummariesInput";
|
|
455
460
|
const _LSJSO = "ListScanJobSummariesOutput";
|
|
461
|
+
const _LSJT = "LastScanJobTime";
|
|
456
462
|
const _LST = "LastScanTimestamp";
|
|
457
463
|
const _LT = "ListTags";
|
|
458
464
|
const _LTC = "ListTieringConfigurations";
|
|
@@ -606,6 +612,7 @@ const _SCJI = "StartCopyJobInput";
|
|
|
606
612
|
const _SCJO = "StartCopyJobOutput";
|
|
607
613
|
const _SE = "ScheduleExpression";
|
|
608
614
|
const _SET = "ScheduleExpressionTimezone";
|
|
615
|
+
const _SETc = "ScanEndTime";
|
|
609
616
|
const _SEt = "StringEquals";
|
|
610
617
|
const _SI = "SelectionId";
|
|
611
618
|
const _SIc = "ScanId";
|
|
@@ -1253,8 +1260,8 @@ export var DescribeScanJobInput$ = [3, n0, _DSJI,
|
|
|
1253
1260
|
];
|
|
1254
1261
|
export var DescribeScanJobOutput$ = [3, n0, _DSJO,
|
|
1255
1262
|
0,
|
|
1256
|
-
[_AI, _BVA, _BVN, _CB, _CD, _IRA, _MS, _RPA, _RA, _RN, _RT, _SJI, _SMc, _SRAc, _S, _CDo, _SBRPA, _SIc, _SRc, _SM],
|
|
1257
|
-
[0, 0, 0, () => ScanJobCreator$, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, () => ScanResultInfo$, 0], 15
|
|
1263
|
+
[_AI, _BVA, _BVN, _CB, _CD, _IRA, _MS, _RPA, _RA, _RN, _RT, _SJI, _SMc, _SRAc, _S, _CDo, _CSET, _CSST, _SBRPA, _SIc, _SRc, _SM],
|
|
1264
|
+
[0, 0, 0, () => ScanJobCreator$, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 0, 0, () => ScanResultInfo$, 0], 15
|
|
1258
1265
|
];
|
|
1259
1266
|
export var DisassociateBackupVaultMpaApprovalTeamInput$ = [3, n0, _DBVMATI,
|
|
1260
1267
|
0,
|
|
@@ -1361,6 +1368,16 @@ export var GetLegalHoldOutput$ = [3, n0, _GLHO,
|
|
|
1361
1368
|
[_Ti, _St, _D, _CDa, _LHI, _LHA, _CD, _CDan, _RRU, _RPS],
|
|
1362
1369
|
[0, 0, 0, 0, 0, 0, 4, 4, 4, () => RecoveryPointSelection$]
|
|
1363
1370
|
];
|
|
1371
|
+
export var GetPITRMalwareScanResultsInput$ = [3, n0, _GPITRMSRI,
|
|
1372
|
+
0,
|
|
1373
|
+
[_RPA, _BVN, _SETc, _MS],
|
|
1374
|
+
[[0, { [_hQ]: _RPA }], [0, { [_hQ]: _BVN }], [4, { [_hQ]: _SETc }], [0, { [_hQ]: _MS }]], 4
|
|
1375
|
+
];
|
|
1376
|
+
export var GetPITRMalwareScanResultsOutput$ = [3, n0, _GPITRMSRO,
|
|
1377
|
+
0,
|
|
1378
|
+
[_SETc, _SRc, _LSJT, _SIc, _SMc],
|
|
1379
|
+
[4, () => ScanResultInfo$, 4, 0, 0], 2
|
|
1380
|
+
];
|
|
1364
1381
|
export var GetRecoveryPointIndexDetailsInput$ = [3, n0, _GRPIDI,
|
|
1365
1382
|
0,
|
|
1366
1383
|
[_BVN, _RPA],
|
|
@@ -1923,8 +1940,8 @@ export var ScanAction$ = [3, n0, _SAc,
|
|
|
1923
1940
|
];
|
|
1924
1941
|
export var ScanJob$ = [3, n0, _SJc,
|
|
1925
1942
|
0,
|
|
1926
|
-
[_AI, _BVA, _BVN, _CB, _CD, _IRA, _MS, _RPA, _RA, _RN, _RT, _SJI, _SMc, _SRAc, _CDo, _SBRPA, _SIc, _SRc, _S, _SM],
|
|
1927
|
-
[0, 0, 0, () => ScanJobCreator$, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, () => ScanResultInfo$, 0, 0], 14
|
|
1943
|
+
[_AI, _BVA, _BVN, _CB, _CD, _IRA, _MS, _RPA, _RA, _RN, _RT, _SJI, _SMc, _SRAc, _CDo, _CSET, _CSST, _SBRPA, _SIc, _SRc, _S, _SM],
|
|
1944
|
+
[0, 0, 0, () => ScanJobCreator$, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 0, 0, () => ScanResultInfo$, 0, 0], 14
|
|
1928
1945
|
];
|
|
1929
1946
|
export var ScanJobCreator$ = [3, n0, _SJC,
|
|
1930
1947
|
0,
|
|
@@ -1998,8 +2015,8 @@ export var StartRestoreJobOutput$ = [3, n0, _SRJOt,
|
|
|
1998
2015
|
];
|
|
1999
2016
|
export var StartScanJobInput$ = [3, n0, _SSJI,
|
|
2000
2017
|
0,
|
|
2001
|
-
[_BVN, _IRA, _MS, _RPA, _SMc, _SRAc, _IT, _SBRPA],
|
|
2002
|
-
[0, 0, 0, 0, 0, 0, 0, 0], 6
|
|
2018
|
+
[_BVN, _IRA, _MS, _RPA, _SMc, _SRAc, _CSET, _IT, _SBRPA],
|
|
2019
|
+
[0, 0, 0, 0, 0, 0, 4, 0, 0], 6
|
|
2003
2020
|
];
|
|
2004
2021
|
export var StartScanJobOutput$ = [3, n0, _SSJO,
|
|
2005
2022
|
0,
|
|
@@ -2431,6 +2448,9 @@ export var GetBackupVaultNotifications$ = [9, n0, _GBVN,
|
|
|
2431
2448
|
export var GetLegalHold$ = [9, n0, _GLH,
|
|
2432
2449
|
{ [_h]: ["GET", "/legal-holds/{LegalHoldId}", 200] }, () => GetLegalHoldInput$, () => GetLegalHoldOutput$
|
|
2433
2450
|
];
|
|
2451
|
+
export var GetPITRMalwareScanResults$ = [9, n0, _GPITRMSR,
|
|
2452
|
+
{ [_h]: ["GET", "/scan/pitr-malware-scan-results", 200] }, () => GetPITRMalwareScanResultsInput$, () => GetPITRMalwareScanResultsOutput$
|
|
2453
|
+
];
|
|
2434
2454
|
export var GetRecoveryPointIndexDetails$ = [9, n0, _GRPID,
|
|
2435
2455
|
{ [_h]: ["GET", "/backup-vaults/{BackupVaultName}/recovery-points/{RecoveryPointArn}/index", 200] }, () => GetRecoveryPointIndexDetailsInput$, () => GetRecoveryPointIndexDetailsOutput$
|
|
2436
2456
|
];
|
package/dist-types/Backup.d.ts
CHANGED
|
@@ -48,6 +48,7 @@ import { type GetBackupSelectionCommandInput, type GetBackupSelectionCommandOutp
|
|
|
48
48
|
import { type GetBackupVaultAccessPolicyCommandInput, type GetBackupVaultAccessPolicyCommandOutput } from "./commands/GetBackupVaultAccessPolicyCommand";
|
|
49
49
|
import { type GetBackupVaultNotificationsCommandInput, type GetBackupVaultNotificationsCommandOutput } from "./commands/GetBackupVaultNotificationsCommand";
|
|
50
50
|
import { type GetLegalHoldCommandInput, type GetLegalHoldCommandOutput } from "./commands/GetLegalHoldCommand";
|
|
51
|
+
import { type GetPITRMalwareScanResultsCommandInput, type GetPITRMalwareScanResultsCommandOutput } from "./commands/GetPITRMalwareScanResultsCommand";
|
|
51
52
|
import { type GetRecoveryPointIndexDetailsCommandInput, type GetRecoveryPointIndexDetailsCommandOutput } from "./commands/GetRecoveryPointIndexDetailsCommand";
|
|
52
53
|
import { type GetRecoveryPointRestoreMetadataCommandInput, type GetRecoveryPointRestoreMetadataCommandOutput } from "./commands/GetRecoveryPointRestoreMetadataCommand";
|
|
53
54
|
import { type GetRestoreJobMetadataCommandInput, type GetRestoreJobMetadataCommandOutput } from "./commands/GetRestoreJobMetadataCommand";
|
|
@@ -399,6 +400,12 @@ export interface Backup {
|
|
|
399
400
|
getLegalHold(args: GetLegalHoldCommandInput, options?: __HttpHandlerOptions): Promise<GetLegalHoldCommandOutput>;
|
|
400
401
|
getLegalHold(args: GetLegalHoldCommandInput, cb: (err: any, data?: GetLegalHoldCommandOutput) => void): void;
|
|
401
402
|
getLegalHold(args: GetLegalHoldCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetLegalHoldCommandOutput) => void): void;
|
|
403
|
+
/**
|
|
404
|
+
* @see {@link GetPITRMalwareScanResultsCommand}
|
|
405
|
+
*/
|
|
406
|
+
getPITRMalwareScanResults(args: GetPITRMalwareScanResultsCommandInput, options?: __HttpHandlerOptions): Promise<GetPITRMalwareScanResultsCommandOutput>;
|
|
407
|
+
getPITRMalwareScanResults(args: GetPITRMalwareScanResultsCommandInput, cb: (err: any, data?: GetPITRMalwareScanResultsCommandOutput) => void): void;
|
|
408
|
+
getPITRMalwareScanResults(args: GetPITRMalwareScanResultsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetPITRMalwareScanResultsCommandOutput) => void): void;
|
|
402
409
|
/**
|
|
403
410
|
* @see {@link GetRecoveryPointIndexDetailsCommand}
|
|
404
411
|
*/
|
|
@@ -54,6 +54,7 @@ import type { GetBackupSelectionCommandInput, GetBackupSelectionCommandOutput }
|
|
|
54
54
|
import type { GetBackupVaultAccessPolicyCommandInput, GetBackupVaultAccessPolicyCommandOutput } from "./commands/GetBackupVaultAccessPolicyCommand";
|
|
55
55
|
import type { GetBackupVaultNotificationsCommandInput, GetBackupVaultNotificationsCommandOutput } from "./commands/GetBackupVaultNotificationsCommand";
|
|
56
56
|
import type { GetLegalHoldCommandInput, GetLegalHoldCommandOutput } from "./commands/GetLegalHoldCommand";
|
|
57
|
+
import type { GetPITRMalwareScanResultsCommandInput, GetPITRMalwareScanResultsCommandOutput } from "./commands/GetPITRMalwareScanResultsCommand";
|
|
57
58
|
import type { GetRecoveryPointIndexDetailsCommandInput, GetRecoveryPointIndexDetailsCommandOutput } from "./commands/GetRecoveryPointIndexDetailsCommand";
|
|
58
59
|
import type { GetRecoveryPointRestoreMetadataCommandInput, GetRecoveryPointRestoreMetadataCommandOutput } from "./commands/GetRecoveryPointRestoreMetadataCommand";
|
|
59
60
|
import type { GetRestoreJobMetadataCommandInput, GetRestoreJobMetadataCommandOutput } from "./commands/GetRestoreJobMetadataCommand";
|
|
@@ -120,11 +121,11 @@ export { __Client };
|
|
|
120
121
|
/**
|
|
121
122
|
* @public
|
|
122
123
|
*/
|
|
123
|
-
export type ServiceInputTypes = AssociateBackupVaultMpaApprovalTeamCommandInput | CancelLegalHoldCommandInput | CreateBackupPlanCommandInput | CreateBackupSelectionCommandInput | CreateBackupVaultCommandInput | CreateFrameworkCommandInput | CreateLegalHoldCommandInput | CreateLogicallyAirGappedBackupVaultCommandInput | CreateReportPlanCommandInput | CreateRestoreAccessBackupVaultCommandInput | CreateRestoreTestingPlanCommandInput | CreateRestoreTestingSelectionCommandInput | CreateTieringConfigurationCommandInput | DeleteBackupPlanCommandInput | DeleteBackupSelectionCommandInput | DeleteBackupVaultAccessPolicyCommandInput | DeleteBackupVaultCommandInput | DeleteBackupVaultLockConfigurationCommandInput | DeleteBackupVaultNotificationsCommandInput | DeleteFrameworkCommandInput | DeleteRecoveryPointCommandInput | DeleteReportPlanCommandInput | DeleteRestoreTestingPlanCommandInput | DeleteRestoreTestingSelectionCommandInput | DeleteTieringConfigurationCommandInput | DescribeBackupJobCommandInput | DescribeBackupVaultCommandInput | DescribeCopyJobCommandInput | DescribeFrameworkCommandInput | DescribeGlobalSettingsCommandInput | DescribeProtectedResourceCommandInput | DescribeRecoveryPointCommandInput | DescribeRegionSettingsCommandInput | DescribeReportJobCommandInput | DescribeReportPlanCommandInput | DescribeRestoreJobCommandInput | DescribeScanJobCommandInput | DisassociateBackupVaultMpaApprovalTeamCommandInput | DisassociateRecoveryPointCommandInput | DisassociateRecoveryPointFromParentCommandInput | ExportBackupPlanTemplateCommandInput | GetBackupPlanCommandInput | GetBackupPlanFromJSONCommandInput | GetBackupPlanFromTemplateCommandInput | GetBackupSelectionCommandInput | GetBackupVaultAccessPolicyCommandInput | GetBackupVaultNotificationsCommandInput | GetLegalHoldCommandInput | GetRecoveryPointIndexDetailsCommandInput | GetRecoveryPointRestoreMetadataCommandInput | GetRestoreJobMetadataCommandInput | GetRestoreTestingInferredMetadataCommandInput | GetRestoreTestingPlanCommandInput | GetRestoreTestingSelectionCommandInput | GetSupportedResourceTypesCommandInput | GetTieringConfigurationCommandInput | ListBackupJobSummariesCommandInput | ListBackupJobsCommandInput | ListBackupPlanTemplatesCommandInput | ListBackupPlanVersionsCommandInput | ListBackupPlansCommandInput | ListBackupSelectionsCommandInput | ListBackupVaultsCommandInput | ListCopyJobSummariesCommandInput | ListCopyJobsCommandInput | ListFrameworksCommandInput | ListIndexedRecoveryPointsCommandInput | ListLegalHoldsCommandInput | ListProtectedResourcesByBackupVaultCommandInput | ListProtectedResourcesCommandInput | ListRecoveryPointsByBackupVaultCommandInput | ListRecoveryPointsByLegalHoldCommandInput | ListRecoveryPointsByResourceCommandInput | ListReportJobsCommandInput | ListReportPlansCommandInput | ListRestoreAccessBackupVaultsCommandInput | ListRestoreJobSummariesCommandInput | ListRestoreJobsByProtectedResourceCommandInput | ListRestoreJobsCommandInput | ListRestoreTestingPlansCommandInput | ListRestoreTestingSelectionsCommandInput | ListScanJobSummariesCommandInput | ListScanJobsCommandInput | ListTagsCommandInput | ListTieringConfigurationsCommandInput | PutBackupVaultAccessPolicyCommandInput | PutBackupVaultLockConfigurationCommandInput | PutBackupVaultNotificationsCommandInput | PutRestoreValidationResultCommandInput | RevokeRestoreAccessBackupVaultCommandInput | StartBackupJobCommandInput | StartCopyJobCommandInput | StartReportJobCommandInput | StartRestoreJobCommandInput | StartScanJobCommandInput | StopBackupJobCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateBackupPlanCommandInput | UpdateFrameworkCommandInput | UpdateGlobalSettingsCommandInput | UpdateRecoveryPointIndexSettingsCommandInput | UpdateRecoveryPointLifecycleCommandInput | UpdateRegionSettingsCommandInput | UpdateReportPlanCommandInput | UpdateRestoreTestingPlanCommandInput | UpdateRestoreTestingSelectionCommandInput | UpdateTieringConfigurationCommandInput;
|
|
124
|
+
export type ServiceInputTypes = AssociateBackupVaultMpaApprovalTeamCommandInput | CancelLegalHoldCommandInput | CreateBackupPlanCommandInput | CreateBackupSelectionCommandInput | CreateBackupVaultCommandInput | CreateFrameworkCommandInput | CreateLegalHoldCommandInput | CreateLogicallyAirGappedBackupVaultCommandInput | CreateReportPlanCommandInput | CreateRestoreAccessBackupVaultCommandInput | CreateRestoreTestingPlanCommandInput | CreateRestoreTestingSelectionCommandInput | CreateTieringConfigurationCommandInput | DeleteBackupPlanCommandInput | DeleteBackupSelectionCommandInput | DeleteBackupVaultAccessPolicyCommandInput | DeleteBackupVaultCommandInput | DeleteBackupVaultLockConfigurationCommandInput | DeleteBackupVaultNotificationsCommandInput | DeleteFrameworkCommandInput | DeleteRecoveryPointCommandInput | DeleteReportPlanCommandInput | DeleteRestoreTestingPlanCommandInput | DeleteRestoreTestingSelectionCommandInput | DeleteTieringConfigurationCommandInput | DescribeBackupJobCommandInput | DescribeBackupVaultCommandInput | DescribeCopyJobCommandInput | DescribeFrameworkCommandInput | DescribeGlobalSettingsCommandInput | DescribeProtectedResourceCommandInput | DescribeRecoveryPointCommandInput | DescribeRegionSettingsCommandInput | DescribeReportJobCommandInput | DescribeReportPlanCommandInput | DescribeRestoreJobCommandInput | DescribeScanJobCommandInput | DisassociateBackupVaultMpaApprovalTeamCommandInput | DisassociateRecoveryPointCommandInput | DisassociateRecoveryPointFromParentCommandInput | ExportBackupPlanTemplateCommandInput | GetBackupPlanCommandInput | GetBackupPlanFromJSONCommandInput | GetBackupPlanFromTemplateCommandInput | GetBackupSelectionCommandInput | GetBackupVaultAccessPolicyCommandInput | GetBackupVaultNotificationsCommandInput | GetLegalHoldCommandInput | GetPITRMalwareScanResultsCommandInput | GetRecoveryPointIndexDetailsCommandInput | GetRecoveryPointRestoreMetadataCommandInput | GetRestoreJobMetadataCommandInput | GetRestoreTestingInferredMetadataCommandInput | GetRestoreTestingPlanCommandInput | GetRestoreTestingSelectionCommandInput | GetSupportedResourceTypesCommandInput | GetTieringConfigurationCommandInput | ListBackupJobSummariesCommandInput | ListBackupJobsCommandInput | ListBackupPlanTemplatesCommandInput | ListBackupPlanVersionsCommandInput | ListBackupPlansCommandInput | ListBackupSelectionsCommandInput | ListBackupVaultsCommandInput | ListCopyJobSummariesCommandInput | ListCopyJobsCommandInput | ListFrameworksCommandInput | ListIndexedRecoveryPointsCommandInput | ListLegalHoldsCommandInput | ListProtectedResourcesByBackupVaultCommandInput | ListProtectedResourcesCommandInput | ListRecoveryPointsByBackupVaultCommandInput | ListRecoveryPointsByLegalHoldCommandInput | ListRecoveryPointsByResourceCommandInput | ListReportJobsCommandInput | ListReportPlansCommandInput | ListRestoreAccessBackupVaultsCommandInput | ListRestoreJobSummariesCommandInput | ListRestoreJobsByProtectedResourceCommandInput | ListRestoreJobsCommandInput | ListRestoreTestingPlansCommandInput | ListRestoreTestingSelectionsCommandInput | ListScanJobSummariesCommandInput | ListScanJobsCommandInput | ListTagsCommandInput | ListTieringConfigurationsCommandInput | PutBackupVaultAccessPolicyCommandInput | PutBackupVaultLockConfigurationCommandInput | PutBackupVaultNotificationsCommandInput | PutRestoreValidationResultCommandInput | RevokeRestoreAccessBackupVaultCommandInput | StartBackupJobCommandInput | StartCopyJobCommandInput | StartReportJobCommandInput | StartRestoreJobCommandInput | StartScanJobCommandInput | StopBackupJobCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateBackupPlanCommandInput | UpdateFrameworkCommandInput | UpdateGlobalSettingsCommandInput | UpdateRecoveryPointIndexSettingsCommandInput | UpdateRecoveryPointLifecycleCommandInput | UpdateRegionSettingsCommandInput | UpdateReportPlanCommandInput | UpdateRestoreTestingPlanCommandInput | UpdateRestoreTestingSelectionCommandInput | UpdateTieringConfigurationCommandInput;
|
|
124
125
|
/**
|
|
125
126
|
* @public
|
|
126
127
|
*/
|
|
127
|
-
export type ServiceOutputTypes = AssociateBackupVaultMpaApprovalTeamCommandOutput | CancelLegalHoldCommandOutput | CreateBackupPlanCommandOutput | CreateBackupSelectionCommandOutput | CreateBackupVaultCommandOutput | CreateFrameworkCommandOutput | CreateLegalHoldCommandOutput | CreateLogicallyAirGappedBackupVaultCommandOutput | CreateReportPlanCommandOutput | CreateRestoreAccessBackupVaultCommandOutput | CreateRestoreTestingPlanCommandOutput | CreateRestoreTestingSelectionCommandOutput | CreateTieringConfigurationCommandOutput | DeleteBackupPlanCommandOutput | DeleteBackupSelectionCommandOutput | DeleteBackupVaultAccessPolicyCommandOutput | DeleteBackupVaultCommandOutput | DeleteBackupVaultLockConfigurationCommandOutput | DeleteBackupVaultNotificationsCommandOutput | DeleteFrameworkCommandOutput | DeleteRecoveryPointCommandOutput | DeleteReportPlanCommandOutput | DeleteRestoreTestingPlanCommandOutput | DeleteRestoreTestingSelectionCommandOutput | DeleteTieringConfigurationCommandOutput | DescribeBackupJobCommandOutput | DescribeBackupVaultCommandOutput | DescribeCopyJobCommandOutput | DescribeFrameworkCommandOutput | DescribeGlobalSettingsCommandOutput | DescribeProtectedResourceCommandOutput | DescribeRecoveryPointCommandOutput | DescribeRegionSettingsCommandOutput | DescribeReportJobCommandOutput | DescribeReportPlanCommandOutput | DescribeRestoreJobCommandOutput | DescribeScanJobCommandOutput | DisassociateBackupVaultMpaApprovalTeamCommandOutput | DisassociateRecoveryPointCommandOutput | DisassociateRecoveryPointFromParentCommandOutput | ExportBackupPlanTemplateCommandOutput | GetBackupPlanCommandOutput | GetBackupPlanFromJSONCommandOutput | GetBackupPlanFromTemplateCommandOutput | GetBackupSelectionCommandOutput | GetBackupVaultAccessPolicyCommandOutput | GetBackupVaultNotificationsCommandOutput | GetLegalHoldCommandOutput | GetRecoveryPointIndexDetailsCommandOutput | GetRecoveryPointRestoreMetadataCommandOutput | GetRestoreJobMetadataCommandOutput | GetRestoreTestingInferredMetadataCommandOutput | GetRestoreTestingPlanCommandOutput | GetRestoreTestingSelectionCommandOutput | GetSupportedResourceTypesCommandOutput | GetTieringConfigurationCommandOutput | ListBackupJobSummariesCommandOutput | ListBackupJobsCommandOutput | ListBackupPlanTemplatesCommandOutput | ListBackupPlanVersionsCommandOutput | ListBackupPlansCommandOutput | ListBackupSelectionsCommandOutput | ListBackupVaultsCommandOutput | ListCopyJobSummariesCommandOutput | ListCopyJobsCommandOutput | ListFrameworksCommandOutput | ListIndexedRecoveryPointsCommandOutput | ListLegalHoldsCommandOutput | ListProtectedResourcesByBackupVaultCommandOutput | ListProtectedResourcesCommandOutput | ListRecoveryPointsByBackupVaultCommandOutput | ListRecoveryPointsByLegalHoldCommandOutput | ListRecoveryPointsByResourceCommandOutput | ListReportJobsCommandOutput | ListReportPlansCommandOutput | ListRestoreAccessBackupVaultsCommandOutput | ListRestoreJobSummariesCommandOutput | ListRestoreJobsByProtectedResourceCommandOutput | ListRestoreJobsCommandOutput | ListRestoreTestingPlansCommandOutput | ListRestoreTestingSelectionsCommandOutput | ListScanJobSummariesCommandOutput | ListScanJobsCommandOutput | ListTagsCommandOutput | ListTieringConfigurationsCommandOutput | PutBackupVaultAccessPolicyCommandOutput | PutBackupVaultLockConfigurationCommandOutput | PutBackupVaultNotificationsCommandOutput | PutRestoreValidationResultCommandOutput | RevokeRestoreAccessBackupVaultCommandOutput | StartBackupJobCommandOutput | StartCopyJobCommandOutput | StartReportJobCommandOutput | StartRestoreJobCommandOutput | StartScanJobCommandOutput | StopBackupJobCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateBackupPlanCommandOutput | UpdateFrameworkCommandOutput | UpdateGlobalSettingsCommandOutput | UpdateRecoveryPointIndexSettingsCommandOutput | UpdateRecoveryPointLifecycleCommandOutput | UpdateRegionSettingsCommandOutput | UpdateReportPlanCommandOutput | UpdateRestoreTestingPlanCommandOutput | UpdateRestoreTestingSelectionCommandOutput | UpdateTieringConfigurationCommandOutput;
|
|
128
|
+
export type ServiceOutputTypes = AssociateBackupVaultMpaApprovalTeamCommandOutput | CancelLegalHoldCommandOutput | CreateBackupPlanCommandOutput | CreateBackupSelectionCommandOutput | CreateBackupVaultCommandOutput | CreateFrameworkCommandOutput | CreateLegalHoldCommandOutput | CreateLogicallyAirGappedBackupVaultCommandOutput | CreateReportPlanCommandOutput | CreateRestoreAccessBackupVaultCommandOutput | CreateRestoreTestingPlanCommandOutput | CreateRestoreTestingSelectionCommandOutput | CreateTieringConfigurationCommandOutput | DeleteBackupPlanCommandOutput | DeleteBackupSelectionCommandOutput | DeleteBackupVaultAccessPolicyCommandOutput | DeleteBackupVaultCommandOutput | DeleteBackupVaultLockConfigurationCommandOutput | DeleteBackupVaultNotificationsCommandOutput | DeleteFrameworkCommandOutput | DeleteRecoveryPointCommandOutput | DeleteReportPlanCommandOutput | DeleteRestoreTestingPlanCommandOutput | DeleteRestoreTestingSelectionCommandOutput | DeleteTieringConfigurationCommandOutput | DescribeBackupJobCommandOutput | DescribeBackupVaultCommandOutput | DescribeCopyJobCommandOutput | DescribeFrameworkCommandOutput | DescribeGlobalSettingsCommandOutput | DescribeProtectedResourceCommandOutput | DescribeRecoveryPointCommandOutput | DescribeRegionSettingsCommandOutput | DescribeReportJobCommandOutput | DescribeReportPlanCommandOutput | DescribeRestoreJobCommandOutput | DescribeScanJobCommandOutput | DisassociateBackupVaultMpaApprovalTeamCommandOutput | DisassociateRecoveryPointCommandOutput | DisassociateRecoveryPointFromParentCommandOutput | ExportBackupPlanTemplateCommandOutput | GetBackupPlanCommandOutput | GetBackupPlanFromJSONCommandOutput | GetBackupPlanFromTemplateCommandOutput | GetBackupSelectionCommandOutput | GetBackupVaultAccessPolicyCommandOutput | GetBackupVaultNotificationsCommandOutput | GetLegalHoldCommandOutput | GetPITRMalwareScanResultsCommandOutput | GetRecoveryPointIndexDetailsCommandOutput | GetRecoveryPointRestoreMetadataCommandOutput | GetRestoreJobMetadataCommandOutput | GetRestoreTestingInferredMetadataCommandOutput | GetRestoreTestingPlanCommandOutput | GetRestoreTestingSelectionCommandOutput | GetSupportedResourceTypesCommandOutput | GetTieringConfigurationCommandOutput | ListBackupJobSummariesCommandOutput | ListBackupJobsCommandOutput | ListBackupPlanTemplatesCommandOutput | ListBackupPlanVersionsCommandOutput | ListBackupPlansCommandOutput | ListBackupSelectionsCommandOutput | ListBackupVaultsCommandOutput | ListCopyJobSummariesCommandOutput | ListCopyJobsCommandOutput | ListFrameworksCommandOutput | ListIndexedRecoveryPointsCommandOutput | ListLegalHoldsCommandOutput | ListProtectedResourcesByBackupVaultCommandOutput | ListProtectedResourcesCommandOutput | ListRecoveryPointsByBackupVaultCommandOutput | ListRecoveryPointsByLegalHoldCommandOutput | ListRecoveryPointsByResourceCommandOutput | ListReportJobsCommandOutput | ListReportPlansCommandOutput | ListRestoreAccessBackupVaultsCommandOutput | ListRestoreJobSummariesCommandOutput | ListRestoreJobsByProtectedResourceCommandOutput | ListRestoreJobsCommandOutput | ListRestoreTestingPlansCommandOutput | ListRestoreTestingSelectionsCommandOutput | ListScanJobSummariesCommandOutput | ListScanJobsCommandOutput | ListTagsCommandOutput | ListTieringConfigurationsCommandOutput | PutBackupVaultAccessPolicyCommandOutput | PutBackupVaultLockConfigurationCommandOutput | PutBackupVaultNotificationsCommandOutput | PutRestoreValidationResultCommandOutput | RevokeRestoreAccessBackupVaultCommandOutput | StartBackupJobCommandOutput | StartCopyJobCommandOutput | StartReportJobCommandOutput | StartRestoreJobCommandOutput | StartScanJobCommandOutput | StopBackupJobCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateBackupPlanCommandOutput | UpdateFrameworkCommandOutput | UpdateGlobalSettingsCommandOutput | UpdateRecoveryPointIndexSettingsCommandOutput | UpdateRecoveryPointLifecycleCommandOutput | UpdateRegionSettingsCommandOutput | UpdateReportPlanCommandOutput | UpdateRestoreTestingPlanCommandOutput | UpdateRestoreTestingSelectionCommandOutput | UpdateTieringConfigurationCommandOutput;
|
|
128
129
|
/**
|
|
129
130
|
* @public
|
|
130
131
|
*/
|
|
@@ -48,6 +48,8 @@ declare const DescribeScanJobCommand_base: {
|
|
|
48
48
|
* // BackupVaultArn: "STRING_VALUE", // required
|
|
49
49
|
* // BackupVaultName: "STRING_VALUE", // required
|
|
50
50
|
* // CompletionDate: new Date("TIMESTAMP"),
|
|
51
|
+
* // ContinuousScanEndTime: new Date("TIMESTAMP"),
|
|
52
|
+
* // ContinuousScanStartTime: new Date("TIMESTAMP"),
|
|
51
53
|
* // CreatedBy: { // ScanJobCreator
|
|
52
54
|
* // BackupPlanArn: "STRING_VALUE", // required
|
|
53
55
|
* // BackupPlanId: "STRING_VALUE", // required
|
|
@@ -66,7 +68,7 @@ declare const DescribeScanJobCommand_base: {
|
|
|
66
68
|
* // ScanJobId: "STRING_VALUE", // required
|
|
67
69
|
* // ScanMode: "FULL_SCAN" || "INCREMENTAL_SCAN", // required
|
|
68
70
|
* // ScanResult: { // ScanResultInfo
|
|
69
|
-
* // ScanResultStatus: "NO_THREATS_FOUND" || "THREATS_FOUND", // required
|
|
71
|
+
* // ScanResultStatus: "NO_THREATS_FOUND" || "THREATS_FOUND" || "UNKNOWN", // required
|
|
70
72
|
* // },
|
|
71
73
|
* // ScannerRoleArn: "STRING_VALUE", // required
|
|
72
74
|
* // State: "CANCELED" || "COMPLETED" || "COMPLETED_WITH_ISSUES" || "CREATED" || "FAILED" || "RUNNING", // required
|
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import type { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient";
|
|
4
|
+
import type { GetPITRMalwareScanResultsInput, GetPITRMalwareScanResultsOutput } from "../models/models_0";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link GetPITRMalwareScanResultsCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface GetPITRMalwareScanResultsCommandInput extends GetPITRMalwareScanResultsInput {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link GetPITRMalwareScanResultsCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface GetPITRMalwareScanResultsCommandOutput extends GetPITRMalwareScanResultsOutput, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const GetPITRMalwareScanResultsCommand_base: {
|
|
25
|
+
new (input: GetPITRMalwareScanResultsCommandInput): import("@smithy/core/client").CommandImpl<GetPITRMalwareScanResultsCommandInput, GetPITRMalwareScanResultsCommandOutput, BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (input: GetPITRMalwareScanResultsCommandInput): import("@smithy/core/client").CommandImpl<GetPITRMalwareScanResultsCommandInput, GetPITRMalwareScanResultsCommandOutput, BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): {
|
|
28
|
+
[x: string]: unknown;
|
|
29
|
+
};
|
|
30
|
+
};
|
|
31
|
+
/**
|
|
32
|
+
* <p>Returns the malware scan results for a specified point in time within a continuous (point-in-time recovery) backup.</p>
|
|
33
|
+
* @example
|
|
34
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
35
|
+
* ```javascript
|
|
36
|
+
* import { BackupClient, GetPITRMalwareScanResultsCommand } from "@aws-sdk/client-backup"; // ES Modules import
|
|
37
|
+
* // const { BackupClient, GetPITRMalwareScanResultsCommand } = require("@aws-sdk/client-backup"); // CommonJS import
|
|
38
|
+
* // import type { BackupClientConfig } from "@aws-sdk/client-backup";
|
|
39
|
+
* const config = {}; // type is BackupClientConfig
|
|
40
|
+
* const client = new BackupClient(config);
|
|
41
|
+
* const input = { // GetPITRMalwareScanResultsInput
|
|
42
|
+
* RecoveryPointArn: "STRING_VALUE", // required
|
|
43
|
+
* BackupVaultName: "STRING_VALUE", // required
|
|
44
|
+
* ScanEndTime: new Date("TIMESTAMP"), // required
|
|
45
|
+
* MalwareScanner: "GUARDDUTY", // required
|
|
46
|
+
* };
|
|
47
|
+
* const command = new GetPITRMalwareScanResultsCommand(input);
|
|
48
|
+
* const response = await client.send(command);
|
|
49
|
+
* // { // GetPITRMalwareScanResultsOutput
|
|
50
|
+
* // ScanEndTime: new Date("TIMESTAMP"), // required
|
|
51
|
+
* // ScanResult: { // ScanResultInfo
|
|
52
|
+
* // ScanResultStatus: "NO_THREATS_FOUND" || "THREATS_FOUND" || "UNKNOWN", // required
|
|
53
|
+
* // },
|
|
54
|
+
* // LastScanJobTime: new Date("TIMESTAMP"),
|
|
55
|
+
* // ScanId: "STRING_VALUE",
|
|
56
|
+
* // ScanMode: "FULL_SCAN" || "INCREMENTAL_SCAN",
|
|
57
|
+
* // };
|
|
58
|
+
*
|
|
59
|
+
* ```
|
|
60
|
+
*
|
|
61
|
+
* @param GetPITRMalwareScanResultsCommandInput - {@link GetPITRMalwareScanResultsCommandInput}
|
|
62
|
+
* @returns {@link GetPITRMalwareScanResultsCommandOutput}
|
|
63
|
+
* @see {@link GetPITRMalwareScanResultsCommandInput} for command's `input` shape.
|
|
64
|
+
* @see {@link GetPITRMalwareScanResultsCommandOutput} for command's `response` shape.
|
|
65
|
+
* @see {@link BackupClientResolvedConfig | config} for BackupClient's `config` shape.
|
|
66
|
+
*
|
|
67
|
+
* @throws {@link InvalidParameterValueException} (client fault)
|
|
68
|
+
* <p>Indicates that something is wrong with a parameter's value. For example, the value is
|
|
69
|
+
* out of range.</p>
|
|
70
|
+
*
|
|
71
|
+
* @throws {@link MissingParameterValueException} (client fault)
|
|
72
|
+
* <p>Indicates that a required parameter is missing.</p>
|
|
73
|
+
*
|
|
74
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
75
|
+
* <p>A resource that is required for the action doesn't exist.</p>
|
|
76
|
+
*
|
|
77
|
+
* @throws {@link ServiceUnavailableException} (server fault)
|
|
78
|
+
* <p>The request failed due to a temporary failure of the server.</p>
|
|
79
|
+
*
|
|
80
|
+
* @throws {@link BackupServiceException}
|
|
81
|
+
* <p>Base exception class for all service exceptions from Backup service.</p>
|
|
82
|
+
*
|
|
83
|
+
*
|
|
84
|
+
* @public
|
|
85
|
+
*/
|
|
86
|
+
export declare class GetPITRMalwareScanResultsCommand extends GetPITRMalwareScanResultsCommand_base {
|
|
87
|
+
/** @internal type navigation helper, not in runtime. */
|
|
88
|
+
protected static __types: {
|
|
89
|
+
api: {
|
|
90
|
+
input: GetPITRMalwareScanResultsInput;
|
|
91
|
+
output: GetPITRMalwareScanResultsOutput;
|
|
92
|
+
};
|
|
93
|
+
sdk: {
|
|
94
|
+
input: GetPITRMalwareScanResultsCommandInput;
|
|
95
|
+
output: GetPITRMalwareScanResultsCommandOutput;
|
|
96
|
+
};
|
|
97
|
+
};
|
|
98
|
+
}
|
|
@@ -42,7 +42,7 @@ declare const ListScanJobSummariesCommand_base: {
|
|
|
42
42
|
* AccountId: "STRING_VALUE",
|
|
43
43
|
* ResourceType: "STRING_VALUE",
|
|
44
44
|
* MalwareScanner: "GUARDDUTY",
|
|
45
|
-
* ScanResultStatus: "NO_THREATS_FOUND" || "THREATS_FOUND",
|
|
45
|
+
* ScanResultStatus: "NO_THREATS_FOUND" || "THREATS_FOUND" || "UNKNOWN",
|
|
46
46
|
* State: "CREATED" || "COMPLETED" || "COMPLETED_WITH_ISSUES" || "RUNNING" || "FAILED" || "CANCELED" || "AGGREGATE_ALL" || "ANY",
|
|
47
47
|
* AggregationPeriod: "ONE_DAY" || "SEVEN_DAYS" || "FOURTEEN_DAYS",
|
|
48
48
|
* MaxResults: Number("int"),
|
|
@@ -61,7 +61,7 @@ declare const ListScanJobSummariesCommand_base: {
|
|
|
61
61
|
* // StartTime: new Date("TIMESTAMP"),
|
|
62
62
|
* // EndTime: new Date("TIMESTAMP"),
|
|
63
63
|
* // MalwareScanner: "GUARDDUTY",
|
|
64
|
-
* // ScanResultStatus: "NO_THREATS_FOUND" || "THREATS_FOUND",
|
|
64
|
+
* // ScanResultStatus: "NO_THREATS_FOUND" || "THREATS_FOUND" || "UNKNOWN",
|
|
65
65
|
* // },
|
|
66
66
|
* // ],
|
|
67
67
|
* // AggregationPeriod: "STRING_VALUE",
|
|
@@ -47,7 +47,7 @@ declare const ListScanJobsCommand_base: {
|
|
|
47
47
|
* ByRecoveryPointArn: "STRING_VALUE",
|
|
48
48
|
* ByResourceArn: "STRING_VALUE",
|
|
49
49
|
* ByResourceType: "EBS" || "EC2" || "S3",
|
|
50
|
-
* ByScanResultStatus: "NO_THREATS_FOUND" || "THREATS_FOUND",
|
|
50
|
+
* ByScanResultStatus: "NO_THREATS_FOUND" || "THREATS_FOUND" || "UNKNOWN",
|
|
51
51
|
* ByState: "CANCELED" || "COMPLETED" || "COMPLETED_WITH_ISSUES" || "CREATED" || "FAILED" || "RUNNING",
|
|
52
52
|
* MaxResults: Number("int"),
|
|
53
53
|
* NextToken: "STRING_VALUE",
|
|
@@ -62,6 +62,8 @@ declare const ListScanJobsCommand_base: {
|
|
|
62
62
|
* // BackupVaultArn: "STRING_VALUE", // required
|
|
63
63
|
* // BackupVaultName: "STRING_VALUE", // required
|
|
64
64
|
* // CompletionDate: new Date("TIMESTAMP"),
|
|
65
|
+
* // ContinuousScanEndTime: new Date("TIMESTAMP"),
|
|
66
|
+
* // ContinuousScanStartTime: new Date("TIMESTAMP"),
|
|
65
67
|
* // CreatedBy: { // ScanJobCreator
|
|
66
68
|
* // BackupPlanArn: "STRING_VALUE", // required
|
|
67
69
|
* // BackupPlanId: "STRING_VALUE", // required
|
|
@@ -80,7 +82,7 @@ declare const ListScanJobsCommand_base: {
|
|
|
80
82
|
* // ScanJobId: "STRING_VALUE", // required
|
|
81
83
|
* // ScanMode: "FULL_SCAN" || "INCREMENTAL_SCAN", // required
|
|
82
84
|
* // ScanResult: { // ScanResultInfo
|
|
83
|
-
* // ScanResultStatus: "NO_THREATS_FOUND" || "THREATS_FOUND", // required
|
|
85
|
+
* // ScanResultStatus: "NO_THREATS_FOUND" || "THREATS_FOUND" || "UNKNOWN", // required
|
|
84
86
|
* // },
|
|
85
87
|
* // ScannerRoleArn: "STRING_VALUE", // required
|
|
86
88
|
* // State: "CANCELED" || "COMPLETED" || "COMPLETED_WITH_ISSUES" || "CREATED" || "FAILED" || "RUNNING",
|
|
@@ -40,6 +40,7 @@ declare const StartScanJobCommand_base: {
|
|
|
40
40
|
* const client = new BackupClient(config);
|
|
41
41
|
* const input = { // StartScanJobInput
|
|
42
42
|
* BackupVaultName: "STRING_VALUE", // required
|
|
43
|
+
* ContinuousScanEndTime: new Date("TIMESTAMP"),
|
|
43
44
|
* IamRoleArn: "STRING_VALUE", // required
|
|
44
45
|
* IdempotencyToken: "STRING_VALUE",
|
|
45
46
|
* MalwareScanner: "GUARDDUTY", // required
|
|
@@ -46,6 +46,7 @@ export * from "./GetBackupSelectionCommand";
|
|
|
46
46
|
export * from "./GetBackupVaultAccessPolicyCommand";
|
|
47
47
|
export * from "./GetBackupVaultNotificationsCommand";
|
|
48
48
|
export * from "./GetLegalHoldCommand";
|
|
49
|
+
export * from "./GetPITRMalwareScanResultsCommand";
|
|
49
50
|
export * from "./GetRecoveryPointIndexDetailsCommand";
|
|
50
51
|
export * from "./GetRecoveryPointRestoreMetadataCommand";
|
|
51
52
|
export * from "./GetRestoreJobMetadataCommand";
|
|
@@ -386,6 +386,7 @@ export type ScanResourceType = (typeof ScanResourceType)[keyof typeof ScanResour
|
|
|
386
386
|
export declare const ScanResultStatus: {
|
|
387
387
|
readonly NO_THREATS_FOUND: "NO_THREATS_FOUND";
|
|
388
388
|
readonly THREATS_FOUND: "THREATS_FOUND";
|
|
389
|
+
readonly UNKNOWN: "UNKNOWN";
|
|
389
390
|
};
|
|
390
391
|
/**
|
|
391
392
|
* @public
|
|
@@ -4366,7 +4366,7 @@ export interface ScanJobCreator {
|
|
|
4366
4366
|
export interface ScanResultInfo {
|
|
4367
4367
|
/**
|
|
4368
4368
|
* <p>The status of the scan results.</p>
|
|
4369
|
-
* <p>Valid values: <code>THREATS_FOUND</code> | <code>NO_THREATS_FOUND</code>.</p>
|
|
4369
|
+
* <p>Valid values: <code>THREATS_FOUND</code> | <code>NO_THREATS_FOUND</code> | <code>UNKNOWN</code>.</p>
|
|
4370
4370
|
* @public
|
|
4371
4371
|
*/
|
|
4372
4372
|
ScanResultStatus: ScanResultStatus | undefined;
|
|
@@ -4405,6 +4405,16 @@ export interface DescribeScanJobOutput {
|
|
|
4405
4405
|
* @public
|
|
4406
4406
|
*/
|
|
4407
4407
|
CompletionDate?: Date | undefined;
|
|
4408
|
+
/**
|
|
4409
|
+
* <p>The point in time the scan job scanned up to for a continuous backup.</p>
|
|
4410
|
+
* @public
|
|
4411
|
+
*/
|
|
4412
|
+
ContinuousScanEndTime?: Date | undefined;
|
|
4413
|
+
/**
|
|
4414
|
+
* <p>The point in time the scan job started scan from for a continuous backup.</p>
|
|
4415
|
+
* @public
|
|
4416
|
+
*/
|
|
4417
|
+
ContinuousScanStartTime?: Date | undefined;
|
|
4408
4418
|
/**
|
|
4409
4419
|
* <p>Contains identifying information about the creation of a scan job, including the backup plan and rule that initiated the scan.</p>
|
|
4410
4420
|
* @public
|
|
@@ -4917,6 +4927,64 @@ export interface GetLegalHoldOutput {
|
|
|
4917
4927
|
*/
|
|
4918
4928
|
RecoveryPointSelection?: RecoveryPointSelection | undefined;
|
|
4919
4929
|
}
|
|
4930
|
+
/**
|
|
4931
|
+
* @public
|
|
4932
|
+
*/
|
|
4933
|
+
export interface GetPITRMalwareScanResultsInput {
|
|
4934
|
+
/**
|
|
4935
|
+
* <p>An ARN that uniquely identifies the target recovery point for scanning; for example,
|
|
4936
|
+
* <code>arn:aws:backup:us-east-1:123456789012:recovery-point:1EB3B5E7-9EB0-435A-A80B-108B488B0D45</code>.</p>
|
|
4937
|
+
* @public
|
|
4938
|
+
*/
|
|
4939
|
+
RecoveryPointArn: string | undefined;
|
|
4940
|
+
/**
|
|
4941
|
+
* <p>The name of a logical container where backups are stored. Backup vaults are identified
|
|
4942
|
+
* by names that are unique to the account used to create them and the Amazon Web Services
|
|
4943
|
+
* Region where they are created.</p>
|
|
4944
|
+
* @public
|
|
4945
|
+
*/
|
|
4946
|
+
BackupVaultName: string | undefined;
|
|
4947
|
+
/**
|
|
4948
|
+
* <p>The point in time within the continuous backup to examine for malware scan results.</p>
|
|
4949
|
+
* @public
|
|
4950
|
+
*/
|
|
4951
|
+
ScanEndTime: Date | undefined;
|
|
4952
|
+
/**
|
|
4953
|
+
* <p>The scanning engine used for the corresponding scan job. Currently only <code>GUARDDUTY</code> is supported.</p>
|
|
4954
|
+
* @public
|
|
4955
|
+
*/
|
|
4956
|
+
MalwareScanner: MalwareScanner | undefined;
|
|
4957
|
+
}
|
|
4958
|
+
/**
|
|
4959
|
+
* @public
|
|
4960
|
+
*/
|
|
4961
|
+
export interface GetPITRMalwareScanResultsOutput {
|
|
4962
|
+
/**
|
|
4963
|
+
* <p>The point in time that was queried. This echoes back the time specified in the request.</p>
|
|
4964
|
+
* @public
|
|
4965
|
+
*/
|
|
4966
|
+
ScanEndTime: Date | undefined;
|
|
4967
|
+
/**
|
|
4968
|
+
* <p>Contains the <code>ScanResultStatus</code> for the scan and returns <code>THREATS_FOUND</code>, <code>NO_THREATS_FOUND</code>, or <code>UNKNOWN</code>.</p>
|
|
4969
|
+
* @public
|
|
4970
|
+
*/
|
|
4971
|
+
ScanResult: ScanResultInfo | undefined;
|
|
4972
|
+
/**
|
|
4973
|
+
* <p>The completion time of the most recent scan job that covered the specified point in time.</p>
|
|
4974
|
+
* @public
|
|
4975
|
+
*/
|
|
4976
|
+
LastScanJobTime?: Date | undefined;
|
|
4977
|
+
/**
|
|
4978
|
+
* <p>The scan ID generated by Amazon GuardDuty for the corresponding Scan Job ID request from Backup.</p>
|
|
4979
|
+
* @public
|
|
4980
|
+
*/
|
|
4981
|
+
ScanId?: string | undefined;
|
|
4982
|
+
/**
|
|
4983
|
+
* <p>Specifies the scan type used for the scan job.</p>
|
|
4984
|
+
* @public
|
|
4985
|
+
*/
|
|
4986
|
+
ScanMode?: ScanMode | undefined;
|
|
4987
|
+
}
|
|
4920
4988
|
/**
|
|
4921
4989
|
* @public
|
|
4922
4990
|
*/
|
|
@@ -8444,6 +8512,16 @@ export interface ScanJob {
|
|
|
8444
8512
|
* @public
|
|
8445
8513
|
*/
|
|
8446
8514
|
CompletionDate?: Date | undefined;
|
|
8515
|
+
/**
|
|
8516
|
+
* <p>The point in time the scan job scanned up to for a continuous backup.</p>
|
|
8517
|
+
* @public
|
|
8518
|
+
*/
|
|
8519
|
+
ContinuousScanEndTime?: Date | undefined;
|
|
8520
|
+
/**
|
|
8521
|
+
* <p>The point in time the scan job started scan from for a continuous backup.</p>
|
|
8522
|
+
* @public
|
|
8523
|
+
*/
|
|
8524
|
+
ContinuousScanStartTime?: Date | undefined;
|
|
8447
8525
|
/**
|
|
8448
8526
|
* <p>Contains identifying information about the creation of a scan job.</p>
|
|
8449
8527
|
* @public
|
|
@@ -9467,6 +9545,11 @@ export interface StartScanJobInput {
|
|
|
9467
9545
|
* @public
|
|
9468
9546
|
*/
|
|
9469
9547
|
BackupVaultName: string | undefined;
|
|
9548
|
+
/**
|
|
9549
|
+
* <p>The point in time the scan job will scan up to for a continuous backup.</p>
|
|
9550
|
+
* @public
|
|
9551
|
+
*/
|
|
9552
|
+
ContinuousScanEndTime?: Date | undefined;
|
|
9470
9553
|
/**
|
|
9471
9554
|
* <p>Specifies the IAM role ARN used to create the target recovery point; for example,
|
|
9472
9555
|
* <code>arn:aws:iam::123456789012:role/S3Access</code>.</p>
|
|
@@ -124,6 +124,8 @@ export declare var GetBackupVaultNotificationsInput$: StaticStructureSchema;
|
|
|
124
124
|
export declare var GetBackupVaultNotificationsOutput$: StaticStructureSchema;
|
|
125
125
|
export declare var GetLegalHoldInput$: StaticStructureSchema;
|
|
126
126
|
export declare var GetLegalHoldOutput$: StaticStructureSchema;
|
|
127
|
+
export declare var GetPITRMalwareScanResultsInput$: StaticStructureSchema;
|
|
128
|
+
export declare var GetPITRMalwareScanResultsOutput$: StaticStructureSchema;
|
|
127
129
|
export declare var GetRecoveryPointIndexDetailsInput$: StaticStructureSchema;
|
|
128
130
|
export declare var GetRecoveryPointIndexDetailsOutput$: StaticStructureSchema;
|
|
129
131
|
export declare var GetRecoveryPointRestoreMetadataInput$: StaticStructureSchema;
|
|
@@ -326,6 +328,7 @@ export declare var GetBackupSelection$: StaticOperationSchema;
|
|
|
326
328
|
export declare var GetBackupVaultAccessPolicy$: StaticOperationSchema;
|
|
327
329
|
export declare var GetBackupVaultNotifications$: StaticOperationSchema;
|
|
328
330
|
export declare var GetLegalHold$: StaticOperationSchema;
|
|
331
|
+
export declare var GetPITRMalwareScanResults$: StaticOperationSchema;
|
|
329
332
|
export declare var GetRecoveryPointIndexDetails$: StaticOperationSchema;
|
|
330
333
|
export declare var GetRecoveryPointRestoreMetadata$: StaticOperationSchema;
|
|
331
334
|
export declare var GetRestoreJobMetadata$: StaticOperationSchema;
|
|
@@ -196,6 +196,10 @@ import {
|
|
|
196
196
|
GetLegalHoldCommandInput,
|
|
197
197
|
GetLegalHoldCommandOutput,
|
|
198
198
|
} from "./commands/GetLegalHoldCommand";
|
|
199
|
+
import {
|
|
200
|
+
GetPITRMalwareScanResultsCommandInput,
|
|
201
|
+
GetPITRMalwareScanResultsCommandOutput,
|
|
202
|
+
} from "./commands/GetPITRMalwareScanResultsCommand";
|
|
199
203
|
import {
|
|
200
204
|
GetRecoveryPointIndexDetailsCommandInput,
|
|
201
205
|
GetRecoveryPointIndexDetailsCommandOutput,
|
|
@@ -1093,6 +1097,19 @@ export interface Backup {
|
|
|
1093
1097
|
options: __HttpHandlerOptions,
|
|
1094
1098
|
cb: (err: any, data?: GetLegalHoldCommandOutput) => void
|
|
1095
1099
|
): void;
|
|
1100
|
+
getPITRMalwareScanResults(
|
|
1101
|
+
args: GetPITRMalwareScanResultsCommandInput,
|
|
1102
|
+
options?: __HttpHandlerOptions
|
|
1103
|
+
): Promise<GetPITRMalwareScanResultsCommandOutput>;
|
|
1104
|
+
getPITRMalwareScanResults(
|
|
1105
|
+
args: GetPITRMalwareScanResultsCommandInput,
|
|
1106
|
+
cb: (err: any, data?: GetPITRMalwareScanResultsCommandOutput) => void
|
|
1107
|
+
): void;
|
|
1108
|
+
getPITRMalwareScanResults(
|
|
1109
|
+
args: GetPITRMalwareScanResultsCommandInput,
|
|
1110
|
+
options: __HttpHandlerOptions,
|
|
1111
|
+
cb: (err: any, data?: GetPITRMalwareScanResultsCommandOutput) => void
|
|
1112
|
+
): void;
|
|
1096
1113
|
getRecoveryPointIndexDetails(
|
|
1097
1114
|
args: GetRecoveryPointIndexDetailsCommandInput,
|
|
1098
1115
|
options?: __HttpHandlerOptions
|
|
@@ -228,6 +228,10 @@ import {
|
|
|
228
228
|
GetLegalHoldCommandInput,
|
|
229
229
|
GetLegalHoldCommandOutput,
|
|
230
230
|
} from "./commands/GetLegalHoldCommand";
|
|
231
|
+
import {
|
|
232
|
+
GetPITRMalwareScanResultsCommandInput,
|
|
233
|
+
GetPITRMalwareScanResultsCommandOutput,
|
|
234
|
+
} from "./commands/GetPITRMalwareScanResultsCommand";
|
|
231
235
|
import {
|
|
232
236
|
GetRecoveryPointIndexDetailsCommandInput,
|
|
233
237
|
GetRecoveryPointIndexDetailsCommandOutput,
|
|
@@ -524,6 +528,7 @@ export type ServiceInputTypes =
|
|
|
524
528
|
| GetBackupVaultAccessPolicyCommandInput
|
|
525
529
|
| GetBackupVaultNotificationsCommandInput
|
|
526
530
|
| GetLegalHoldCommandInput
|
|
531
|
+
| GetPITRMalwareScanResultsCommandInput
|
|
527
532
|
| GetRecoveryPointIndexDetailsCommandInput
|
|
528
533
|
| GetRecoveryPointRestoreMetadataCommandInput
|
|
529
534
|
| GetRestoreJobMetadataCommandInput
|
|
@@ -633,6 +638,7 @@ export type ServiceOutputTypes =
|
|
|
633
638
|
| GetBackupVaultAccessPolicyCommandOutput
|
|
634
639
|
| GetBackupVaultNotificationsCommandOutput
|
|
635
640
|
| GetLegalHoldCommandOutput
|
|
641
|
+
| GetPITRMalwareScanResultsCommandOutput
|
|
636
642
|
| GetRecoveryPointIndexDetailsCommandOutput
|
|
637
643
|
| GetRecoveryPointRestoreMetadataCommandOutput
|
|
638
644
|
| GetRestoreJobMetadataCommandOutput
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
BackupClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../BackupClient";
|
|
8
|
+
import {
|
|
9
|
+
GetPITRMalwareScanResultsInput,
|
|
10
|
+
GetPITRMalwareScanResultsOutput,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface GetPITRMalwareScanResultsCommandInput
|
|
15
|
+
extends GetPITRMalwareScanResultsInput {}
|
|
16
|
+
export interface GetPITRMalwareScanResultsCommandOutput
|
|
17
|
+
extends GetPITRMalwareScanResultsOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const GetPITRMalwareScanResultsCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: GetPITRMalwareScanResultsCommandInput
|
|
22
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
|
+
GetPITRMalwareScanResultsCommandInput,
|
|
24
|
+
GetPITRMalwareScanResultsCommandOutput,
|
|
25
|
+
BackupClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: GetPITRMalwareScanResultsCommandInput
|
|
31
|
+
): import("@smithy/core/client").CommandImpl<
|
|
32
|
+
GetPITRMalwareScanResultsCommandInput,
|
|
33
|
+
GetPITRMalwareScanResultsCommandOutput,
|
|
34
|
+
BackupClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): {
|
|
39
|
+
[x: string]: unknown;
|
|
40
|
+
};
|
|
41
|
+
};
|
|
42
|
+
export declare class GetPITRMalwareScanResultsCommand extends GetPITRMalwareScanResultsCommand_base {
|
|
43
|
+
protected static __types: {
|
|
44
|
+
api: {
|
|
45
|
+
input: GetPITRMalwareScanResultsInput;
|
|
46
|
+
output: GetPITRMalwareScanResultsOutput;
|
|
47
|
+
};
|
|
48
|
+
sdk: {
|
|
49
|
+
input: GetPITRMalwareScanResultsCommandInput;
|
|
50
|
+
output: GetPITRMalwareScanResultsCommandOutput;
|
|
51
|
+
};
|
|
52
|
+
};
|
|
53
|
+
}
|
|
@@ -46,6 +46,7 @@ export * from "./GetBackupSelectionCommand";
|
|
|
46
46
|
export * from "./GetBackupVaultAccessPolicyCommand";
|
|
47
47
|
export * from "./GetBackupVaultNotificationsCommand";
|
|
48
48
|
export * from "./GetLegalHoldCommand";
|
|
49
|
+
export * from "./GetPITRMalwareScanResultsCommand";
|
|
49
50
|
export * from "./GetRecoveryPointIndexDetailsCommand";
|
|
50
51
|
export * from "./GetRecoveryPointRestoreMetadataCommand";
|
|
51
52
|
export * from "./GetRestoreJobMetadataCommand";
|
|
@@ -216,6 +216,7 @@ export type ScanResourceType =
|
|
|
216
216
|
export declare const ScanResultStatus: {
|
|
217
217
|
readonly NO_THREATS_FOUND: "NO_THREATS_FOUND";
|
|
218
218
|
readonly THREATS_FOUND: "THREATS_FOUND";
|
|
219
|
+
readonly UNKNOWN: "UNKNOWN";
|
|
219
220
|
};
|
|
220
221
|
export type ScanResultStatus =
|
|
221
222
|
(typeof ScanResultStatus)[keyof typeof ScanResultStatus];
|
|
@@ -765,6 +765,8 @@ export interface DescribeScanJobOutput {
|
|
|
765
765
|
BackupVaultArn: string | undefined;
|
|
766
766
|
BackupVaultName: string | undefined;
|
|
767
767
|
CompletionDate?: Date | undefined;
|
|
768
|
+
ContinuousScanEndTime?: Date | undefined;
|
|
769
|
+
ContinuousScanStartTime?: Date | undefined;
|
|
768
770
|
CreatedBy: ScanJobCreator | undefined;
|
|
769
771
|
CreationDate: Date | undefined;
|
|
770
772
|
IamRoleArn: string | undefined;
|
|
@@ -877,6 +879,19 @@ export interface GetLegalHoldOutput {
|
|
|
877
879
|
RetainRecordUntil?: Date | undefined;
|
|
878
880
|
RecoveryPointSelection?: RecoveryPointSelection | undefined;
|
|
879
881
|
}
|
|
882
|
+
export interface GetPITRMalwareScanResultsInput {
|
|
883
|
+
RecoveryPointArn: string | undefined;
|
|
884
|
+
BackupVaultName: string | undefined;
|
|
885
|
+
ScanEndTime: Date | undefined;
|
|
886
|
+
MalwareScanner: MalwareScanner | undefined;
|
|
887
|
+
}
|
|
888
|
+
export interface GetPITRMalwareScanResultsOutput {
|
|
889
|
+
ScanEndTime: Date | undefined;
|
|
890
|
+
ScanResult: ScanResultInfo | undefined;
|
|
891
|
+
LastScanJobTime?: Date | undefined;
|
|
892
|
+
ScanId?: string | undefined;
|
|
893
|
+
ScanMode?: ScanMode | undefined;
|
|
894
|
+
}
|
|
880
895
|
export interface GetRecoveryPointIndexDetailsInput {
|
|
881
896
|
BackupVaultName: string | undefined;
|
|
882
897
|
RecoveryPointArn: string | undefined;
|
|
@@ -1429,6 +1444,8 @@ export interface ScanJob {
|
|
|
1429
1444
|
BackupVaultArn: string | undefined;
|
|
1430
1445
|
BackupVaultName: string | undefined;
|
|
1431
1446
|
CompletionDate?: Date | undefined;
|
|
1447
|
+
ContinuousScanEndTime?: Date | undefined;
|
|
1448
|
+
ContinuousScanStartTime?: Date | undefined;
|
|
1432
1449
|
CreatedBy: ScanJobCreator | undefined;
|
|
1433
1450
|
CreationDate: Date | undefined;
|
|
1434
1451
|
IamRoleArn: string | undefined;
|
|
@@ -1577,6 +1594,7 @@ export interface StartRestoreJobOutput {
|
|
|
1577
1594
|
}
|
|
1578
1595
|
export interface StartScanJobInput {
|
|
1579
1596
|
BackupVaultName: string | undefined;
|
|
1597
|
+
ContinuousScanEndTime?: Date | undefined;
|
|
1580
1598
|
IamRoleArn: string | undefined;
|
|
1581
1599
|
IdempotencyToken?: string | undefined;
|
|
1582
1600
|
MalwareScanner: MalwareScanner | undefined;
|
|
@@ -123,6 +123,8 @@ export declare var GetBackupVaultNotificationsInput$: StaticStructureSchema;
|
|
|
123
123
|
export declare var GetBackupVaultNotificationsOutput$: StaticStructureSchema;
|
|
124
124
|
export declare var GetLegalHoldInput$: StaticStructureSchema;
|
|
125
125
|
export declare var GetLegalHoldOutput$: StaticStructureSchema;
|
|
126
|
+
export declare var GetPITRMalwareScanResultsInput$: StaticStructureSchema;
|
|
127
|
+
export declare var GetPITRMalwareScanResultsOutput$: StaticStructureSchema;
|
|
126
128
|
export declare var GetRecoveryPointIndexDetailsInput$: StaticStructureSchema;
|
|
127
129
|
export declare var GetRecoveryPointIndexDetailsOutput$: StaticStructureSchema;
|
|
128
130
|
export declare var GetRecoveryPointRestoreMetadataInput$: StaticStructureSchema;
|
|
@@ -325,6 +327,7 @@ export declare var GetBackupSelection$: StaticOperationSchema;
|
|
|
325
327
|
export declare var GetBackupVaultAccessPolicy$: StaticOperationSchema;
|
|
326
328
|
export declare var GetBackupVaultNotifications$: StaticOperationSchema;
|
|
327
329
|
export declare var GetLegalHold$: StaticOperationSchema;
|
|
330
|
+
export declare var GetPITRMalwareScanResults$: StaticOperationSchema;
|
|
328
331
|
export declare var GetRecoveryPointIndexDetails$: StaticOperationSchema;
|
|
329
332
|
export declare var GetRecoveryPointRestoreMetadata$: StaticOperationSchema;
|
|
330
333
|
export declare var GetRestoreJobMetadata$: StaticOperationSchema;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-backup",
|
|
3
3
|
"description": "AWS SDK for JavaScript Backup Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.1055.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-backup",
|
|
@@ -21,8 +21,8 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
24
|
-
"@aws-sdk/core": "^3.974.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
24
|
+
"@aws-sdk/core": "^3.974.14",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "^3.972.45",
|
|
26
26
|
"@aws-sdk/types": "^3.973.9",
|
|
27
27
|
"@smithy/core": "^3.24.3",
|
|
28
28
|
"@smithy/fetch-http-handler": "^5.4.3",
|