@aws-sdk/client-securityagent 3.1021.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/LICENSE +201 -0
- package/README.md +531 -0
- package/dist-cjs/auth/httpAuthSchemeProvider.js +46 -0
- package/dist-cjs/endpoint/endpointResolver.js +18 -0
- package/dist-cjs/endpoint/ruleset.js +7 -0
- package/dist-cjs/index.js +1084 -0
- package/dist-cjs/models/SecurityAgentServiceException.js +12 -0
- package/dist-cjs/models/errors.js +88 -0
- package/dist-cjs/runtimeConfig.browser.js +38 -0
- package/dist-cjs/runtimeConfig.js +54 -0
- package/dist-cjs/runtimeConfig.native.js +15 -0
- package/dist-cjs/runtimeConfig.shared.js +43 -0
- package/dist-cjs/schemas/schemas_0.js +1570 -0
- package/dist-es/SecurityAgent.js +133 -0
- package/dist-es/SecurityAgentClient.js +50 -0
- package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
- package/dist-es/auth/httpAuthSchemeProvider.js +40 -0
- package/dist-es/commands/AddArtifactCommand.js +16 -0
- package/dist-es/commands/BatchDeletePentestsCommand.js +16 -0
- package/dist-es/commands/BatchGetAgentSpacesCommand.js +16 -0
- package/dist-es/commands/BatchGetArtifactMetadataCommand.js +16 -0
- package/dist-es/commands/BatchGetFindingsCommand.js +16 -0
- package/dist-es/commands/BatchGetPentestJobTasksCommand.js +16 -0
- package/dist-es/commands/BatchGetPentestJobsCommand.js +16 -0
- package/dist-es/commands/BatchGetPentestsCommand.js +16 -0
- package/dist-es/commands/BatchGetTargetDomainsCommand.js +16 -0
- package/dist-es/commands/CreateAgentSpaceCommand.js +16 -0
- package/dist-es/commands/CreateApplicationCommand.js +16 -0
- package/dist-es/commands/CreateIntegrationCommand.js +16 -0
- package/dist-es/commands/CreateMembershipCommand.js +16 -0
- package/dist-es/commands/CreatePentestCommand.js +16 -0
- package/dist-es/commands/CreateTargetDomainCommand.js +16 -0
- package/dist-es/commands/DeleteAgentSpaceCommand.js +16 -0
- package/dist-es/commands/DeleteApplicationCommand.js +16 -0
- package/dist-es/commands/DeleteArtifactCommand.js +16 -0
- package/dist-es/commands/DeleteIntegrationCommand.js +16 -0
- package/dist-es/commands/DeleteMembershipCommand.js +16 -0
- package/dist-es/commands/DeleteTargetDomainCommand.js +16 -0
- package/dist-es/commands/GetApplicationCommand.js +16 -0
- package/dist-es/commands/GetArtifactCommand.js +16 -0
- package/dist-es/commands/GetIntegrationCommand.js +16 -0
- package/dist-es/commands/InitiateProviderRegistrationCommand.js +16 -0
- package/dist-es/commands/ListAgentSpacesCommand.js +16 -0
- package/dist-es/commands/ListApplicationsCommand.js +16 -0
- package/dist-es/commands/ListArtifactsCommand.js +16 -0
- package/dist-es/commands/ListDiscoveredEndpointsCommand.js +16 -0
- package/dist-es/commands/ListFindingsCommand.js +16 -0
- package/dist-es/commands/ListIntegratedResourcesCommand.js +16 -0
- package/dist-es/commands/ListIntegrationsCommand.js +16 -0
- package/dist-es/commands/ListMembershipsCommand.js +16 -0
- package/dist-es/commands/ListPentestJobTasksCommand.js +16 -0
- package/dist-es/commands/ListPentestJobsForPentestCommand.js +16 -0
- package/dist-es/commands/ListPentestsCommand.js +16 -0
- package/dist-es/commands/ListTagsForResourceCommand.js +16 -0
- package/dist-es/commands/ListTargetDomainsCommand.js +16 -0
- package/dist-es/commands/StartCodeRemediationCommand.js +16 -0
- package/dist-es/commands/StartPentestJobCommand.js +16 -0
- package/dist-es/commands/StopPentestJobCommand.js +16 -0
- package/dist-es/commands/TagResourceCommand.js +16 -0
- package/dist-es/commands/UntagResourceCommand.js +16 -0
- package/dist-es/commands/UpdateAgentSpaceCommand.js +16 -0
- package/dist-es/commands/UpdateApplicationCommand.js +16 -0
- package/dist-es/commands/UpdateFindingCommand.js +16 -0
- package/dist-es/commands/UpdateIntegratedResourcesCommand.js +16 -0
- package/dist-es/commands/UpdatePentestCommand.js +16 -0
- package/dist-es/commands/UpdateTargetDomainCommand.js +16 -0
- package/dist-es/commands/VerifyTargetDomainCommand.js +16 -0
- package/dist-es/commands/index.js +50 -0
- package/dist-es/endpoint/EndpointParameters.js +11 -0
- package/dist-es/endpoint/endpointResolver.js +14 -0
- package/dist-es/endpoint/ruleset.js +4 -0
- package/dist-es/extensionConfiguration.js +1 -0
- package/dist-es/index.js +9 -0
- package/dist-es/models/SecurityAgentServiceException.js +8 -0
- package/dist-es/models/enums.js +162 -0
- package/dist-es/models/errors.js +79 -0
- package/dist-es/models/models_0.js +1 -0
- package/dist-es/pagination/Interfaces.js +1 -0
- package/dist-es/pagination/ListAgentSpacesPaginator.js +4 -0
- package/dist-es/pagination/ListApplicationsPaginator.js +4 -0
- package/dist-es/pagination/ListArtifactsPaginator.js +4 -0
- package/dist-es/pagination/ListDiscoveredEndpointsPaginator.js +4 -0
- package/dist-es/pagination/ListFindingsPaginator.js +4 -0
- package/dist-es/pagination/ListIntegratedResourcesPaginator.js +4 -0
- package/dist-es/pagination/ListIntegrationsPaginator.js +4 -0
- package/dist-es/pagination/ListMembershipsPaginator.js +4 -0
- package/dist-es/pagination/ListPentestJobTasksPaginator.js +4 -0
- package/dist-es/pagination/ListPentestJobsForPentestPaginator.js +4 -0
- package/dist-es/pagination/ListPentestsPaginator.js +4 -0
- package/dist-es/pagination/ListTargetDomainsPaginator.js +4 -0
- package/dist-es/pagination/index.js +13 -0
- package/dist-es/runtimeConfig.browser.js +33 -0
- package/dist-es/runtimeConfig.js +49 -0
- package/dist-es/runtimeConfig.native.js +11 -0
- package/dist-es/runtimeConfig.shared.js +39 -0
- package/dist-es/runtimeExtensions.js +9 -0
- package/dist-es/schemas/schemas_0.js +1563 -0
- package/dist-types/SecurityAgent.d.ts +449 -0
- package/dist-types/SecurityAgentClient.d.ts +237 -0
- package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/dist-types/auth/httpAuthSchemeProvider.d.ts +75 -0
- package/dist-types/commands/AddArtifactCommand.d.ts +94 -0
- package/dist-types/commands/BatchDeletePentestsCommand.d.ts +161 -0
- package/dist-types/commands/BatchGetAgentSpacesCommand.d.ts +123 -0
- package/dist-types/commands/BatchGetArtifactMetadataCommand.d.ts +101 -0
- package/dist-types/commands/BatchGetFindingsCommand.d.ts +111 -0
- package/dist-types/commands/BatchGetPentestJobTasksCommand.d.ts +109 -0
- package/dist-types/commands/BatchGetPentestJobsCommand.d.ts +187 -0
- package/dist-types/commands/BatchGetPentestsCommand.d.ts +158 -0
- package/dist-types/commands/BatchGetTargetDomainsCommand.d.ts +99 -0
- package/dist-types/commands/CreateAgentSpaceCommand.d.ts +154 -0
- package/dist-types/commands/CreateApplicationCommand.d.ts +79 -0
- package/dist-types/commands/CreateIntegrationCommand.d.ts +106 -0
- package/dist-types/commands/CreateMembershipCommand.d.ts +80 -0
- package/dist-types/commands/CreatePentestCommand.d.ts +194 -0
- package/dist-types/commands/CreateTargetDomainCommand.d.ts +94 -0
- package/dist-types/commands/DeleteAgentSpaceCommand.d.ts +74 -0
- package/dist-types/commands/DeleteApplicationCommand.d.ts +72 -0
- package/dist-types/commands/DeleteArtifactCommand.d.ts +90 -0
- package/dist-types/commands/DeleteIntegrationCommand.d.ts +92 -0
- package/dist-types/commands/DeleteMembershipCommand.d.ts +75 -0
- package/dist-types/commands/DeleteTargetDomainCommand.d.ts +74 -0
- package/dist-types/commands/GetApplicationCommand.d.ts +82 -0
- package/dist-types/commands/GetArtifactCommand.d.ts +99 -0
- package/dist-types/commands/GetIntegrationCommand.d.ts +96 -0
- package/dist-types/commands/InitiateProviderRegistrationCommand.d.ts +95 -0
- package/dist-types/commands/ListAgentSpacesCommand.d.ts +83 -0
- package/dist-types/commands/ListApplicationsCommand.d.ts +83 -0
- package/dist-types/commands/ListArtifactsCommand.d.ts +100 -0
- package/dist-types/commands/ListDiscoveredEndpointsCommand.d.ts +89 -0
- package/dist-types/commands/ListFindingsCommand.d.ts +97 -0
- package/dist-types/commands/ListIntegratedResourcesCommand.d.ts +114 -0
- package/dist-types/commands/ListIntegrationsCommand.d.ts +100 -0
- package/dist-types/commands/ListMembershipsCommand.d.ts +101 -0
- package/dist-types/commands/ListPentestJobTasksCommand.d.ts +92 -0
- package/dist-types/commands/ListPentestJobsForPentestCommand.d.ts +87 -0
- package/dist-types/commands/ListPentestsCommand.d.ts +85 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +76 -0
- package/dist-types/commands/ListTargetDomainsCommand.d.ts +82 -0
- package/dist-types/commands/StartCodeRemediationCommand.d.ts +76 -0
- package/dist-types/commands/StartPentestJobCommand.d.ts +81 -0
- package/dist-types/commands/StopPentestJobCommand.d.ts +73 -0
- package/dist-types/commands/TagResourceCommand.d.ts +75 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +75 -0
- package/dist-types/commands/UpdateAgentSpaceCommand.d.ts +150 -0
- package/dist-types/commands/UpdateApplicationCommand.d.ts +76 -0
- package/dist-types/commands/UpdateFindingCommand.d.ts +75 -0
- package/dist-types/commands/UpdateIntegratedResourcesCommand.d.ts +109 -0
- package/dist-types/commands/UpdatePentestCommand.d.ts +195 -0
- package/dist-types/commands/UpdateTargetDomainCommand.d.ts +91 -0
- package/dist-types/commands/VerifyTargetDomainCommand.d.ts +79 -0
- package/dist-types/commands/index.d.ts +50 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +44 -0
- package/dist-types/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/endpoint/ruleset.d.ts +2 -0
- package/dist-types/extensionConfiguration.d.ts +9 -0
- package/dist-types/index.d.ts +17 -0
- package/dist-types/models/SecurityAgentServiceException.d.ts +14 -0
- package/dist-types/models/enums.d.ts +609 -0
- package/dist-types/models/errors.d.ts +93 -0
- package/dist-types/models/models_0.d.ts +3749 -0
- package/dist-types/pagination/Interfaces.d.ts +8 -0
- package/dist-types/pagination/ListAgentSpacesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListApplicationsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListArtifactsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListDiscoveredEndpointsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListFindingsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListIntegratedResourcesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListIntegrationsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListMembershipsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListPentestJobTasksPaginator.d.ts +7 -0
- package/dist-types/pagination/ListPentestJobsForPentestPaginator.d.ts +7 -0
- package/dist-types/pagination/ListPentestsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListTargetDomainsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +13 -0
- package/dist-types/runtimeConfig.browser.d.ts +55 -0
- package/dist-types/runtimeConfig.d.ts +55 -0
- package/dist-types/runtimeConfig.native.d.ts +54 -0
- package/dist-types/runtimeConfig.shared.d.ts +27 -0
- package/dist-types/runtimeExtensions.d.ts +17 -0
- package/dist-types/schemas/schemas_0.d.ts +225 -0
- package/dist-types/ts3.4/SecurityAgent.d.ts +950 -0
- package/dist-types/ts3.4/SecurityAgentClient.d.ts +419 -0
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +47 -0
- package/dist-types/ts3.4/commands/AddArtifactCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/BatchDeletePentestsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/BatchGetAgentSpacesCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/BatchGetArtifactMetadataCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/BatchGetFindingsCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/BatchGetPentestJobTasksCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/BatchGetPentestJobsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/BatchGetPentestsCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/BatchGetTargetDomainsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateAgentSpaceCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/CreateApplicationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateIntegrationCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/CreateMembershipCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/CreatePentestCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/CreateTargetDomainCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteAgentSpaceCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/DeleteApplicationCommand.d.ts +46 -0
- package/dist-types/ts3.4/commands/DeleteArtifactCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/DeleteIntegrationCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/DeleteMembershipCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/DeleteTargetDomainCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetApplicationCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/GetArtifactCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/GetIntegrationCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/InitiateProviderRegistrationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListAgentSpacesCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/ListApplicationsCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/ListArtifactsCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/ListDiscoveredEndpointsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListFindingsCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/ListIntegratedResourcesCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListIntegrationsCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/ListMembershipsCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/ListPentestJobTasksCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListPentestJobsForPentestCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListPentestsCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListTargetDomainsCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/StartCodeRemediationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/StartPentestJobCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/StopPentestJobCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/UpdateAgentSpaceCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/UpdateApplicationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateFindingCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/UpdateIntegratedResourcesCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdatePentestCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/UpdateTargetDomainCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/VerifyTargetDomainCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +50 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +45 -0
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
- package/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
- package/dist-types/ts3.4/index.d.ts +12 -0
- package/dist-types/ts3.4/models/SecurityAgentServiceException.d.ts +9 -0
- package/dist-types/ts3.4/models/enums.d.ts +200 -0
- package/dist-types/ts3.4/models/errors.d.ts +46 -0
- package/dist-types/ts3.4/models/models_0.d.ts +977 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/dist-types/ts3.4/pagination/ListAgentSpacesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListApplicationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListArtifactsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListDiscoveredEndpointsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListFindingsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListIntegratedResourcesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListIntegrationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListMembershipsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListPentestJobTasksPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListPentestJobsForPentestPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListPentestsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListTargetDomainsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +13 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +100 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +95 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +104 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +30 -0
- package/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +225 -0
- package/package.json +100 -0
|
@@ -0,0 +1,950 @@
|
|
|
1
|
+
import {
|
|
2
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
3
|
+
PaginationConfiguration,
|
|
4
|
+
Paginator,
|
|
5
|
+
} from "@smithy/types";
|
|
6
|
+
import {
|
|
7
|
+
AddArtifactCommandInput,
|
|
8
|
+
AddArtifactCommandOutput,
|
|
9
|
+
} from "./commands/AddArtifactCommand";
|
|
10
|
+
import {
|
|
11
|
+
BatchDeletePentestsCommandInput,
|
|
12
|
+
BatchDeletePentestsCommandOutput,
|
|
13
|
+
} from "./commands/BatchDeletePentestsCommand";
|
|
14
|
+
import {
|
|
15
|
+
BatchGetAgentSpacesCommandInput,
|
|
16
|
+
BatchGetAgentSpacesCommandOutput,
|
|
17
|
+
} from "./commands/BatchGetAgentSpacesCommand";
|
|
18
|
+
import {
|
|
19
|
+
BatchGetArtifactMetadataCommandInput,
|
|
20
|
+
BatchGetArtifactMetadataCommandOutput,
|
|
21
|
+
} from "./commands/BatchGetArtifactMetadataCommand";
|
|
22
|
+
import {
|
|
23
|
+
BatchGetFindingsCommandInput,
|
|
24
|
+
BatchGetFindingsCommandOutput,
|
|
25
|
+
} from "./commands/BatchGetFindingsCommand";
|
|
26
|
+
import {
|
|
27
|
+
BatchGetPentestJobsCommandInput,
|
|
28
|
+
BatchGetPentestJobsCommandOutput,
|
|
29
|
+
} from "./commands/BatchGetPentestJobsCommand";
|
|
30
|
+
import {
|
|
31
|
+
BatchGetPentestJobTasksCommandInput,
|
|
32
|
+
BatchGetPentestJobTasksCommandOutput,
|
|
33
|
+
} from "./commands/BatchGetPentestJobTasksCommand";
|
|
34
|
+
import {
|
|
35
|
+
BatchGetPentestsCommandInput,
|
|
36
|
+
BatchGetPentestsCommandOutput,
|
|
37
|
+
} from "./commands/BatchGetPentestsCommand";
|
|
38
|
+
import {
|
|
39
|
+
BatchGetTargetDomainsCommandInput,
|
|
40
|
+
BatchGetTargetDomainsCommandOutput,
|
|
41
|
+
} from "./commands/BatchGetTargetDomainsCommand";
|
|
42
|
+
import {
|
|
43
|
+
CreateAgentSpaceCommandInput,
|
|
44
|
+
CreateAgentSpaceCommandOutput,
|
|
45
|
+
} from "./commands/CreateAgentSpaceCommand";
|
|
46
|
+
import {
|
|
47
|
+
CreateApplicationCommandInput,
|
|
48
|
+
CreateApplicationCommandOutput,
|
|
49
|
+
} from "./commands/CreateApplicationCommand";
|
|
50
|
+
import {
|
|
51
|
+
CreateIntegrationCommandInput,
|
|
52
|
+
CreateIntegrationCommandOutput,
|
|
53
|
+
} from "./commands/CreateIntegrationCommand";
|
|
54
|
+
import {
|
|
55
|
+
CreateMembershipCommandInput,
|
|
56
|
+
CreateMembershipCommandOutput,
|
|
57
|
+
} from "./commands/CreateMembershipCommand";
|
|
58
|
+
import {
|
|
59
|
+
CreatePentestCommandInput,
|
|
60
|
+
CreatePentestCommandOutput,
|
|
61
|
+
} from "./commands/CreatePentestCommand";
|
|
62
|
+
import {
|
|
63
|
+
CreateTargetDomainCommandInput,
|
|
64
|
+
CreateTargetDomainCommandOutput,
|
|
65
|
+
} from "./commands/CreateTargetDomainCommand";
|
|
66
|
+
import {
|
|
67
|
+
DeleteAgentSpaceCommandInput,
|
|
68
|
+
DeleteAgentSpaceCommandOutput,
|
|
69
|
+
} from "./commands/DeleteAgentSpaceCommand";
|
|
70
|
+
import {
|
|
71
|
+
DeleteApplicationCommandInput,
|
|
72
|
+
DeleteApplicationCommandOutput,
|
|
73
|
+
} from "./commands/DeleteApplicationCommand";
|
|
74
|
+
import {
|
|
75
|
+
DeleteArtifactCommandInput,
|
|
76
|
+
DeleteArtifactCommandOutput,
|
|
77
|
+
} from "./commands/DeleteArtifactCommand";
|
|
78
|
+
import {
|
|
79
|
+
DeleteIntegrationCommandInput,
|
|
80
|
+
DeleteIntegrationCommandOutput,
|
|
81
|
+
} from "./commands/DeleteIntegrationCommand";
|
|
82
|
+
import {
|
|
83
|
+
DeleteMembershipCommandInput,
|
|
84
|
+
DeleteMembershipCommandOutput,
|
|
85
|
+
} from "./commands/DeleteMembershipCommand";
|
|
86
|
+
import {
|
|
87
|
+
DeleteTargetDomainCommandInput,
|
|
88
|
+
DeleteTargetDomainCommandOutput,
|
|
89
|
+
} from "./commands/DeleteTargetDomainCommand";
|
|
90
|
+
import {
|
|
91
|
+
GetApplicationCommandInput,
|
|
92
|
+
GetApplicationCommandOutput,
|
|
93
|
+
} from "./commands/GetApplicationCommand";
|
|
94
|
+
import {
|
|
95
|
+
GetArtifactCommandInput,
|
|
96
|
+
GetArtifactCommandOutput,
|
|
97
|
+
} from "./commands/GetArtifactCommand";
|
|
98
|
+
import {
|
|
99
|
+
GetIntegrationCommandInput,
|
|
100
|
+
GetIntegrationCommandOutput,
|
|
101
|
+
} from "./commands/GetIntegrationCommand";
|
|
102
|
+
import {
|
|
103
|
+
InitiateProviderRegistrationCommandInput,
|
|
104
|
+
InitiateProviderRegistrationCommandOutput,
|
|
105
|
+
} from "./commands/InitiateProviderRegistrationCommand";
|
|
106
|
+
import {
|
|
107
|
+
ListAgentSpacesCommandInput,
|
|
108
|
+
ListAgentSpacesCommandOutput,
|
|
109
|
+
} from "./commands/ListAgentSpacesCommand";
|
|
110
|
+
import {
|
|
111
|
+
ListApplicationsCommandInput,
|
|
112
|
+
ListApplicationsCommandOutput,
|
|
113
|
+
} from "./commands/ListApplicationsCommand";
|
|
114
|
+
import {
|
|
115
|
+
ListArtifactsCommandInput,
|
|
116
|
+
ListArtifactsCommandOutput,
|
|
117
|
+
} from "./commands/ListArtifactsCommand";
|
|
118
|
+
import {
|
|
119
|
+
ListDiscoveredEndpointsCommandInput,
|
|
120
|
+
ListDiscoveredEndpointsCommandOutput,
|
|
121
|
+
} from "./commands/ListDiscoveredEndpointsCommand";
|
|
122
|
+
import {
|
|
123
|
+
ListFindingsCommandInput,
|
|
124
|
+
ListFindingsCommandOutput,
|
|
125
|
+
} from "./commands/ListFindingsCommand";
|
|
126
|
+
import {
|
|
127
|
+
ListIntegratedResourcesCommandInput,
|
|
128
|
+
ListIntegratedResourcesCommandOutput,
|
|
129
|
+
} from "./commands/ListIntegratedResourcesCommand";
|
|
130
|
+
import {
|
|
131
|
+
ListIntegrationsCommandInput,
|
|
132
|
+
ListIntegrationsCommandOutput,
|
|
133
|
+
} from "./commands/ListIntegrationsCommand";
|
|
134
|
+
import {
|
|
135
|
+
ListMembershipsCommandInput,
|
|
136
|
+
ListMembershipsCommandOutput,
|
|
137
|
+
} from "./commands/ListMembershipsCommand";
|
|
138
|
+
import {
|
|
139
|
+
ListPentestJobsForPentestCommandInput,
|
|
140
|
+
ListPentestJobsForPentestCommandOutput,
|
|
141
|
+
} from "./commands/ListPentestJobsForPentestCommand";
|
|
142
|
+
import {
|
|
143
|
+
ListPentestJobTasksCommandInput,
|
|
144
|
+
ListPentestJobTasksCommandOutput,
|
|
145
|
+
} from "./commands/ListPentestJobTasksCommand";
|
|
146
|
+
import {
|
|
147
|
+
ListPentestsCommandInput,
|
|
148
|
+
ListPentestsCommandOutput,
|
|
149
|
+
} from "./commands/ListPentestsCommand";
|
|
150
|
+
import {
|
|
151
|
+
ListTagsForResourceCommandInput,
|
|
152
|
+
ListTagsForResourceCommandOutput,
|
|
153
|
+
} from "./commands/ListTagsForResourceCommand";
|
|
154
|
+
import {
|
|
155
|
+
ListTargetDomainsCommandInput,
|
|
156
|
+
ListTargetDomainsCommandOutput,
|
|
157
|
+
} from "./commands/ListTargetDomainsCommand";
|
|
158
|
+
import {
|
|
159
|
+
StartCodeRemediationCommandInput,
|
|
160
|
+
StartCodeRemediationCommandOutput,
|
|
161
|
+
} from "./commands/StartCodeRemediationCommand";
|
|
162
|
+
import {
|
|
163
|
+
StartPentestJobCommandInput,
|
|
164
|
+
StartPentestJobCommandOutput,
|
|
165
|
+
} from "./commands/StartPentestJobCommand";
|
|
166
|
+
import {
|
|
167
|
+
StopPentestJobCommandInput,
|
|
168
|
+
StopPentestJobCommandOutput,
|
|
169
|
+
} from "./commands/StopPentestJobCommand";
|
|
170
|
+
import {
|
|
171
|
+
TagResourceCommandInput,
|
|
172
|
+
TagResourceCommandOutput,
|
|
173
|
+
} from "./commands/TagResourceCommand";
|
|
174
|
+
import {
|
|
175
|
+
UntagResourceCommandInput,
|
|
176
|
+
UntagResourceCommandOutput,
|
|
177
|
+
} from "./commands/UntagResourceCommand";
|
|
178
|
+
import {
|
|
179
|
+
UpdateAgentSpaceCommandInput,
|
|
180
|
+
UpdateAgentSpaceCommandOutput,
|
|
181
|
+
} from "./commands/UpdateAgentSpaceCommand";
|
|
182
|
+
import {
|
|
183
|
+
UpdateApplicationCommandInput,
|
|
184
|
+
UpdateApplicationCommandOutput,
|
|
185
|
+
} from "./commands/UpdateApplicationCommand";
|
|
186
|
+
import {
|
|
187
|
+
UpdateFindingCommandInput,
|
|
188
|
+
UpdateFindingCommandOutput,
|
|
189
|
+
} from "./commands/UpdateFindingCommand";
|
|
190
|
+
import {
|
|
191
|
+
UpdateIntegratedResourcesCommandInput,
|
|
192
|
+
UpdateIntegratedResourcesCommandOutput,
|
|
193
|
+
} from "./commands/UpdateIntegratedResourcesCommand";
|
|
194
|
+
import {
|
|
195
|
+
UpdatePentestCommandInput,
|
|
196
|
+
UpdatePentestCommandOutput,
|
|
197
|
+
} from "./commands/UpdatePentestCommand";
|
|
198
|
+
import {
|
|
199
|
+
UpdateTargetDomainCommandInput,
|
|
200
|
+
UpdateTargetDomainCommandOutput,
|
|
201
|
+
} from "./commands/UpdateTargetDomainCommand";
|
|
202
|
+
import {
|
|
203
|
+
VerifyTargetDomainCommandInput,
|
|
204
|
+
VerifyTargetDomainCommandOutput,
|
|
205
|
+
} from "./commands/VerifyTargetDomainCommand";
|
|
206
|
+
import { SecurityAgentClient } from "./SecurityAgentClient";
|
|
207
|
+
export interface SecurityAgent {
|
|
208
|
+
addArtifact(
|
|
209
|
+
args: AddArtifactCommandInput,
|
|
210
|
+
options?: __HttpHandlerOptions
|
|
211
|
+
): Promise<AddArtifactCommandOutput>;
|
|
212
|
+
addArtifact(
|
|
213
|
+
args: AddArtifactCommandInput,
|
|
214
|
+
cb: (err: any, data?: AddArtifactCommandOutput) => void
|
|
215
|
+
): void;
|
|
216
|
+
addArtifact(
|
|
217
|
+
args: AddArtifactCommandInput,
|
|
218
|
+
options: __HttpHandlerOptions,
|
|
219
|
+
cb: (err: any, data?: AddArtifactCommandOutput) => void
|
|
220
|
+
): void;
|
|
221
|
+
batchDeletePentests(
|
|
222
|
+
args: BatchDeletePentestsCommandInput,
|
|
223
|
+
options?: __HttpHandlerOptions
|
|
224
|
+
): Promise<BatchDeletePentestsCommandOutput>;
|
|
225
|
+
batchDeletePentests(
|
|
226
|
+
args: BatchDeletePentestsCommandInput,
|
|
227
|
+
cb: (err: any, data?: BatchDeletePentestsCommandOutput) => void
|
|
228
|
+
): void;
|
|
229
|
+
batchDeletePentests(
|
|
230
|
+
args: BatchDeletePentestsCommandInput,
|
|
231
|
+
options: __HttpHandlerOptions,
|
|
232
|
+
cb: (err: any, data?: BatchDeletePentestsCommandOutput) => void
|
|
233
|
+
): void;
|
|
234
|
+
batchGetAgentSpaces(
|
|
235
|
+
args: BatchGetAgentSpacesCommandInput,
|
|
236
|
+
options?: __HttpHandlerOptions
|
|
237
|
+
): Promise<BatchGetAgentSpacesCommandOutput>;
|
|
238
|
+
batchGetAgentSpaces(
|
|
239
|
+
args: BatchGetAgentSpacesCommandInput,
|
|
240
|
+
cb: (err: any, data?: BatchGetAgentSpacesCommandOutput) => void
|
|
241
|
+
): void;
|
|
242
|
+
batchGetAgentSpaces(
|
|
243
|
+
args: BatchGetAgentSpacesCommandInput,
|
|
244
|
+
options: __HttpHandlerOptions,
|
|
245
|
+
cb: (err: any, data?: BatchGetAgentSpacesCommandOutput) => void
|
|
246
|
+
): void;
|
|
247
|
+
batchGetArtifactMetadata(
|
|
248
|
+
args: BatchGetArtifactMetadataCommandInput,
|
|
249
|
+
options?: __HttpHandlerOptions
|
|
250
|
+
): Promise<BatchGetArtifactMetadataCommandOutput>;
|
|
251
|
+
batchGetArtifactMetadata(
|
|
252
|
+
args: BatchGetArtifactMetadataCommandInput,
|
|
253
|
+
cb: (err: any, data?: BatchGetArtifactMetadataCommandOutput) => void
|
|
254
|
+
): void;
|
|
255
|
+
batchGetArtifactMetadata(
|
|
256
|
+
args: BatchGetArtifactMetadataCommandInput,
|
|
257
|
+
options: __HttpHandlerOptions,
|
|
258
|
+
cb: (err: any, data?: BatchGetArtifactMetadataCommandOutput) => void
|
|
259
|
+
): void;
|
|
260
|
+
batchGetFindings(
|
|
261
|
+
args: BatchGetFindingsCommandInput,
|
|
262
|
+
options?: __HttpHandlerOptions
|
|
263
|
+
): Promise<BatchGetFindingsCommandOutput>;
|
|
264
|
+
batchGetFindings(
|
|
265
|
+
args: BatchGetFindingsCommandInput,
|
|
266
|
+
cb: (err: any, data?: BatchGetFindingsCommandOutput) => void
|
|
267
|
+
): void;
|
|
268
|
+
batchGetFindings(
|
|
269
|
+
args: BatchGetFindingsCommandInput,
|
|
270
|
+
options: __HttpHandlerOptions,
|
|
271
|
+
cb: (err: any, data?: BatchGetFindingsCommandOutput) => void
|
|
272
|
+
): void;
|
|
273
|
+
batchGetPentestJobs(
|
|
274
|
+
args: BatchGetPentestJobsCommandInput,
|
|
275
|
+
options?: __HttpHandlerOptions
|
|
276
|
+
): Promise<BatchGetPentestJobsCommandOutput>;
|
|
277
|
+
batchGetPentestJobs(
|
|
278
|
+
args: BatchGetPentestJobsCommandInput,
|
|
279
|
+
cb: (err: any, data?: BatchGetPentestJobsCommandOutput) => void
|
|
280
|
+
): void;
|
|
281
|
+
batchGetPentestJobs(
|
|
282
|
+
args: BatchGetPentestJobsCommandInput,
|
|
283
|
+
options: __HttpHandlerOptions,
|
|
284
|
+
cb: (err: any, data?: BatchGetPentestJobsCommandOutput) => void
|
|
285
|
+
): void;
|
|
286
|
+
batchGetPentestJobTasks(
|
|
287
|
+
args: BatchGetPentestJobTasksCommandInput,
|
|
288
|
+
options?: __HttpHandlerOptions
|
|
289
|
+
): Promise<BatchGetPentestJobTasksCommandOutput>;
|
|
290
|
+
batchGetPentestJobTasks(
|
|
291
|
+
args: BatchGetPentestJobTasksCommandInput,
|
|
292
|
+
cb: (err: any, data?: BatchGetPentestJobTasksCommandOutput) => void
|
|
293
|
+
): void;
|
|
294
|
+
batchGetPentestJobTasks(
|
|
295
|
+
args: BatchGetPentestJobTasksCommandInput,
|
|
296
|
+
options: __HttpHandlerOptions,
|
|
297
|
+
cb: (err: any, data?: BatchGetPentestJobTasksCommandOutput) => void
|
|
298
|
+
): void;
|
|
299
|
+
batchGetPentests(
|
|
300
|
+
args: BatchGetPentestsCommandInput,
|
|
301
|
+
options?: __HttpHandlerOptions
|
|
302
|
+
): Promise<BatchGetPentestsCommandOutput>;
|
|
303
|
+
batchGetPentests(
|
|
304
|
+
args: BatchGetPentestsCommandInput,
|
|
305
|
+
cb: (err: any, data?: BatchGetPentestsCommandOutput) => void
|
|
306
|
+
): void;
|
|
307
|
+
batchGetPentests(
|
|
308
|
+
args: BatchGetPentestsCommandInput,
|
|
309
|
+
options: __HttpHandlerOptions,
|
|
310
|
+
cb: (err: any, data?: BatchGetPentestsCommandOutput) => void
|
|
311
|
+
): void;
|
|
312
|
+
batchGetTargetDomains(
|
|
313
|
+
args: BatchGetTargetDomainsCommandInput,
|
|
314
|
+
options?: __HttpHandlerOptions
|
|
315
|
+
): Promise<BatchGetTargetDomainsCommandOutput>;
|
|
316
|
+
batchGetTargetDomains(
|
|
317
|
+
args: BatchGetTargetDomainsCommandInput,
|
|
318
|
+
cb: (err: any, data?: BatchGetTargetDomainsCommandOutput) => void
|
|
319
|
+
): void;
|
|
320
|
+
batchGetTargetDomains(
|
|
321
|
+
args: BatchGetTargetDomainsCommandInput,
|
|
322
|
+
options: __HttpHandlerOptions,
|
|
323
|
+
cb: (err: any, data?: BatchGetTargetDomainsCommandOutput) => void
|
|
324
|
+
): void;
|
|
325
|
+
createAgentSpace(
|
|
326
|
+
args: CreateAgentSpaceCommandInput,
|
|
327
|
+
options?: __HttpHandlerOptions
|
|
328
|
+
): Promise<CreateAgentSpaceCommandOutput>;
|
|
329
|
+
createAgentSpace(
|
|
330
|
+
args: CreateAgentSpaceCommandInput,
|
|
331
|
+
cb: (err: any, data?: CreateAgentSpaceCommandOutput) => void
|
|
332
|
+
): void;
|
|
333
|
+
createAgentSpace(
|
|
334
|
+
args: CreateAgentSpaceCommandInput,
|
|
335
|
+
options: __HttpHandlerOptions,
|
|
336
|
+
cb: (err: any, data?: CreateAgentSpaceCommandOutput) => void
|
|
337
|
+
): void;
|
|
338
|
+
createApplication(): Promise<CreateApplicationCommandOutput>;
|
|
339
|
+
createApplication(
|
|
340
|
+
args: CreateApplicationCommandInput,
|
|
341
|
+
options?: __HttpHandlerOptions
|
|
342
|
+
): Promise<CreateApplicationCommandOutput>;
|
|
343
|
+
createApplication(
|
|
344
|
+
args: CreateApplicationCommandInput,
|
|
345
|
+
cb: (err: any, data?: CreateApplicationCommandOutput) => void
|
|
346
|
+
): void;
|
|
347
|
+
createApplication(
|
|
348
|
+
args: CreateApplicationCommandInput,
|
|
349
|
+
options: __HttpHandlerOptions,
|
|
350
|
+
cb: (err: any, data?: CreateApplicationCommandOutput) => void
|
|
351
|
+
): void;
|
|
352
|
+
createIntegration(
|
|
353
|
+
args: CreateIntegrationCommandInput,
|
|
354
|
+
options?: __HttpHandlerOptions
|
|
355
|
+
): Promise<CreateIntegrationCommandOutput>;
|
|
356
|
+
createIntegration(
|
|
357
|
+
args: CreateIntegrationCommandInput,
|
|
358
|
+
cb: (err: any, data?: CreateIntegrationCommandOutput) => void
|
|
359
|
+
): void;
|
|
360
|
+
createIntegration(
|
|
361
|
+
args: CreateIntegrationCommandInput,
|
|
362
|
+
options: __HttpHandlerOptions,
|
|
363
|
+
cb: (err: any, data?: CreateIntegrationCommandOutput) => void
|
|
364
|
+
): void;
|
|
365
|
+
createMembership(
|
|
366
|
+
args: CreateMembershipCommandInput,
|
|
367
|
+
options?: __HttpHandlerOptions
|
|
368
|
+
): Promise<CreateMembershipCommandOutput>;
|
|
369
|
+
createMembership(
|
|
370
|
+
args: CreateMembershipCommandInput,
|
|
371
|
+
cb: (err: any, data?: CreateMembershipCommandOutput) => void
|
|
372
|
+
): void;
|
|
373
|
+
createMembership(
|
|
374
|
+
args: CreateMembershipCommandInput,
|
|
375
|
+
options: __HttpHandlerOptions,
|
|
376
|
+
cb: (err: any, data?: CreateMembershipCommandOutput) => void
|
|
377
|
+
): void;
|
|
378
|
+
createPentest(
|
|
379
|
+
args: CreatePentestCommandInput,
|
|
380
|
+
options?: __HttpHandlerOptions
|
|
381
|
+
): Promise<CreatePentestCommandOutput>;
|
|
382
|
+
createPentest(
|
|
383
|
+
args: CreatePentestCommandInput,
|
|
384
|
+
cb: (err: any, data?: CreatePentestCommandOutput) => void
|
|
385
|
+
): void;
|
|
386
|
+
createPentest(
|
|
387
|
+
args: CreatePentestCommandInput,
|
|
388
|
+
options: __HttpHandlerOptions,
|
|
389
|
+
cb: (err: any, data?: CreatePentestCommandOutput) => void
|
|
390
|
+
): void;
|
|
391
|
+
createTargetDomain(
|
|
392
|
+
args: CreateTargetDomainCommandInput,
|
|
393
|
+
options?: __HttpHandlerOptions
|
|
394
|
+
): Promise<CreateTargetDomainCommandOutput>;
|
|
395
|
+
createTargetDomain(
|
|
396
|
+
args: CreateTargetDomainCommandInput,
|
|
397
|
+
cb: (err: any, data?: CreateTargetDomainCommandOutput) => void
|
|
398
|
+
): void;
|
|
399
|
+
createTargetDomain(
|
|
400
|
+
args: CreateTargetDomainCommandInput,
|
|
401
|
+
options: __HttpHandlerOptions,
|
|
402
|
+
cb: (err: any, data?: CreateTargetDomainCommandOutput) => void
|
|
403
|
+
): void;
|
|
404
|
+
deleteAgentSpace(
|
|
405
|
+
args: DeleteAgentSpaceCommandInput,
|
|
406
|
+
options?: __HttpHandlerOptions
|
|
407
|
+
): Promise<DeleteAgentSpaceCommandOutput>;
|
|
408
|
+
deleteAgentSpace(
|
|
409
|
+
args: DeleteAgentSpaceCommandInput,
|
|
410
|
+
cb: (err: any, data?: DeleteAgentSpaceCommandOutput) => void
|
|
411
|
+
): void;
|
|
412
|
+
deleteAgentSpace(
|
|
413
|
+
args: DeleteAgentSpaceCommandInput,
|
|
414
|
+
options: __HttpHandlerOptions,
|
|
415
|
+
cb: (err: any, data?: DeleteAgentSpaceCommandOutput) => void
|
|
416
|
+
): void;
|
|
417
|
+
deleteApplication(
|
|
418
|
+
args: DeleteApplicationCommandInput,
|
|
419
|
+
options?: __HttpHandlerOptions
|
|
420
|
+
): Promise<DeleteApplicationCommandOutput>;
|
|
421
|
+
deleteApplication(
|
|
422
|
+
args: DeleteApplicationCommandInput,
|
|
423
|
+
cb: (err: any, data?: DeleteApplicationCommandOutput) => void
|
|
424
|
+
): void;
|
|
425
|
+
deleteApplication(
|
|
426
|
+
args: DeleteApplicationCommandInput,
|
|
427
|
+
options: __HttpHandlerOptions,
|
|
428
|
+
cb: (err: any, data?: DeleteApplicationCommandOutput) => void
|
|
429
|
+
): void;
|
|
430
|
+
deleteArtifact(
|
|
431
|
+
args: DeleteArtifactCommandInput,
|
|
432
|
+
options?: __HttpHandlerOptions
|
|
433
|
+
): Promise<DeleteArtifactCommandOutput>;
|
|
434
|
+
deleteArtifact(
|
|
435
|
+
args: DeleteArtifactCommandInput,
|
|
436
|
+
cb: (err: any, data?: DeleteArtifactCommandOutput) => void
|
|
437
|
+
): void;
|
|
438
|
+
deleteArtifact(
|
|
439
|
+
args: DeleteArtifactCommandInput,
|
|
440
|
+
options: __HttpHandlerOptions,
|
|
441
|
+
cb: (err: any, data?: DeleteArtifactCommandOutput) => void
|
|
442
|
+
): void;
|
|
443
|
+
deleteIntegration(
|
|
444
|
+
args: DeleteIntegrationCommandInput,
|
|
445
|
+
options?: __HttpHandlerOptions
|
|
446
|
+
): Promise<DeleteIntegrationCommandOutput>;
|
|
447
|
+
deleteIntegration(
|
|
448
|
+
args: DeleteIntegrationCommandInput,
|
|
449
|
+
cb: (err: any, data?: DeleteIntegrationCommandOutput) => void
|
|
450
|
+
): void;
|
|
451
|
+
deleteIntegration(
|
|
452
|
+
args: DeleteIntegrationCommandInput,
|
|
453
|
+
options: __HttpHandlerOptions,
|
|
454
|
+
cb: (err: any, data?: DeleteIntegrationCommandOutput) => void
|
|
455
|
+
): void;
|
|
456
|
+
deleteMembership(
|
|
457
|
+
args: DeleteMembershipCommandInput,
|
|
458
|
+
options?: __HttpHandlerOptions
|
|
459
|
+
): Promise<DeleteMembershipCommandOutput>;
|
|
460
|
+
deleteMembership(
|
|
461
|
+
args: DeleteMembershipCommandInput,
|
|
462
|
+
cb: (err: any, data?: DeleteMembershipCommandOutput) => void
|
|
463
|
+
): void;
|
|
464
|
+
deleteMembership(
|
|
465
|
+
args: DeleteMembershipCommandInput,
|
|
466
|
+
options: __HttpHandlerOptions,
|
|
467
|
+
cb: (err: any, data?: DeleteMembershipCommandOutput) => void
|
|
468
|
+
): void;
|
|
469
|
+
deleteTargetDomain(
|
|
470
|
+
args: DeleteTargetDomainCommandInput,
|
|
471
|
+
options?: __HttpHandlerOptions
|
|
472
|
+
): Promise<DeleteTargetDomainCommandOutput>;
|
|
473
|
+
deleteTargetDomain(
|
|
474
|
+
args: DeleteTargetDomainCommandInput,
|
|
475
|
+
cb: (err: any, data?: DeleteTargetDomainCommandOutput) => void
|
|
476
|
+
): void;
|
|
477
|
+
deleteTargetDomain(
|
|
478
|
+
args: DeleteTargetDomainCommandInput,
|
|
479
|
+
options: __HttpHandlerOptions,
|
|
480
|
+
cb: (err: any, data?: DeleteTargetDomainCommandOutput) => void
|
|
481
|
+
): void;
|
|
482
|
+
getApplication(
|
|
483
|
+
args: GetApplicationCommandInput,
|
|
484
|
+
options?: __HttpHandlerOptions
|
|
485
|
+
): Promise<GetApplicationCommandOutput>;
|
|
486
|
+
getApplication(
|
|
487
|
+
args: GetApplicationCommandInput,
|
|
488
|
+
cb: (err: any, data?: GetApplicationCommandOutput) => void
|
|
489
|
+
): void;
|
|
490
|
+
getApplication(
|
|
491
|
+
args: GetApplicationCommandInput,
|
|
492
|
+
options: __HttpHandlerOptions,
|
|
493
|
+
cb: (err: any, data?: GetApplicationCommandOutput) => void
|
|
494
|
+
): void;
|
|
495
|
+
getArtifact(
|
|
496
|
+
args: GetArtifactCommandInput,
|
|
497
|
+
options?: __HttpHandlerOptions
|
|
498
|
+
): Promise<GetArtifactCommandOutput>;
|
|
499
|
+
getArtifact(
|
|
500
|
+
args: GetArtifactCommandInput,
|
|
501
|
+
cb: (err: any, data?: GetArtifactCommandOutput) => void
|
|
502
|
+
): void;
|
|
503
|
+
getArtifact(
|
|
504
|
+
args: GetArtifactCommandInput,
|
|
505
|
+
options: __HttpHandlerOptions,
|
|
506
|
+
cb: (err: any, data?: GetArtifactCommandOutput) => void
|
|
507
|
+
): void;
|
|
508
|
+
getIntegration(
|
|
509
|
+
args: GetIntegrationCommandInput,
|
|
510
|
+
options?: __HttpHandlerOptions
|
|
511
|
+
): Promise<GetIntegrationCommandOutput>;
|
|
512
|
+
getIntegration(
|
|
513
|
+
args: GetIntegrationCommandInput,
|
|
514
|
+
cb: (err: any, data?: GetIntegrationCommandOutput) => void
|
|
515
|
+
): void;
|
|
516
|
+
getIntegration(
|
|
517
|
+
args: GetIntegrationCommandInput,
|
|
518
|
+
options: __HttpHandlerOptions,
|
|
519
|
+
cb: (err: any, data?: GetIntegrationCommandOutput) => void
|
|
520
|
+
): void;
|
|
521
|
+
initiateProviderRegistration(
|
|
522
|
+
args: InitiateProviderRegistrationCommandInput,
|
|
523
|
+
options?: __HttpHandlerOptions
|
|
524
|
+
): Promise<InitiateProviderRegistrationCommandOutput>;
|
|
525
|
+
initiateProviderRegistration(
|
|
526
|
+
args: InitiateProviderRegistrationCommandInput,
|
|
527
|
+
cb: (err: any, data?: InitiateProviderRegistrationCommandOutput) => void
|
|
528
|
+
): void;
|
|
529
|
+
initiateProviderRegistration(
|
|
530
|
+
args: InitiateProviderRegistrationCommandInput,
|
|
531
|
+
options: __HttpHandlerOptions,
|
|
532
|
+
cb: (err: any, data?: InitiateProviderRegistrationCommandOutput) => void
|
|
533
|
+
): void;
|
|
534
|
+
listAgentSpaces(): Promise<ListAgentSpacesCommandOutput>;
|
|
535
|
+
listAgentSpaces(
|
|
536
|
+
args: ListAgentSpacesCommandInput,
|
|
537
|
+
options?: __HttpHandlerOptions
|
|
538
|
+
): Promise<ListAgentSpacesCommandOutput>;
|
|
539
|
+
listAgentSpaces(
|
|
540
|
+
args: ListAgentSpacesCommandInput,
|
|
541
|
+
cb: (err: any, data?: ListAgentSpacesCommandOutput) => void
|
|
542
|
+
): void;
|
|
543
|
+
listAgentSpaces(
|
|
544
|
+
args: ListAgentSpacesCommandInput,
|
|
545
|
+
options: __HttpHandlerOptions,
|
|
546
|
+
cb: (err: any, data?: ListAgentSpacesCommandOutput) => void
|
|
547
|
+
): void;
|
|
548
|
+
listApplications(): Promise<ListApplicationsCommandOutput>;
|
|
549
|
+
listApplications(
|
|
550
|
+
args: ListApplicationsCommandInput,
|
|
551
|
+
options?: __HttpHandlerOptions
|
|
552
|
+
): Promise<ListApplicationsCommandOutput>;
|
|
553
|
+
listApplications(
|
|
554
|
+
args: ListApplicationsCommandInput,
|
|
555
|
+
cb: (err: any, data?: ListApplicationsCommandOutput) => void
|
|
556
|
+
): void;
|
|
557
|
+
listApplications(
|
|
558
|
+
args: ListApplicationsCommandInput,
|
|
559
|
+
options: __HttpHandlerOptions,
|
|
560
|
+
cb: (err: any, data?: ListApplicationsCommandOutput) => void
|
|
561
|
+
): void;
|
|
562
|
+
listArtifacts(
|
|
563
|
+
args: ListArtifactsCommandInput,
|
|
564
|
+
options?: __HttpHandlerOptions
|
|
565
|
+
): Promise<ListArtifactsCommandOutput>;
|
|
566
|
+
listArtifacts(
|
|
567
|
+
args: ListArtifactsCommandInput,
|
|
568
|
+
cb: (err: any, data?: ListArtifactsCommandOutput) => void
|
|
569
|
+
): void;
|
|
570
|
+
listArtifacts(
|
|
571
|
+
args: ListArtifactsCommandInput,
|
|
572
|
+
options: __HttpHandlerOptions,
|
|
573
|
+
cb: (err: any, data?: ListArtifactsCommandOutput) => void
|
|
574
|
+
): void;
|
|
575
|
+
listDiscoveredEndpoints(
|
|
576
|
+
args: ListDiscoveredEndpointsCommandInput,
|
|
577
|
+
options?: __HttpHandlerOptions
|
|
578
|
+
): Promise<ListDiscoveredEndpointsCommandOutput>;
|
|
579
|
+
listDiscoveredEndpoints(
|
|
580
|
+
args: ListDiscoveredEndpointsCommandInput,
|
|
581
|
+
cb: (err: any, data?: ListDiscoveredEndpointsCommandOutput) => void
|
|
582
|
+
): void;
|
|
583
|
+
listDiscoveredEndpoints(
|
|
584
|
+
args: ListDiscoveredEndpointsCommandInput,
|
|
585
|
+
options: __HttpHandlerOptions,
|
|
586
|
+
cb: (err: any, data?: ListDiscoveredEndpointsCommandOutput) => void
|
|
587
|
+
): void;
|
|
588
|
+
listFindings(
|
|
589
|
+
args: ListFindingsCommandInput,
|
|
590
|
+
options?: __HttpHandlerOptions
|
|
591
|
+
): Promise<ListFindingsCommandOutput>;
|
|
592
|
+
listFindings(
|
|
593
|
+
args: ListFindingsCommandInput,
|
|
594
|
+
cb: (err: any, data?: ListFindingsCommandOutput) => void
|
|
595
|
+
): void;
|
|
596
|
+
listFindings(
|
|
597
|
+
args: ListFindingsCommandInput,
|
|
598
|
+
options: __HttpHandlerOptions,
|
|
599
|
+
cb: (err: any, data?: ListFindingsCommandOutput) => void
|
|
600
|
+
): void;
|
|
601
|
+
listIntegratedResources(
|
|
602
|
+
args: ListIntegratedResourcesCommandInput,
|
|
603
|
+
options?: __HttpHandlerOptions
|
|
604
|
+
): Promise<ListIntegratedResourcesCommandOutput>;
|
|
605
|
+
listIntegratedResources(
|
|
606
|
+
args: ListIntegratedResourcesCommandInput,
|
|
607
|
+
cb: (err: any, data?: ListIntegratedResourcesCommandOutput) => void
|
|
608
|
+
): void;
|
|
609
|
+
listIntegratedResources(
|
|
610
|
+
args: ListIntegratedResourcesCommandInput,
|
|
611
|
+
options: __HttpHandlerOptions,
|
|
612
|
+
cb: (err: any, data?: ListIntegratedResourcesCommandOutput) => void
|
|
613
|
+
): void;
|
|
614
|
+
listIntegrations(): Promise<ListIntegrationsCommandOutput>;
|
|
615
|
+
listIntegrations(
|
|
616
|
+
args: ListIntegrationsCommandInput,
|
|
617
|
+
options?: __HttpHandlerOptions
|
|
618
|
+
): Promise<ListIntegrationsCommandOutput>;
|
|
619
|
+
listIntegrations(
|
|
620
|
+
args: ListIntegrationsCommandInput,
|
|
621
|
+
cb: (err: any, data?: ListIntegrationsCommandOutput) => void
|
|
622
|
+
): void;
|
|
623
|
+
listIntegrations(
|
|
624
|
+
args: ListIntegrationsCommandInput,
|
|
625
|
+
options: __HttpHandlerOptions,
|
|
626
|
+
cb: (err: any, data?: ListIntegrationsCommandOutput) => void
|
|
627
|
+
): void;
|
|
628
|
+
listMemberships(
|
|
629
|
+
args: ListMembershipsCommandInput,
|
|
630
|
+
options?: __HttpHandlerOptions
|
|
631
|
+
): Promise<ListMembershipsCommandOutput>;
|
|
632
|
+
listMemberships(
|
|
633
|
+
args: ListMembershipsCommandInput,
|
|
634
|
+
cb: (err: any, data?: ListMembershipsCommandOutput) => void
|
|
635
|
+
): void;
|
|
636
|
+
listMemberships(
|
|
637
|
+
args: ListMembershipsCommandInput,
|
|
638
|
+
options: __HttpHandlerOptions,
|
|
639
|
+
cb: (err: any, data?: ListMembershipsCommandOutput) => void
|
|
640
|
+
): void;
|
|
641
|
+
listPentestJobsForPentest(
|
|
642
|
+
args: ListPentestJobsForPentestCommandInput,
|
|
643
|
+
options?: __HttpHandlerOptions
|
|
644
|
+
): Promise<ListPentestJobsForPentestCommandOutput>;
|
|
645
|
+
listPentestJobsForPentest(
|
|
646
|
+
args: ListPentestJobsForPentestCommandInput,
|
|
647
|
+
cb: (err: any, data?: ListPentestJobsForPentestCommandOutput) => void
|
|
648
|
+
): void;
|
|
649
|
+
listPentestJobsForPentest(
|
|
650
|
+
args: ListPentestJobsForPentestCommandInput,
|
|
651
|
+
options: __HttpHandlerOptions,
|
|
652
|
+
cb: (err: any, data?: ListPentestJobsForPentestCommandOutput) => void
|
|
653
|
+
): void;
|
|
654
|
+
listPentestJobTasks(
|
|
655
|
+
args: ListPentestJobTasksCommandInput,
|
|
656
|
+
options?: __HttpHandlerOptions
|
|
657
|
+
): Promise<ListPentestJobTasksCommandOutput>;
|
|
658
|
+
listPentestJobTasks(
|
|
659
|
+
args: ListPentestJobTasksCommandInput,
|
|
660
|
+
cb: (err: any, data?: ListPentestJobTasksCommandOutput) => void
|
|
661
|
+
): void;
|
|
662
|
+
listPentestJobTasks(
|
|
663
|
+
args: ListPentestJobTasksCommandInput,
|
|
664
|
+
options: __HttpHandlerOptions,
|
|
665
|
+
cb: (err: any, data?: ListPentestJobTasksCommandOutput) => void
|
|
666
|
+
): void;
|
|
667
|
+
listPentests(
|
|
668
|
+
args: ListPentestsCommandInput,
|
|
669
|
+
options?: __HttpHandlerOptions
|
|
670
|
+
): Promise<ListPentestsCommandOutput>;
|
|
671
|
+
listPentests(
|
|
672
|
+
args: ListPentestsCommandInput,
|
|
673
|
+
cb: (err: any, data?: ListPentestsCommandOutput) => void
|
|
674
|
+
): void;
|
|
675
|
+
listPentests(
|
|
676
|
+
args: ListPentestsCommandInput,
|
|
677
|
+
options: __HttpHandlerOptions,
|
|
678
|
+
cb: (err: any, data?: ListPentestsCommandOutput) => void
|
|
679
|
+
): void;
|
|
680
|
+
listTagsForResource(
|
|
681
|
+
args: ListTagsForResourceCommandInput,
|
|
682
|
+
options?: __HttpHandlerOptions
|
|
683
|
+
): Promise<ListTagsForResourceCommandOutput>;
|
|
684
|
+
listTagsForResource(
|
|
685
|
+
args: ListTagsForResourceCommandInput,
|
|
686
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
687
|
+
): void;
|
|
688
|
+
listTagsForResource(
|
|
689
|
+
args: ListTagsForResourceCommandInput,
|
|
690
|
+
options: __HttpHandlerOptions,
|
|
691
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
692
|
+
): void;
|
|
693
|
+
listTargetDomains(): Promise<ListTargetDomainsCommandOutput>;
|
|
694
|
+
listTargetDomains(
|
|
695
|
+
args: ListTargetDomainsCommandInput,
|
|
696
|
+
options?: __HttpHandlerOptions
|
|
697
|
+
): Promise<ListTargetDomainsCommandOutput>;
|
|
698
|
+
listTargetDomains(
|
|
699
|
+
args: ListTargetDomainsCommandInput,
|
|
700
|
+
cb: (err: any, data?: ListTargetDomainsCommandOutput) => void
|
|
701
|
+
): void;
|
|
702
|
+
listTargetDomains(
|
|
703
|
+
args: ListTargetDomainsCommandInput,
|
|
704
|
+
options: __HttpHandlerOptions,
|
|
705
|
+
cb: (err: any, data?: ListTargetDomainsCommandOutput) => void
|
|
706
|
+
): void;
|
|
707
|
+
startCodeRemediation(
|
|
708
|
+
args: StartCodeRemediationCommandInput,
|
|
709
|
+
options?: __HttpHandlerOptions
|
|
710
|
+
): Promise<StartCodeRemediationCommandOutput>;
|
|
711
|
+
startCodeRemediation(
|
|
712
|
+
args: StartCodeRemediationCommandInput,
|
|
713
|
+
cb: (err: any, data?: StartCodeRemediationCommandOutput) => void
|
|
714
|
+
): void;
|
|
715
|
+
startCodeRemediation(
|
|
716
|
+
args: StartCodeRemediationCommandInput,
|
|
717
|
+
options: __HttpHandlerOptions,
|
|
718
|
+
cb: (err: any, data?: StartCodeRemediationCommandOutput) => void
|
|
719
|
+
): void;
|
|
720
|
+
startPentestJob(
|
|
721
|
+
args: StartPentestJobCommandInput,
|
|
722
|
+
options?: __HttpHandlerOptions
|
|
723
|
+
): Promise<StartPentestJobCommandOutput>;
|
|
724
|
+
startPentestJob(
|
|
725
|
+
args: StartPentestJobCommandInput,
|
|
726
|
+
cb: (err: any, data?: StartPentestJobCommandOutput) => void
|
|
727
|
+
): void;
|
|
728
|
+
startPentestJob(
|
|
729
|
+
args: StartPentestJobCommandInput,
|
|
730
|
+
options: __HttpHandlerOptions,
|
|
731
|
+
cb: (err: any, data?: StartPentestJobCommandOutput) => void
|
|
732
|
+
): void;
|
|
733
|
+
stopPentestJob(
|
|
734
|
+
args: StopPentestJobCommandInput,
|
|
735
|
+
options?: __HttpHandlerOptions
|
|
736
|
+
): Promise<StopPentestJobCommandOutput>;
|
|
737
|
+
stopPentestJob(
|
|
738
|
+
args: StopPentestJobCommandInput,
|
|
739
|
+
cb: (err: any, data?: StopPentestJobCommandOutput) => void
|
|
740
|
+
): void;
|
|
741
|
+
stopPentestJob(
|
|
742
|
+
args: StopPentestJobCommandInput,
|
|
743
|
+
options: __HttpHandlerOptions,
|
|
744
|
+
cb: (err: any, data?: StopPentestJobCommandOutput) => void
|
|
745
|
+
): void;
|
|
746
|
+
tagResource(
|
|
747
|
+
args: TagResourceCommandInput,
|
|
748
|
+
options?: __HttpHandlerOptions
|
|
749
|
+
): Promise<TagResourceCommandOutput>;
|
|
750
|
+
tagResource(
|
|
751
|
+
args: TagResourceCommandInput,
|
|
752
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
753
|
+
): void;
|
|
754
|
+
tagResource(
|
|
755
|
+
args: TagResourceCommandInput,
|
|
756
|
+
options: __HttpHandlerOptions,
|
|
757
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
758
|
+
): void;
|
|
759
|
+
untagResource(
|
|
760
|
+
args: UntagResourceCommandInput,
|
|
761
|
+
options?: __HttpHandlerOptions
|
|
762
|
+
): Promise<UntagResourceCommandOutput>;
|
|
763
|
+
untagResource(
|
|
764
|
+
args: UntagResourceCommandInput,
|
|
765
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
766
|
+
): void;
|
|
767
|
+
untagResource(
|
|
768
|
+
args: UntagResourceCommandInput,
|
|
769
|
+
options: __HttpHandlerOptions,
|
|
770
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
771
|
+
): void;
|
|
772
|
+
updateAgentSpace(
|
|
773
|
+
args: UpdateAgentSpaceCommandInput,
|
|
774
|
+
options?: __HttpHandlerOptions
|
|
775
|
+
): Promise<UpdateAgentSpaceCommandOutput>;
|
|
776
|
+
updateAgentSpace(
|
|
777
|
+
args: UpdateAgentSpaceCommandInput,
|
|
778
|
+
cb: (err: any, data?: UpdateAgentSpaceCommandOutput) => void
|
|
779
|
+
): void;
|
|
780
|
+
updateAgentSpace(
|
|
781
|
+
args: UpdateAgentSpaceCommandInput,
|
|
782
|
+
options: __HttpHandlerOptions,
|
|
783
|
+
cb: (err: any, data?: UpdateAgentSpaceCommandOutput) => void
|
|
784
|
+
): void;
|
|
785
|
+
updateApplication(
|
|
786
|
+
args: UpdateApplicationCommandInput,
|
|
787
|
+
options?: __HttpHandlerOptions
|
|
788
|
+
): Promise<UpdateApplicationCommandOutput>;
|
|
789
|
+
updateApplication(
|
|
790
|
+
args: UpdateApplicationCommandInput,
|
|
791
|
+
cb: (err: any, data?: UpdateApplicationCommandOutput) => void
|
|
792
|
+
): void;
|
|
793
|
+
updateApplication(
|
|
794
|
+
args: UpdateApplicationCommandInput,
|
|
795
|
+
options: __HttpHandlerOptions,
|
|
796
|
+
cb: (err: any, data?: UpdateApplicationCommandOutput) => void
|
|
797
|
+
): void;
|
|
798
|
+
updateFinding(
|
|
799
|
+
args: UpdateFindingCommandInput,
|
|
800
|
+
options?: __HttpHandlerOptions
|
|
801
|
+
): Promise<UpdateFindingCommandOutput>;
|
|
802
|
+
updateFinding(
|
|
803
|
+
args: UpdateFindingCommandInput,
|
|
804
|
+
cb: (err: any, data?: UpdateFindingCommandOutput) => void
|
|
805
|
+
): void;
|
|
806
|
+
updateFinding(
|
|
807
|
+
args: UpdateFindingCommandInput,
|
|
808
|
+
options: __HttpHandlerOptions,
|
|
809
|
+
cb: (err: any, data?: UpdateFindingCommandOutput) => void
|
|
810
|
+
): void;
|
|
811
|
+
updateIntegratedResources(
|
|
812
|
+
args: UpdateIntegratedResourcesCommandInput,
|
|
813
|
+
options?: __HttpHandlerOptions
|
|
814
|
+
): Promise<UpdateIntegratedResourcesCommandOutput>;
|
|
815
|
+
updateIntegratedResources(
|
|
816
|
+
args: UpdateIntegratedResourcesCommandInput,
|
|
817
|
+
cb: (err: any, data?: UpdateIntegratedResourcesCommandOutput) => void
|
|
818
|
+
): void;
|
|
819
|
+
updateIntegratedResources(
|
|
820
|
+
args: UpdateIntegratedResourcesCommandInput,
|
|
821
|
+
options: __HttpHandlerOptions,
|
|
822
|
+
cb: (err: any, data?: UpdateIntegratedResourcesCommandOutput) => void
|
|
823
|
+
): void;
|
|
824
|
+
updatePentest(
|
|
825
|
+
args: UpdatePentestCommandInput,
|
|
826
|
+
options?: __HttpHandlerOptions
|
|
827
|
+
): Promise<UpdatePentestCommandOutput>;
|
|
828
|
+
updatePentest(
|
|
829
|
+
args: UpdatePentestCommandInput,
|
|
830
|
+
cb: (err: any, data?: UpdatePentestCommandOutput) => void
|
|
831
|
+
): void;
|
|
832
|
+
updatePentest(
|
|
833
|
+
args: UpdatePentestCommandInput,
|
|
834
|
+
options: __HttpHandlerOptions,
|
|
835
|
+
cb: (err: any, data?: UpdatePentestCommandOutput) => void
|
|
836
|
+
): void;
|
|
837
|
+
updateTargetDomain(
|
|
838
|
+
args: UpdateTargetDomainCommandInput,
|
|
839
|
+
options?: __HttpHandlerOptions
|
|
840
|
+
): Promise<UpdateTargetDomainCommandOutput>;
|
|
841
|
+
updateTargetDomain(
|
|
842
|
+
args: UpdateTargetDomainCommandInput,
|
|
843
|
+
cb: (err: any, data?: UpdateTargetDomainCommandOutput) => void
|
|
844
|
+
): void;
|
|
845
|
+
updateTargetDomain(
|
|
846
|
+
args: UpdateTargetDomainCommandInput,
|
|
847
|
+
options: __HttpHandlerOptions,
|
|
848
|
+
cb: (err: any, data?: UpdateTargetDomainCommandOutput) => void
|
|
849
|
+
): void;
|
|
850
|
+
verifyTargetDomain(
|
|
851
|
+
args: VerifyTargetDomainCommandInput,
|
|
852
|
+
options?: __HttpHandlerOptions
|
|
853
|
+
): Promise<VerifyTargetDomainCommandOutput>;
|
|
854
|
+
verifyTargetDomain(
|
|
855
|
+
args: VerifyTargetDomainCommandInput,
|
|
856
|
+
cb: (err: any, data?: VerifyTargetDomainCommandOutput) => void
|
|
857
|
+
): void;
|
|
858
|
+
verifyTargetDomain(
|
|
859
|
+
args: VerifyTargetDomainCommandInput,
|
|
860
|
+
options: __HttpHandlerOptions,
|
|
861
|
+
cb: (err: any, data?: VerifyTargetDomainCommandOutput) => void
|
|
862
|
+
): void;
|
|
863
|
+
paginateListAgentSpaces(
|
|
864
|
+
args?: ListAgentSpacesCommandInput,
|
|
865
|
+
paginationConfig?: Pick<
|
|
866
|
+
PaginationConfiguration,
|
|
867
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
868
|
+
>
|
|
869
|
+
): Paginator<ListAgentSpacesCommandOutput>;
|
|
870
|
+
paginateListApplications(
|
|
871
|
+
args?: ListApplicationsCommandInput,
|
|
872
|
+
paginationConfig?: Pick<
|
|
873
|
+
PaginationConfiguration,
|
|
874
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
875
|
+
>
|
|
876
|
+
): Paginator<ListApplicationsCommandOutput>;
|
|
877
|
+
paginateListArtifacts(
|
|
878
|
+
args: ListArtifactsCommandInput,
|
|
879
|
+
paginationConfig?: Pick<
|
|
880
|
+
PaginationConfiguration,
|
|
881
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
882
|
+
>
|
|
883
|
+
): Paginator<ListArtifactsCommandOutput>;
|
|
884
|
+
paginateListDiscoveredEndpoints(
|
|
885
|
+
args: ListDiscoveredEndpointsCommandInput,
|
|
886
|
+
paginationConfig?: Pick<
|
|
887
|
+
PaginationConfiguration,
|
|
888
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
889
|
+
>
|
|
890
|
+
): Paginator<ListDiscoveredEndpointsCommandOutput>;
|
|
891
|
+
paginateListFindings(
|
|
892
|
+
args: ListFindingsCommandInput,
|
|
893
|
+
paginationConfig?: Pick<
|
|
894
|
+
PaginationConfiguration,
|
|
895
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
896
|
+
>
|
|
897
|
+
): Paginator<ListFindingsCommandOutput>;
|
|
898
|
+
paginateListIntegratedResources(
|
|
899
|
+
args: ListIntegratedResourcesCommandInput,
|
|
900
|
+
paginationConfig?: Pick<
|
|
901
|
+
PaginationConfiguration,
|
|
902
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
903
|
+
>
|
|
904
|
+
): Paginator<ListIntegratedResourcesCommandOutput>;
|
|
905
|
+
paginateListIntegrations(
|
|
906
|
+
args?: ListIntegrationsCommandInput,
|
|
907
|
+
paginationConfig?: Pick<
|
|
908
|
+
PaginationConfiguration,
|
|
909
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
910
|
+
>
|
|
911
|
+
): Paginator<ListIntegrationsCommandOutput>;
|
|
912
|
+
paginateListMemberships(
|
|
913
|
+
args: ListMembershipsCommandInput,
|
|
914
|
+
paginationConfig?: Pick<
|
|
915
|
+
PaginationConfiguration,
|
|
916
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
917
|
+
>
|
|
918
|
+
): Paginator<ListMembershipsCommandOutput>;
|
|
919
|
+
paginateListPentestJobsForPentest(
|
|
920
|
+
args: ListPentestJobsForPentestCommandInput,
|
|
921
|
+
paginationConfig?: Pick<
|
|
922
|
+
PaginationConfiguration,
|
|
923
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
924
|
+
>
|
|
925
|
+
): Paginator<ListPentestJobsForPentestCommandOutput>;
|
|
926
|
+
paginateListPentestJobTasks(
|
|
927
|
+
args: ListPentestJobTasksCommandInput,
|
|
928
|
+
paginationConfig?: Pick<
|
|
929
|
+
PaginationConfiguration,
|
|
930
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
931
|
+
>
|
|
932
|
+
): Paginator<ListPentestJobTasksCommandOutput>;
|
|
933
|
+
paginateListPentests(
|
|
934
|
+
args: ListPentestsCommandInput,
|
|
935
|
+
paginationConfig?: Pick<
|
|
936
|
+
PaginationConfiguration,
|
|
937
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
938
|
+
>
|
|
939
|
+
): Paginator<ListPentestsCommandOutput>;
|
|
940
|
+
paginateListTargetDomains(
|
|
941
|
+
args?: ListTargetDomainsCommandInput,
|
|
942
|
+
paginationConfig?: Pick<
|
|
943
|
+
PaginationConfiguration,
|
|
944
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
945
|
+
>
|
|
946
|
+
): Paginator<ListTargetDomainsCommandOutput>;
|
|
947
|
+
}
|
|
948
|
+
export declare class SecurityAgent
|
|
949
|
+
extends SecurityAgentClient
|
|
950
|
+
implements SecurityAgent {}
|