@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,449 @@
|
|
|
1
|
+
import type { HttpHandlerOptions as __HttpHandlerOptions, PaginationConfiguration, Paginator } from "@smithy/types";
|
|
2
|
+
import { type AddArtifactCommandInput, type AddArtifactCommandOutput } from "./commands/AddArtifactCommand";
|
|
3
|
+
import { type BatchDeletePentestsCommandInput, type BatchDeletePentestsCommandOutput } from "./commands/BatchDeletePentestsCommand";
|
|
4
|
+
import { type BatchGetAgentSpacesCommandInput, type BatchGetAgentSpacesCommandOutput } from "./commands/BatchGetAgentSpacesCommand";
|
|
5
|
+
import { type BatchGetArtifactMetadataCommandInput, type BatchGetArtifactMetadataCommandOutput } from "./commands/BatchGetArtifactMetadataCommand";
|
|
6
|
+
import { type BatchGetFindingsCommandInput, type BatchGetFindingsCommandOutput } from "./commands/BatchGetFindingsCommand";
|
|
7
|
+
import { type BatchGetPentestJobsCommandInput, type BatchGetPentestJobsCommandOutput } from "./commands/BatchGetPentestJobsCommand";
|
|
8
|
+
import { type BatchGetPentestJobTasksCommandInput, type BatchGetPentestJobTasksCommandOutput } from "./commands/BatchGetPentestJobTasksCommand";
|
|
9
|
+
import { type BatchGetPentestsCommandInput, type BatchGetPentestsCommandOutput } from "./commands/BatchGetPentestsCommand";
|
|
10
|
+
import { type BatchGetTargetDomainsCommandInput, type BatchGetTargetDomainsCommandOutput } from "./commands/BatchGetTargetDomainsCommand";
|
|
11
|
+
import { type CreateAgentSpaceCommandInput, type CreateAgentSpaceCommandOutput } from "./commands/CreateAgentSpaceCommand";
|
|
12
|
+
import { type CreateApplicationCommandInput, type CreateApplicationCommandOutput } from "./commands/CreateApplicationCommand";
|
|
13
|
+
import { type CreateIntegrationCommandInput, type CreateIntegrationCommandOutput } from "./commands/CreateIntegrationCommand";
|
|
14
|
+
import { type CreateMembershipCommandInput, type CreateMembershipCommandOutput } from "./commands/CreateMembershipCommand";
|
|
15
|
+
import { type CreatePentestCommandInput, type CreatePentestCommandOutput } from "./commands/CreatePentestCommand";
|
|
16
|
+
import { type CreateTargetDomainCommandInput, type CreateTargetDomainCommandOutput } from "./commands/CreateTargetDomainCommand";
|
|
17
|
+
import { type DeleteAgentSpaceCommandInput, type DeleteAgentSpaceCommandOutput } from "./commands/DeleteAgentSpaceCommand";
|
|
18
|
+
import { type DeleteApplicationCommandInput, type DeleteApplicationCommandOutput } from "./commands/DeleteApplicationCommand";
|
|
19
|
+
import { type DeleteArtifactCommandInput, type DeleteArtifactCommandOutput } from "./commands/DeleteArtifactCommand";
|
|
20
|
+
import { type DeleteIntegrationCommandInput, type DeleteIntegrationCommandOutput } from "./commands/DeleteIntegrationCommand";
|
|
21
|
+
import { type DeleteMembershipCommandInput, type DeleteMembershipCommandOutput } from "./commands/DeleteMembershipCommand";
|
|
22
|
+
import { type DeleteTargetDomainCommandInput, type DeleteTargetDomainCommandOutput } from "./commands/DeleteTargetDomainCommand";
|
|
23
|
+
import { type GetApplicationCommandInput, type GetApplicationCommandOutput } from "./commands/GetApplicationCommand";
|
|
24
|
+
import { type GetArtifactCommandInput, type GetArtifactCommandOutput } from "./commands/GetArtifactCommand";
|
|
25
|
+
import { type GetIntegrationCommandInput, type GetIntegrationCommandOutput } from "./commands/GetIntegrationCommand";
|
|
26
|
+
import { type InitiateProviderRegistrationCommandInput, type InitiateProviderRegistrationCommandOutput } from "./commands/InitiateProviderRegistrationCommand";
|
|
27
|
+
import { type ListAgentSpacesCommandInput, type ListAgentSpacesCommandOutput } from "./commands/ListAgentSpacesCommand";
|
|
28
|
+
import { type ListApplicationsCommandInput, type ListApplicationsCommandOutput } from "./commands/ListApplicationsCommand";
|
|
29
|
+
import { type ListArtifactsCommandInput, type ListArtifactsCommandOutput } from "./commands/ListArtifactsCommand";
|
|
30
|
+
import { type ListDiscoveredEndpointsCommandInput, type ListDiscoveredEndpointsCommandOutput } from "./commands/ListDiscoveredEndpointsCommand";
|
|
31
|
+
import { type ListFindingsCommandInput, type ListFindingsCommandOutput } from "./commands/ListFindingsCommand";
|
|
32
|
+
import { type ListIntegratedResourcesCommandInput, type ListIntegratedResourcesCommandOutput } from "./commands/ListIntegratedResourcesCommand";
|
|
33
|
+
import { type ListIntegrationsCommandInput, type ListIntegrationsCommandOutput } from "./commands/ListIntegrationsCommand";
|
|
34
|
+
import { type ListMembershipsCommandInput, type ListMembershipsCommandOutput } from "./commands/ListMembershipsCommand";
|
|
35
|
+
import { type ListPentestJobsForPentestCommandInput, type ListPentestJobsForPentestCommandOutput } from "./commands/ListPentestJobsForPentestCommand";
|
|
36
|
+
import { type ListPentestJobTasksCommandInput, type ListPentestJobTasksCommandOutput } from "./commands/ListPentestJobTasksCommand";
|
|
37
|
+
import { type ListPentestsCommandInput, type ListPentestsCommandOutput } from "./commands/ListPentestsCommand";
|
|
38
|
+
import { type ListTagsForResourceCommandInput, type ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
39
|
+
import { type ListTargetDomainsCommandInput, type ListTargetDomainsCommandOutput } from "./commands/ListTargetDomainsCommand";
|
|
40
|
+
import { type StartCodeRemediationCommandInput, type StartCodeRemediationCommandOutput } from "./commands/StartCodeRemediationCommand";
|
|
41
|
+
import { type StartPentestJobCommandInput, type StartPentestJobCommandOutput } from "./commands/StartPentestJobCommand";
|
|
42
|
+
import { type StopPentestJobCommandInput, type StopPentestJobCommandOutput } from "./commands/StopPentestJobCommand";
|
|
43
|
+
import { type TagResourceCommandInput, type TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
44
|
+
import { type UntagResourceCommandInput, type UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
45
|
+
import { type UpdateAgentSpaceCommandInput, type UpdateAgentSpaceCommandOutput } from "./commands/UpdateAgentSpaceCommand";
|
|
46
|
+
import { type UpdateApplicationCommandInput, type UpdateApplicationCommandOutput } from "./commands/UpdateApplicationCommand";
|
|
47
|
+
import { type UpdateFindingCommandInput, type UpdateFindingCommandOutput } from "./commands/UpdateFindingCommand";
|
|
48
|
+
import { type UpdateIntegratedResourcesCommandInput, type UpdateIntegratedResourcesCommandOutput } from "./commands/UpdateIntegratedResourcesCommand";
|
|
49
|
+
import { type UpdatePentestCommandInput, type UpdatePentestCommandOutput } from "./commands/UpdatePentestCommand";
|
|
50
|
+
import { type UpdateTargetDomainCommandInput, type UpdateTargetDomainCommandOutput } from "./commands/UpdateTargetDomainCommand";
|
|
51
|
+
import { type VerifyTargetDomainCommandInput, type VerifyTargetDomainCommandOutput } from "./commands/VerifyTargetDomainCommand";
|
|
52
|
+
import { SecurityAgentClient } from "./SecurityAgentClient";
|
|
53
|
+
export interface SecurityAgent {
|
|
54
|
+
/**
|
|
55
|
+
* @see {@link AddArtifactCommand}
|
|
56
|
+
*/
|
|
57
|
+
addArtifact(args: AddArtifactCommandInput, options?: __HttpHandlerOptions): Promise<AddArtifactCommandOutput>;
|
|
58
|
+
addArtifact(args: AddArtifactCommandInput, cb: (err: any, data?: AddArtifactCommandOutput) => void): void;
|
|
59
|
+
addArtifact(args: AddArtifactCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AddArtifactCommandOutput) => void): void;
|
|
60
|
+
/**
|
|
61
|
+
* @see {@link BatchDeletePentestsCommand}
|
|
62
|
+
*/
|
|
63
|
+
batchDeletePentests(args: BatchDeletePentestsCommandInput, options?: __HttpHandlerOptions): Promise<BatchDeletePentestsCommandOutput>;
|
|
64
|
+
batchDeletePentests(args: BatchDeletePentestsCommandInput, cb: (err: any, data?: BatchDeletePentestsCommandOutput) => void): void;
|
|
65
|
+
batchDeletePentests(args: BatchDeletePentestsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchDeletePentestsCommandOutput) => void): void;
|
|
66
|
+
/**
|
|
67
|
+
* @see {@link BatchGetAgentSpacesCommand}
|
|
68
|
+
*/
|
|
69
|
+
batchGetAgentSpaces(args: BatchGetAgentSpacesCommandInput, options?: __HttpHandlerOptions): Promise<BatchGetAgentSpacesCommandOutput>;
|
|
70
|
+
batchGetAgentSpaces(args: BatchGetAgentSpacesCommandInput, cb: (err: any, data?: BatchGetAgentSpacesCommandOutput) => void): void;
|
|
71
|
+
batchGetAgentSpaces(args: BatchGetAgentSpacesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchGetAgentSpacesCommandOutput) => void): void;
|
|
72
|
+
/**
|
|
73
|
+
* @see {@link BatchGetArtifactMetadataCommand}
|
|
74
|
+
*/
|
|
75
|
+
batchGetArtifactMetadata(args: BatchGetArtifactMetadataCommandInput, options?: __HttpHandlerOptions): Promise<BatchGetArtifactMetadataCommandOutput>;
|
|
76
|
+
batchGetArtifactMetadata(args: BatchGetArtifactMetadataCommandInput, cb: (err: any, data?: BatchGetArtifactMetadataCommandOutput) => void): void;
|
|
77
|
+
batchGetArtifactMetadata(args: BatchGetArtifactMetadataCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchGetArtifactMetadataCommandOutput) => void): void;
|
|
78
|
+
/**
|
|
79
|
+
* @see {@link BatchGetFindingsCommand}
|
|
80
|
+
*/
|
|
81
|
+
batchGetFindings(args: BatchGetFindingsCommandInput, options?: __HttpHandlerOptions): Promise<BatchGetFindingsCommandOutput>;
|
|
82
|
+
batchGetFindings(args: BatchGetFindingsCommandInput, cb: (err: any, data?: BatchGetFindingsCommandOutput) => void): void;
|
|
83
|
+
batchGetFindings(args: BatchGetFindingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchGetFindingsCommandOutput) => void): void;
|
|
84
|
+
/**
|
|
85
|
+
* @see {@link BatchGetPentestJobsCommand}
|
|
86
|
+
*/
|
|
87
|
+
batchGetPentestJobs(args: BatchGetPentestJobsCommandInput, options?: __HttpHandlerOptions): Promise<BatchGetPentestJobsCommandOutput>;
|
|
88
|
+
batchGetPentestJobs(args: BatchGetPentestJobsCommandInput, cb: (err: any, data?: BatchGetPentestJobsCommandOutput) => void): void;
|
|
89
|
+
batchGetPentestJobs(args: BatchGetPentestJobsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchGetPentestJobsCommandOutput) => void): void;
|
|
90
|
+
/**
|
|
91
|
+
* @see {@link BatchGetPentestJobTasksCommand}
|
|
92
|
+
*/
|
|
93
|
+
batchGetPentestJobTasks(args: BatchGetPentestJobTasksCommandInput, options?: __HttpHandlerOptions): Promise<BatchGetPentestJobTasksCommandOutput>;
|
|
94
|
+
batchGetPentestJobTasks(args: BatchGetPentestJobTasksCommandInput, cb: (err: any, data?: BatchGetPentestJobTasksCommandOutput) => void): void;
|
|
95
|
+
batchGetPentestJobTasks(args: BatchGetPentestJobTasksCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchGetPentestJobTasksCommandOutput) => void): void;
|
|
96
|
+
/**
|
|
97
|
+
* @see {@link BatchGetPentestsCommand}
|
|
98
|
+
*/
|
|
99
|
+
batchGetPentests(args: BatchGetPentestsCommandInput, options?: __HttpHandlerOptions): Promise<BatchGetPentestsCommandOutput>;
|
|
100
|
+
batchGetPentests(args: BatchGetPentestsCommandInput, cb: (err: any, data?: BatchGetPentestsCommandOutput) => void): void;
|
|
101
|
+
batchGetPentests(args: BatchGetPentestsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchGetPentestsCommandOutput) => void): void;
|
|
102
|
+
/**
|
|
103
|
+
* @see {@link BatchGetTargetDomainsCommand}
|
|
104
|
+
*/
|
|
105
|
+
batchGetTargetDomains(args: BatchGetTargetDomainsCommandInput, options?: __HttpHandlerOptions): Promise<BatchGetTargetDomainsCommandOutput>;
|
|
106
|
+
batchGetTargetDomains(args: BatchGetTargetDomainsCommandInput, cb: (err: any, data?: BatchGetTargetDomainsCommandOutput) => void): void;
|
|
107
|
+
batchGetTargetDomains(args: BatchGetTargetDomainsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchGetTargetDomainsCommandOutput) => void): void;
|
|
108
|
+
/**
|
|
109
|
+
* @see {@link CreateAgentSpaceCommand}
|
|
110
|
+
*/
|
|
111
|
+
createAgentSpace(args: CreateAgentSpaceCommandInput, options?: __HttpHandlerOptions): Promise<CreateAgentSpaceCommandOutput>;
|
|
112
|
+
createAgentSpace(args: CreateAgentSpaceCommandInput, cb: (err: any, data?: CreateAgentSpaceCommandOutput) => void): void;
|
|
113
|
+
createAgentSpace(args: CreateAgentSpaceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateAgentSpaceCommandOutput) => void): void;
|
|
114
|
+
/**
|
|
115
|
+
* @see {@link CreateApplicationCommand}
|
|
116
|
+
*/
|
|
117
|
+
createApplication(): Promise<CreateApplicationCommandOutput>;
|
|
118
|
+
createApplication(args: CreateApplicationCommandInput, options?: __HttpHandlerOptions): Promise<CreateApplicationCommandOutput>;
|
|
119
|
+
createApplication(args: CreateApplicationCommandInput, cb: (err: any, data?: CreateApplicationCommandOutput) => void): void;
|
|
120
|
+
createApplication(args: CreateApplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateApplicationCommandOutput) => void): void;
|
|
121
|
+
/**
|
|
122
|
+
* @see {@link CreateIntegrationCommand}
|
|
123
|
+
*/
|
|
124
|
+
createIntegration(args: CreateIntegrationCommandInput, options?: __HttpHandlerOptions): Promise<CreateIntegrationCommandOutput>;
|
|
125
|
+
createIntegration(args: CreateIntegrationCommandInput, cb: (err: any, data?: CreateIntegrationCommandOutput) => void): void;
|
|
126
|
+
createIntegration(args: CreateIntegrationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateIntegrationCommandOutput) => void): void;
|
|
127
|
+
/**
|
|
128
|
+
* @see {@link CreateMembershipCommand}
|
|
129
|
+
*/
|
|
130
|
+
createMembership(args: CreateMembershipCommandInput, options?: __HttpHandlerOptions): Promise<CreateMembershipCommandOutput>;
|
|
131
|
+
createMembership(args: CreateMembershipCommandInput, cb: (err: any, data?: CreateMembershipCommandOutput) => void): void;
|
|
132
|
+
createMembership(args: CreateMembershipCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateMembershipCommandOutput) => void): void;
|
|
133
|
+
/**
|
|
134
|
+
* @see {@link CreatePentestCommand}
|
|
135
|
+
*/
|
|
136
|
+
createPentest(args: CreatePentestCommandInput, options?: __HttpHandlerOptions): Promise<CreatePentestCommandOutput>;
|
|
137
|
+
createPentest(args: CreatePentestCommandInput, cb: (err: any, data?: CreatePentestCommandOutput) => void): void;
|
|
138
|
+
createPentest(args: CreatePentestCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreatePentestCommandOutput) => void): void;
|
|
139
|
+
/**
|
|
140
|
+
* @see {@link CreateTargetDomainCommand}
|
|
141
|
+
*/
|
|
142
|
+
createTargetDomain(args: CreateTargetDomainCommandInput, options?: __HttpHandlerOptions): Promise<CreateTargetDomainCommandOutput>;
|
|
143
|
+
createTargetDomain(args: CreateTargetDomainCommandInput, cb: (err: any, data?: CreateTargetDomainCommandOutput) => void): void;
|
|
144
|
+
createTargetDomain(args: CreateTargetDomainCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateTargetDomainCommandOutput) => void): void;
|
|
145
|
+
/**
|
|
146
|
+
* @see {@link DeleteAgentSpaceCommand}
|
|
147
|
+
*/
|
|
148
|
+
deleteAgentSpace(args: DeleteAgentSpaceCommandInput, options?: __HttpHandlerOptions): Promise<DeleteAgentSpaceCommandOutput>;
|
|
149
|
+
deleteAgentSpace(args: DeleteAgentSpaceCommandInput, cb: (err: any, data?: DeleteAgentSpaceCommandOutput) => void): void;
|
|
150
|
+
deleteAgentSpace(args: DeleteAgentSpaceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteAgentSpaceCommandOutput) => void): void;
|
|
151
|
+
/**
|
|
152
|
+
* @see {@link DeleteApplicationCommand}
|
|
153
|
+
*/
|
|
154
|
+
deleteApplication(args: DeleteApplicationCommandInput, options?: __HttpHandlerOptions): Promise<DeleteApplicationCommandOutput>;
|
|
155
|
+
deleteApplication(args: DeleteApplicationCommandInput, cb: (err: any, data?: DeleteApplicationCommandOutput) => void): void;
|
|
156
|
+
deleteApplication(args: DeleteApplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteApplicationCommandOutput) => void): void;
|
|
157
|
+
/**
|
|
158
|
+
* @see {@link DeleteArtifactCommand}
|
|
159
|
+
*/
|
|
160
|
+
deleteArtifact(args: DeleteArtifactCommandInput, options?: __HttpHandlerOptions): Promise<DeleteArtifactCommandOutput>;
|
|
161
|
+
deleteArtifact(args: DeleteArtifactCommandInput, cb: (err: any, data?: DeleteArtifactCommandOutput) => void): void;
|
|
162
|
+
deleteArtifact(args: DeleteArtifactCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteArtifactCommandOutput) => void): void;
|
|
163
|
+
/**
|
|
164
|
+
* @see {@link DeleteIntegrationCommand}
|
|
165
|
+
*/
|
|
166
|
+
deleteIntegration(args: DeleteIntegrationCommandInput, options?: __HttpHandlerOptions): Promise<DeleteIntegrationCommandOutput>;
|
|
167
|
+
deleteIntegration(args: DeleteIntegrationCommandInput, cb: (err: any, data?: DeleteIntegrationCommandOutput) => void): void;
|
|
168
|
+
deleteIntegration(args: DeleteIntegrationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteIntegrationCommandOutput) => void): void;
|
|
169
|
+
/**
|
|
170
|
+
* @see {@link DeleteMembershipCommand}
|
|
171
|
+
*/
|
|
172
|
+
deleteMembership(args: DeleteMembershipCommandInput, options?: __HttpHandlerOptions): Promise<DeleteMembershipCommandOutput>;
|
|
173
|
+
deleteMembership(args: DeleteMembershipCommandInput, cb: (err: any, data?: DeleteMembershipCommandOutput) => void): void;
|
|
174
|
+
deleteMembership(args: DeleteMembershipCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteMembershipCommandOutput) => void): void;
|
|
175
|
+
/**
|
|
176
|
+
* @see {@link DeleteTargetDomainCommand}
|
|
177
|
+
*/
|
|
178
|
+
deleteTargetDomain(args: DeleteTargetDomainCommandInput, options?: __HttpHandlerOptions): Promise<DeleteTargetDomainCommandOutput>;
|
|
179
|
+
deleteTargetDomain(args: DeleteTargetDomainCommandInput, cb: (err: any, data?: DeleteTargetDomainCommandOutput) => void): void;
|
|
180
|
+
deleteTargetDomain(args: DeleteTargetDomainCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteTargetDomainCommandOutput) => void): void;
|
|
181
|
+
/**
|
|
182
|
+
* @see {@link GetApplicationCommand}
|
|
183
|
+
*/
|
|
184
|
+
getApplication(args: GetApplicationCommandInput, options?: __HttpHandlerOptions): Promise<GetApplicationCommandOutput>;
|
|
185
|
+
getApplication(args: GetApplicationCommandInput, cb: (err: any, data?: GetApplicationCommandOutput) => void): void;
|
|
186
|
+
getApplication(args: GetApplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetApplicationCommandOutput) => void): void;
|
|
187
|
+
/**
|
|
188
|
+
* @see {@link GetArtifactCommand}
|
|
189
|
+
*/
|
|
190
|
+
getArtifact(args: GetArtifactCommandInput, options?: __HttpHandlerOptions): Promise<GetArtifactCommandOutput>;
|
|
191
|
+
getArtifact(args: GetArtifactCommandInput, cb: (err: any, data?: GetArtifactCommandOutput) => void): void;
|
|
192
|
+
getArtifact(args: GetArtifactCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetArtifactCommandOutput) => void): void;
|
|
193
|
+
/**
|
|
194
|
+
* @see {@link GetIntegrationCommand}
|
|
195
|
+
*/
|
|
196
|
+
getIntegration(args: GetIntegrationCommandInput, options?: __HttpHandlerOptions): Promise<GetIntegrationCommandOutput>;
|
|
197
|
+
getIntegration(args: GetIntegrationCommandInput, cb: (err: any, data?: GetIntegrationCommandOutput) => void): void;
|
|
198
|
+
getIntegration(args: GetIntegrationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetIntegrationCommandOutput) => void): void;
|
|
199
|
+
/**
|
|
200
|
+
* @see {@link InitiateProviderRegistrationCommand}
|
|
201
|
+
*/
|
|
202
|
+
initiateProviderRegistration(args: InitiateProviderRegistrationCommandInput, options?: __HttpHandlerOptions): Promise<InitiateProviderRegistrationCommandOutput>;
|
|
203
|
+
initiateProviderRegistration(args: InitiateProviderRegistrationCommandInput, cb: (err: any, data?: InitiateProviderRegistrationCommandOutput) => void): void;
|
|
204
|
+
initiateProviderRegistration(args: InitiateProviderRegistrationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: InitiateProviderRegistrationCommandOutput) => void): void;
|
|
205
|
+
/**
|
|
206
|
+
* @see {@link ListAgentSpacesCommand}
|
|
207
|
+
*/
|
|
208
|
+
listAgentSpaces(): Promise<ListAgentSpacesCommandOutput>;
|
|
209
|
+
listAgentSpaces(args: ListAgentSpacesCommandInput, options?: __HttpHandlerOptions): Promise<ListAgentSpacesCommandOutput>;
|
|
210
|
+
listAgentSpaces(args: ListAgentSpacesCommandInput, cb: (err: any, data?: ListAgentSpacesCommandOutput) => void): void;
|
|
211
|
+
listAgentSpaces(args: ListAgentSpacesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListAgentSpacesCommandOutput) => void): void;
|
|
212
|
+
/**
|
|
213
|
+
* @see {@link ListApplicationsCommand}
|
|
214
|
+
*/
|
|
215
|
+
listApplications(): Promise<ListApplicationsCommandOutput>;
|
|
216
|
+
listApplications(args: ListApplicationsCommandInput, options?: __HttpHandlerOptions): Promise<ListApplicationsCommandOutput>;
|
|
217
|
+
listApplications(args: ListApplicationsCommandInput, cb: (err: any, data?: ListApplicationsCommandOutput) => void): void;
|
|
218
|
+
listApplications(args: ListApplicationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListApplicationsCommandOutput) => void): void;
|
|
219
|
+
/**
|
|
220
|
+
* @see {@link ListArtifactsCommand}
|
|
221
|
+
*/
|
|
222
|
+
listArtifacts(args: ListArtifactsCommandInput, options?: __HttpHandlerOptions): Promise<ListArtifactsCommandOutput>;
|
|
223
|
+
listArtifacts(args: ListArtifactsCommandInput, cb: (err: any, data?: ListArtifactsCommandOutput) => void): void;
|
|
224
|
+
listArtifacts(args: ListArtifactsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListArtifactsCommandOutput) => void): void;
|
|
225
|
+
/**
|
|
226
|
+
* @see {@link ListDiscoveredEndpointsCommand}
|
|
227
|
+
*/
|
|
228
|
+
listDiscoveredEndpoints(args: ListDiscoveredEndpointsCommandInput, options?: __HttpHandlerOptions): Promise<ListDiscoveredEndpointsCommandOutput>;
|
|
229
|
+
listDiscoveredEndpoints(args: ListDiscoveredEndpointsCommandInput, cb: (err: any, data?: ListDiscoveredEndpointsCommandOutput) => void): void;
|
|
230
|
+
listDiscoveredEndpoints(args: ListDiscoveredEndpointsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListDiscoveredEndpointsCommandOutput) => void): void;
|
|
231
|
+
/**
|
|
232
|
+
* @see {@link ListFindingsCommand}
|
|
233
|
+
*/
|
|
234
|
+
listFindings(args: ListFindingsCommandInput, options?: __HttpHandlerOptions): Promise<ListFindingsCommandOutput>;
|
|
235
|
+
listFindings(args: ListFindingsCommandInput, cb: (err: any, data?: ListFindingsCommandOutput) => void): void;
|
|
236
|
+
listFindings(args: ListFindingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListFindingsCommandOutput) => void): void;
|
|
237
|
+
/**
|
|
238
|
+
* @see {@link ListIntegratedResourcesCommand}
|
|
239
|
+
*/
|
|
240
|
+
listIntegratedResources(args: ListIntegratedResourcesCommandInput, options?: __HttpHandlerOptions): Promise<ListIntegratedResourcesCommandOutput>;
|
|
241
|
+
listIntegratedResources(args: ListIntegratedResourcesCommandInput, cb: (err: any, data?: ListIntegratedResourcesCommandOutput) => void): void;
|
|
242
|
+
listIntegratedResources(args: ListIntegratedResourcesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListIntegratedResourcesCommandOutput) => void): void;
|
|
243
|
+
/**
|
|
244
|
+
* @see {@link ListIntegrationsCommand}
|
|
245
|
+
*/
|
|
246
|
+
listIntegrations(): Promise<ListIntegrationsCommandOutput>;
|
|
247
|
+
listIntegrations(args: ListIntegrationsCommandInput, options?: __HttpHandlerOptions): Promise<ListIntegrationsCommandOutput>;
|
|
248
|
+
listIntegrations(args: ListIntegrationsCommandInput, cb: (err: any, data?: ListIntegrationsCommandOutput) => void): void;
|
|
249
|
+
listIntegrations(args: ListIntegrationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListIntegrationsCommandOutput) => void): void;
|
|
250
|
+
/**
|
|
251
|
+
* @see {@link ListMembershipsCommand}
|
|
252
|
+
*/
|
|
253
|
+
listMemberships(args: ListMembershipsCommandInput, options?: __HttpHandlerOptions): Promise<ListMembershipsCommandOutput>;
|
|
254
|
+
listMemberships(args: ListMembershipsCommandInput, cb: (err: any, data?: ListMembershipsCommandOutput) => void): void;
|
|
255
|
+
listMemberships(args: ListMembershipsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListMembershipsCommandOutput) => void): void;
|
|
256
|
+
/**
|
|
257
|
+
* @see {@link ListPentestJobsForPentestCommand}
|
|
258
|
+
*/
|
|
259
|
+
listPentestJobsForPentest(args: ListPentestJobsForPentestCommandInput, options?: __HttpHandlerOptions): Promise<ListPentestJobsForPentestCommandOutput>;
|
|
260
|
+
listPentestJobsForPentest(args: ListPentestJobsForPentestCommandInput, cb: (err: any, data?: ListPentestJobsForPentestCommandOutput) => void): void;
|
|
261
|
+
listPentestJobsForPentest(args: ListPentestJobsForPentestCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListPentestJobsForPentestCommandOutput) => void): void;
|
|
262
|
+
/**
|
|
263
|
+
* @see {@link ListPentestJobTasksCommand}
|
|
264
|
+
*/
|
|
265
|
+
listPentestJobTasks(args: ListPentestJobTasksCommandInput, options?: __HttpHandlerOptions): Promise<ListPentestJobTasksCommandOutput>;
|
|
266
|
+
listPentestJobTasks(args: ListPentestJobTasksCommandInput, cb: (err: any, data?: ListPentestJobTasksCommandOutput) => void): void;
|
|
267
|
+
listPentestJobTasks(args: ListPentestJobTasksCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListPentestJobTasksCommandOutput) => void): void;
|
|
268
|
+
/**
|
|
269
|
+
* @see {@link ListPentestsCommand}
|
|
270
|
+
*/
|
|
271
|
+
listPentests(args: ListPentestsCommandInput, options?: __HttpHandlerOptions): Promise<ListPentestsCommandOutput>;
|
|
272
|
+
listPentests(args: ListPentestsCommandInput, cb: (err: any, data?: ListPentestsCommandOutput) => void): void;
|
|
273
|
+
listPentests(args: ListPentestsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListPentestsCommandOutput) => void): void;
|
|
274
|
+
/**
|
|
275
|
+
* @see {@link ListTagsForResourceCommand}
|
|
276
|
+
*/
|
|
277
|
+
listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
|
|
278
|
+
listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
279
|
+
listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
280
|
+
/**
|
|
281
|
+
* @see {@link ListTargetDomainsCommand}
|
|
282
|
+
*/
|
|
283
|
+
listTargetDomains(): Promise<ListTargetDomainsCommandOutput>;
|
|
284
|
+
listTargetDomains(args: ListTargetDomainsCommandInput, options?: __HttpHandlerOptions): Promise<ListTargetDomainsCommandOutput>;
|
|
285
|
+
listTargetDomains(args: ListTargetDomainsCommandInput, cb: (err: any, data?: ListTargetDomainsCommandOutput) => void): void;
|
|
286
|
+
listTargetDomains(args: ListTargetDomainsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTargetDomainsCommandOutput) => void): void;
|
|
287
|
+
/**
|
|
288
|
+
* @see {@link StartCodeRemediationCommand}
|
|
289
|
+
*/
|
|
290
|
+
startCodeRemediation(args: StartCodeRemediationCommandInput, options?: __HttpHandlerOptions): Promise<StartCodeRemediationCommandOutput>;
|
|
291
|
+
startCodeRemediation(args: StartCodeRemediationCommandInput, cb: (err: any, data?: StartCodeRemediationCommandOutput) => void): void;
|
|
292
|
+
startCodeRemediation(args: StartCodeRemediationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartCodeRemediationCommandOutput) => void): void;
|
|
293
|
+
/**
|
|
294
|
+
* @see {@link StartPentestJobCommand}
|
|
295
|
+
*/
|
|
296
|
+
startPentestJob(args: StartPentestJobCommandInput, options?: __HttpHandlerOptions): Promise<StartPentestJobCommandOutput>;
|
|
297
|
+
startPentestJob(args: StartPentestJobCommandInput, cb: (err: any, data?: StartPentestJobCommandOutput) => void): void;
|
|
298
|
+
startPentestJob(args: StartPentestJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartPentestJobCommandOutput) => void): void;
|
|
299
|
+
/**
|
|
300
|
+
* @see {@link StopPentestJobCommand}
|
|
301
|
+
*/
|
|
302
|
+
stopPentestJob(args: StopPentestJobCommandInput, options?: __HttpHandlerOptions): Promise<StopPentestJobCommandOutput>;
|
|
303
|
+
stopPentestJob(args: StopPentestJobCommandInput, cb: (err: any, data?: StopPentestJobCommandOutput) => void): void;
|
|
304
|
+
stopPentestJob(args: StopPentestJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StopPentestJobCommandOutput) => void): void;
|
|
305
|
+
/**
|
|
306
|
+
* @see {@link TagResourceCommand}
|
|
307
|
+
*/
|
|
308
|
+
tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
|
|
309
|
+
tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
310
|
+
tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
311
|
+
/**
|
|
312
|
+
* @see {@link UntagResourceCommand}
|
|
313
|
+
*/
|
|
314
|
+
untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
|
|
315
|
+
untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
316
|
+
untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
317
|
+
/**
|
|
318
|
+
* @see {@link UpdateAgentSpaceCommand}
|
|
319
|
+
*/
|
|
320
|
+
updateAgentSpace(args: UpdateAgentSpaceCommandInput, options?: __HttpHandlerOptions): Promise<UpdateAgentSpaceCommandOutput>;
|
|
321
|
+
updateAgentSpace(args: UpdateAgentSpaceCommandInput, cb: (err: any, data?: UpdateAgentSpaceCommandOutput) => void): void;
|
|
322
|
+
updateAgentSpace(args: UpdateAgentSpaceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateAgentSpaceCommandOutput) => void): void;
|
|
323
|
+
/**
|
|
324
|
+
* @see {@link UpdateApplicationCommand}
|
|
325
|
+
*/
|
|
326
|
+
updateApplication(args: UpdateApplicationCommandInput, options?: __HttpHandlerOptions): Promise<UpdateApplicationCommandOutput>;
|
|
327
|
+
updateApplication(args: UpdateApplicationCommandInput, cb: (err: any, data?: UpdateApplicationCommandOutput) => void): void;
|
|
328
|
+
updateApplication(args: UpdateApplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateApplicationCommandOutput) => void): void;
|
|
329
|
+
/**
|
|
330
|
+
* @see {@link UpdateFindingCommand}
|
|
331
|
+
*/
|
|
332
|
+
updateFinding(args: UpdateFindingCommandInput, options?: __HttpHandlerOptions): Promise<UpdateFindingCommandOutput>;
|
|
333
|
+
updateFinding(args: UpdateFindingCommandInput, cb: (err: any, data?: UpdateFindingCommandOutput) => void): void;
|
|
334
|
+
updateFinding(args: UpdateFindingCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateFindingCommandOutput) => void): void;
|
|
335
|
+
/**
|
|
336
|
+
* @see {@link UpdateIntegratedResourcesCommand}
|
|
337
|
+
*/
|
|
338
|
+
updateIntegratedResources(args: UpdateIntegratedResourcesCommandInput, options?: __HttpHandlerOptions): Promise<UpdateIntegratedResourcesCommandOutput>;
|
|
339
|
+
updateIntegratedResources(args: UpdateIntegratedResourcesCommandInput, cb: (err: any, data?: UpdateIntegratedResourcesCommandOutput) => void): void;
|
|
340
|
+
updateIntegratedResources(args: UpdateIntegratedResourcesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateIntegratedResourcesCommandOutput) => void): void;
|
|
341
|
+
/**
|
|
342
|
+
* @see {@link UpdatePentestCommand}
|
|
343
|
+
*/
|
|
344
|
+
updatePentest(args: UpdatePentestCommandInput, options?: __HttpHandlerOptions): Promise<UpdatePentestCommandOutput>;
|
|
345
|
+
updatePentest(args: UpdatePentestCommandInput, cb: (err: any, data?: UpdatePentestCommandOutput) => void): void;
|
|
346
|
+
updatePentest(args: UpdatePentestCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdatePentestCommandOutput) => void): void;
|
|
347
|
+
/**
|
|
348
|
+
* @see {@link UpdateTargetDomainCommand}
|
|
349
|
+
*/
|
|
350
|
+
updateTargetDomain(args: UpdateTargetDomainCommandInput, options?: __HttpHandlerOptions): Promise<UpdateTargetDomainCommandOutput>;
|
|
351
|
+
updateTargetDomain(args: UpdateTargetDomainCommandInput, cb: (err: any, data?: UpdateTargetDomainCommandOutput) => void): void;
|
|
352
|
+
updateTargetDomain(args: UpdateTargetDomainCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateTargetDomainCommandOutput) => void): void;
|
|
353
|
+
/**
|
|
354
|
+
* @see {@link VerifyTargetDomainCommand}
|
|
355
|
+
*/
|
|
356
|
+
verifyTargetDomain(args: VerifyTargetDomainCommandInput, options?: __HttpHandlerOptions): Promise<VerifyTargetDomainCommandOutput>;
|
|
357
|
+
verifyTargetDomain(args: VerifyTargetDomainCommandInput, cb: (err: any, data?: VerifyTargetDomainCommandOutput) => void): void;
|
|
358
|
+
verifyTargetDomain(args: VerifyTargetDomainCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: VerifyTargetDomainCommandOutput) => void): void;
|
|
359
|
+
/**
|
|
360
|
+
* @see {@link ListAgentSpacesCommand}
|
|
361
|
+
* @param args - command input.
|
|
362
|
+
* @param paginationConfig - optional pagination config.
|
|
363
|
+
* @returns AsyncIterable of {@link ListAgentSpacesCommandOutput}.
|
|
364
|
+
*/
|
|
365
|
+
paginateListAgentSpaces(args?: ListAgentSpacesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListAgentSpacesCommandOutput>;
|
|
366
|
+
/**
|
|
367
|
+
* @see {@link ListApplicationsCommand}
|
|
368
|
+
* @param args - command input.
|
|
369
|
+
* @param paginationConfig - optional pagination config.
|
|
370
|
+
* @returns AsyncIterable of {@link ListApplicationsCommandOutput}.
|
|
371
|
+
*/
|
|
372
|
+
paginateListApplications(args?: ListApplicationsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListApplicationsCommandOutput>;
|
|
373
|
+
/**
|
|
374
|
+
* @see {@link ListArtifactsCommand}
|
|
375
|
+
* @param args - command input.
|
|
376
|
+
* @param paginationConfig - optional pagination config.
|
|
377
|
+
* @returns AsyncIterable of {@link ListArtifactsCommandOutput}.
|
|
378
|
+
*/
|
|
379
|
+
paginateListArtifacts(args: ListArtifactsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListArtifactsCommandOutput>;
|
|
380
|
+
/**
|
|
381
|
+
* @see {@link ListDiscoveredEndpointsCommand}
|
|
382
|
+
* @param args - command input.
|
|
383
|
+
* @param paginationConfig - optional pagination config.
|
|
384
|
+
* @returns AsyncIterable of {@link ListDiscoveredEndpointsCommandOutput}.
|
|
385
|
+
*/
|
|
386
|
+
paginateListDiscoveredEndpoints(args: ListDiscoveredEndpointsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListDiscoveredEndpointsCommandOutput>;
|
|
387
|
+
/**
|
|
388
|
+
* @see {@link ListFindingsCommand}
|
|
389
|
+
* @param args - command input.
|
|
390
|
+
* @param paginationConfig - optional pagination config.
|
|
391
|
+
* @returns AsyncIterable of {@link ListFindingsCommandOutput}.
|
|
392
|
+
*/
|
|
393
|
+
paginateListFindings(args: ListFindingsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListFindingsCommandOutput>;
|
|
394
|
+
/**
|
|
395
|
+
* @see {@link ListIntegratedResourcesCommand}
|
|
396
|
+
* @param args - command input.
|
|
397
|
+
* @param paginationConfig - optional pagination config.
|
|
398
|
+
* @returns AsyncIterable of {@link ListIntegratedResourcesCommandOutput}.
|
|
399
|
+
*/
|
|
400
|
+
paginateListIntegratedResources(args: ListIntegratedResourcesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListIntegratedResourcesCommandOutput>;
|
|
401
|
+
/**
|
|
402
|
+
* @see {@link ListIntegrationsCommand}
|
|
403
|
+
* @param args - command input.
|
|
404
|
+
* @param paginationConfig - optional pagination config.
|
|
405
|
+
* @returns AsyncIterable of {@link ListIntegrationsCommandOutput}.
|
|
406
|
+
*/
|
|
407
|
+
paginateListIntegrations(args?: ListIntegrationsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListIntegrationsCommandOutput>;
|
|
408
|
+
/**
|
|
409
|
+
* @see {@link ListMembershipsCommand}
|
|
410
|
+
* @param args - command input.
|
|
411
|
+
* @param paginationConfig - optional pagination config.
|
|
412
|
+
* @returns AsyncIterable of {@link ListMembershipsCommandOutput}.
|
|
413
|
+
*/
|
|
414
|
+
paginateListMemberships(args: ListMembershipsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListMembershipsCommandOutput>;
|
|
415
|
+
/**
|
|
416
|
+
* @see {@link ListPentestJobsForPentestCommand}
|
|
417
|
+
* @param args - command input.
|
|
418
|
+
* @param paginationConfig - optional pagination config.
|
|
419
|
+
* @returns AsyncIterable of {@link ListPentestJobsForPentestCommandOutput}.
|
|
420
|
+
*/
|
|
421
|
+
paginateListPentestJobsForPentest(args: ListPentestJobsForPentestCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListPentestJobsForPentestCommandOutput>;
|
|
422
|
+
/**
|
|
423
|
+
* @see {@link ListPentestJobTasksCommand}
|
|
424
|
+
* @param args - command input.
|
|
425
|
+
* @param paginationConfig - optional pagination config.
|
|
426
|
+
* @returns AsyncIterable of {@link ListPentestJobTasksCommandOutput}.
|
|
427
|
+
*/
|
|
428
|
+
paginateListPentestJobTasks(args: ListPentestJobTasksCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListPentestJobTasksCommandOutput>;
|
|
429
|
+
/**
|
|
430
|
+
* @see {@link ListPentestsCommand}
|
|
431
|
+
* @param args - command input.
|
|
432
|
+
* @param paginationConfig - optional pagination config.
|
|
433
|
+
* @returns AsyncIterable of {@link ListPentestsCommandOutput}.
|
|
434
|
+
*/
|
|
435
|
+
paginateListPentests(args: ListPentestsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListPentestsCommandOutput>;
|
|
436
|
+
/**
|
|
437
|
+
* @see {@link ListTargetDomainsCommand}
|
|
438
|
+
* @param args - command input.
|
|
439
|
+
* @param paginationConfig - optional pagination config.
|
|
440
|
+
* @returns AsyncIterable of {@link ListTargetDomainsCommandOutput}.
|
|
441
|
+
*/
|
|
442
|
+
paginateListTargetDomains(args?: ListTargetDomainsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListTargetDomainsCommandOutput>;
|
|
443
|
+
}
|
|
444
|
+
/**
|
|
445
|
+
* <p>AWS Security Agent service documentation.</p>
|
|
446
|
+
* @public
|
|
447
|
+
*/
|
|
448
|
+
export declare class SecurityAgent extends SecurityAgentClient implements SecurityAgent {
|
|
449
|
+
}
|