@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,419 @@
|
|
|
1
|
+
import {
|
|
2
|
+
HostHeaderInputConfig,
|
|
3
|
+
HostHeaderResolvedConfig,
|
|
4
|
+
} from "@aws-sdk/middleware-host-header";
|
|
5
|
+
import {
|
|
6
|
+
UserAgentInputConfig,
|
|
7
|
+
UserAgentResolvedConfig,
|
|
8
|
+
} from "@aws-sdk/middleware-user-agent";
|
|
9
|
+
import {
|
|
10
|
+
RegionInputConfig,
|
|
11
|
+
RegionResolvedConfig,
|
|
12
|
+
} from "@smithy/config-resolver";
|
|
13
|
+
import {
|
|
14
|
+
EndpointInputConfig,
|
|
15
|
+
EndpointResolvedConfig,
|
|
16
|
+
} from "@smithy/middleware-endpoint";
|
|
17
|
+
import {
|
|
18
|
+
RetryInputConfig,
|
|
19
|
+
RetryResolvedConfig,
|
|
20
|
+
} from "@smithy/middleware-retry";
|
|
21
|
+
import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
|
|
22
|
+
import {
|
|
23
|
+
DefaultsMode as __DefaultsMode,
|
|
24
|
+
SmithyConfiguration as __SmithyConfiguration,
|
|
25
|
+
SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
|
|
26
|
+
Client as __Client,
|
|
27
|
+
} from "@smithy/smithy-client";
|
|
28
|
+
import {
|
|
29
|
+
AwsCredentialIdentityProvider,
|
|
30
|
+
BodyLengthCalculator as __BodyLengthCalculator,
|
|
31
|
+
CheckOptionalClientConfig as __CheckOptionalClientConfig,
|
|
32
|
+
ChecksumConstructor as __ChecksumConstructor,
|
|
33
|
+
Decoder as __Decoder,
|
|
34
|
+
Encoder as __Encoder,
|
|
35
|
+
HashConstructor as __HashConstructor,
|
|
36
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
37
|
+
Logger as __Logger,
|
|
38
|
+
Provider as __Provider,
|
|
39
|
+
StreamCollector as __StreamCollector,
|
|
40
|
+
UrlParser as __UrlParser,
|
|
41
|
+
UserAgent as __UserAgent,
|
|
42
|
+
} from "@smithy/types";
|
|
43
|
+
import {
|
|
44
|
+
HttpAuthSchemeInputConfig,
|
|
45
|
+
HttpAuthSchemeResolvedConfig,
|
|
46
|
+
} from "./auth/httpAuthSchemeProvider";
|
|
47
|
+
import {
|
|
48
|
+
AddArtifactCommandInput,
|
|
49
|
+
AddArtifactCommandOutput,
|
|
50
|
+
} from "./commands/AddArtifactCommand";
|
|
51
|
+
import {
|
|
52
|
+
BatchDeletePentestsCommandInput,
|
|
53
|
+
BatchDeletePentestsCommandOutput,
|
|
54
|
+
} from "./commands/BatchDeletePentestsCommand";
|
|
55
|
+
import {
|
|
56
|
+
BatchGetAgentSpacesCommandInput,
|
|
57
|
+
BatchGetAgentSpacesCommandOutput,
|
|
58
|
+
} from "./commands/BatchGetAgentSpacesCommand";
|
|
59
|
+
import {
|
|
60
|
+
BatchGetArtifactMetadataCommandInput,
|
|
61
|
+
BatchGetArtifactMetadataCommandOutput,
|
|
62
|
+
} from "./commands/BatchGetArtifactMetadataCommand";
|
|
63
|
+
import {
|
|
64
|
+
BatchGetFindingsCommandInput,
|
|
65
|
+
BatchGetFindingsCommandOutput,
|
|
66
|
+
} from "./commands/BatchGetFindingsCommand";
|
|
67
|
+
import {
|
|
68
|
+
BatchGetPentestJobsCommandInput,
|
|
69
|
+
BatchGetPentestJobsCommandOutput,
|
|
70
|
+
} from "./commands/BatchGetPentestJobsCommand";
|
|
71
|
+
import {
|
|
72
|
+
BatchGetPentestJobTasksCommandInput,
|
|
73
|
+
BatchGetPentestJobTasksCommandOutput,
|
|
74
|
+
} from "./commands/BatchGetPentestJobTasksCommand";
|
|
75
|
+
import {
|
|
76
|
+
BatchGetPentestsCommandInput,
|
|
77
|
+
BatchGetPentestsCommandOutput,
|
|
78
|
+
} from "./commands/BatchGetPentestsCommand";
|
|
79
|
+
import {
|
|
80
|
+
BatchGetTargetDomainsCommandInput,
|
|
81
|
+
BatchGetTargetDomainsCommandOutput,
|
|
82
|
+
} from "./commands/BatchGetTargetDomainsCommand";
|
|
83
|
+
import {
|
|
84
|
+
CreateAgentSpaceCommandInput,
|
|
85
|
+
CreateAgentSpaceCommandOutput,
|
|
86
|
+
} from "./commands/CreateAgentSpaceCommand";
|
|
87
|
+
import {
|
|
88
|
+
CreateApplicationCommandInput,
|
|
89
|
+
CreateApplicationCommandOutput,
|
|
90
|
+
} from "./commands/CreateApplicationCommand";
|
|
91
|
+
import {
|
|
92
|
+
CreateIntegrationCommandInput,
|
|
93
|
+
CreateIntegrationCommandOutput,
|
|
94
|
+
} from "./commands/CreateIntegrationCommand";
|
|
95
|
+
import {
|
|
96
|
+
CreateMembershipCommandInput,
|
|
97
|
+
CreateMembershipCommandOutput,
|
|
98
|
+
} from "./commands/CreateMembershipCommand";
|
|
99
|
+
import {
|
|
100
|
+
CreatePentestCommandInput,
|
|
101
|
+
CreatePentestCommandOutput,
|
|
102
|
+
} from "./commands/CreatePentestCommand";
|
|
103
|
+
import {
|
|
104
|
+
CreateTargetDomainCommandInput,
|
|
105
|
+
CreateTargetDomainCommandOutput,
|
|
106
|
+
} from "./commands/CreateTargetDomainCommand";
|
|
107
|
+
import {
|
|
108
|
+
DeleteAgentSpaceCommandInput,
|
|
109
|
+
DeleteAgentSpaceCommandOutput,
|
|
110
|
+
} from "./commands/DeleteAgentSpaceCommand";
|
|
111
|
+
import {
|
|
112
|
+
DeleteApplicationCommandInput,
|
|
113
|
+
DeleteApplicationCommandOutput,
|
|
114
|
+
} from "./commands/DeleteApplicationCommand";
|
|
115
|
+
import {
|
|
116
|
+
DeleteArtifactCommandInput,
|
|
117
|
+
DeleteArtifactCommandOutput,
|
|
118
|
+
} from "./commands/DeleteArtifactCommand";
|
|
119
|
+
import {
|
|
120
|
+
DeleteIntegrationCommandInput,
|
|
121
|
+
DeleteIntegrationCommandOutput,
|
|
122
|
+
} from "./commands/DeleteIntegrationCommand";
|
|
123
|
+
import {
|
|
124
|
+
DeleteMembershipCommandInput,
|
|
125
|
+
DeleteMembershipCommandOutput,
|
|
126
|
+
} from "./commands/DeleteMembershipCommand";
|
|
127
|
+
import {
|
|
128
|
+
DeleteTargetDomainCommandInput,
|
|
129
|
+
DeleteTargetDomainCommandOutput,
|
|
130
|
+
} from "./commands/DeleteTargetDomainCommand";
|
|
131
|
+
import {
|
|
132
|
+
GetApplicationCommandInput,
|
|
133
|
+
GetApplicationCommandOutput,
|
|
134
|
+
} from "./commands/GetApplicationCommand";
|
|
135
|
+
import {
|
|
136
|
+
GetArtifactCommandInput,
|
|
137
|
+
GetArtifactCommandOutput,
|
|
138
|
+
} from "./commands/GetArtifactCommand";
|
|
139
|
+
import {
|
|
140
|
+
GetIntegrationCommandInput,
|
|
141
|
+
GetIntegrationCommandOutput,
|
|
142
|
+
} from "./commands/GetIntegrationCommand";
|
|
143
|
+
import {
|
|
144
|
+
InitiateProviderRegistrationCommandInput,
|
|
145
|
+
InitiateProviderRegistrationCommandOutput,
|
|
146
|
+
} from "./commands/InitiateProviderRegistrationCommand";
|
|
147
|
+
import {
|
|
148
|
+
ListAgentSpacesCommandInput,
|
|
149
|
+
ListAgentSpacesCommandOutput,
|
|
150
|
+
} from "./commands/ListAgentSpacesCommand";
|
|
151
|
+
import {
|
|
152
|
+
ListApplicationsCommandInput,
|
|
153
|
+
ListApplicationsCommandOutput,
|
|
154
|
+
} from "./commands/ListApplicationsCommand";
|
|
155
|
+
import {
|
|
156
|
+
ListArtifactsCommandInput,
|
|
157
|
+
ListArtifactsCommandOutput,
|
|
158
|
+
} from "./commands/ListArtifactsCommand";
|
|
159
|
+
import {
|
|
160
|
+
ListDiscoveredEndpointsCommandInput,
|
|
161
|
+
ListDiscoveredEndpointsCommandOutput,
|
|
162
|
+
} from "./commands/ListDiscoveredEndpointsCommand";
|
|
163
|
+
import {
|
|
164
|
+
ListFindingsCommandInput,
|
|
165
|
+
ListFindingsCommandOutput,
|
|
166
|
+
} from "./commands/ListFindingsCommand";
|
|
167
|
+
import {
|
|
168
|
+
ListIntegratedResourcesCommandInput,
|
|
169
|
+
ListIntegratedResourcesCommandOutput,
|
|
170
|
+
} from "./commands/ListIntegratedResourcesCommand";
|
|
171
|
+
import {
|
|
172
|
+
ListIntegrationsCommandInput,
|
|
173
|
+
ListIntegrationsCommandOutput,
|
|
174
|
+
} from "./commands/ListIntegrationsCommand";
|
|
175
|
+
import {
|
|
176
|
+
ListMembershipsCommandInput,
|
|
177
|
+
ListMembershipsCommandOutput,
|
|
178
|
+
} from "./commands/ListMembershipsCommand";
|
|
179
|
+
import {
|
|
180
|
+
ListPentestJobsForPentestCommandInput,
|
|
181
|
+
ListPentestJobsForPentestCommandOutput,
|
|
182
|
+
} from "./commands/ListPentestJobsForPentestCommand";
|
|
183
|
+
import {
|
|
184
|
+
ListPentestJobTasksCommandInput,
|
|
185
|
+
ListPentestJobTasksCommandOutput,
|
|
186
|
+
} from "./commands/ListPentestJobTasksCommand";
|
|
187
|
+
import {
|
|
188
|
+
ListPentestsCommandInput,
|
|
189
|
+
ListPentestsCommandOutput,
|
|
190
|
+
} from "./commands/ListPentestsCommand";
|
|
191
|
+
import {
|
|
192
|
+
ListTagsForResourceCommandInput,
|
|
193
|
+
ListTagsForResourceCommandOutput,
|
|
194
|
+
} from "./commands/ListTagsForResourceCommand";
|
|
195
|
+
import {
|
|
196
|
+
ListTargetDomainsCommandInput,
|
|
197
|
+
ListTargetDomainsCommandOutput,
|
|
198
|
+
} from "./commands/ListTargetDomainsCommand";
|
|
199
|
+
import {
|
|
200
|
+
StartCodeRemediationCommandInput,
|
|
201
|
+
StartCodeRemediationCommandOutput,
|
|
202
|
+
} from "./commands/StartCodeRemediationCommand";
|
|
203
|
+
import {
|
|
204
|
+
StartPentestJobCommandInput,
|
|
205
|
+
StartPentestJobCommandOutput,
|
|
206
|
+
} from "./commands/StartPentestJobCommand";
|
|
207
|
+
import {
|
|
208
|
+
StopPentestJobCommandInput,
|
|
209
|
+
StopPentestJobCommandOutput,
|
|
210
|
+
} from "./commands/StopPentestJobCommand";
|
|
211
|
+
import {
|
|
212
|
+
TagResourceCommandInput,
|
|
213
|
+
TagResourceCommandOutput,
|
|
214
|
+
} from "./commands/TagResourceCommand";
|
|
215
|
+
import {
|
|
216
|
+
UntagResourceCommandInput,
|
|
217
|
+
UntagResourceCommandOutput,
|
|
218
|
+
} from "./commands/UntagResourceCommand";
|
|
219
|
+
import {
|
|
220
|
+
UpdateAgentSpaceCommandInput,
|
|
221
|
+
UpdateAgentSpaceCommandOutput,
|
|
222
|
+
} from "./commands/UpdateAgentSpaceCommand";
|
|
223
|
+
import {
|
|
224
|
+
UpdateApplicationCommandInput,
|
|
225
|
+
UpdateApplicationCommandOutput,
|
|
226
|
+
} from "./commands/UpdateApplicationCommand";
|
|
227
|
+
import {
|
|
228
|
+
UpdateFindingCommandInput,
|
|
229
|
+
UpdateFindingCommandOutput,
|
|
230
|
+
} from "./commands/UpdateFindingCommand";
|
|
231
|
+
import {
|
|
232
|
+
UpdateIntegratedResourcesCommandInput,
|
|
233
|
+
UpdateIntegratedResourcesCommandOutput,
|
|
234
|
+
} from "./commands/UpdateIntegratedResourcesCommand";
|
|
235
|
+
import {
|
|
236
|
+
UpdatePentestCommandInput,
|
|
237
|
+
UpdatePentestCommandOutput,
|
|
238
|
+
} from "./commands/UpdatePentestCommand";
|
|
239
|
+
import {
|
|
240
|
+
UpdateTargetDomainCommandInput,
|
|
241
|
+
UpdateTargetDomainCommandOutput,
|
|
242
|
+
} from "./commands/UpdateTargetDomainCommand";
|
|
243
|
+
import {
|
|
244
|
+
VerifyTargetDomainCommandInput,
|
|
245
|
+
VerifyTargetDomainCommandOutput,
|
|
246
|
+
} from "./commands/VerifyTargetDomainCommand";
|
|
247
|
+
import {
|
|
248
|
+
ClientInputEndpointParameters,
|
|
249
|
+
ClientResolvedEndpointParameters,
|
|
250
|
+
EndpointParameters,
|
|
251
|
+
} from "./endpoint/EndpointParameters";
|
|
252
|
+
import { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions";
|
|
253
|
+
export { __Client };
|
|
254
|
+
export type ServiceInputTypes =
|
|
255
|
+
| AddArtifactCommandInput
|
|
256
|
+
| BatchDeletePentestsCommandInput
|
|
257
|
+
| BatchGetAgentSpacesCommandInput
|
|
258
|
+
| BatchGetArtifactMetadataCommandInput
|
|
259
|
+
| BatchGetFindingsCommandInput
|
|
260
|
+
| BatchGetPentestJobTasksCommandInput
|
|
261
|
+
| BatchGetPentestJobsCommandInput
|
|
262
|
+
| BatchGetPentestsCommandInput
|
|
263
|
+
| BatchGetTargetDomainsCommandInput
|
|
264
|
+
| CreateAgentSpaceCommandInput
|
|
265
|
+
| CreateApplicationCommandInput
|
|
266
|
+
| CreateIntegrationCommandInput
|
|
267
|
+
| CreateMembershipCommandInput
|
|
268
|
+
| CreatePentestCommandInput
|
|
269
|
+
| CreateTargetDomainCommandInput
|
|
270
|
+
| DeleteAgentSpaceCommandInput
|
|
271
|
+
| DeleteApplicationCommandInput
|
|
272
|
+
| DeleteArtifactCommandInput
|
|
273
|
+
| DeleteIntegrationCommandInput
|
|
274
|
+
| DeleteMembershipCommandInput
|
|
275
|
+
| DeleteTargetDomainCommandInput
|
|
276
|
+
| GetApplicationCommandInput
|
|
277
|
+
| GetArtifactCommandInput
|
|
278
|
+
| GetIntegrationCommandInput
|
|
279
|
+
| InitiateProviderRegistrationCommandInput
|
|
280
|
+
| ListAgentSpacesCommandInput
|
|
281
|
+
| ListApplicationsCommandInput
|
|
282
|
+
| ListArtifactsCommandInput
|
|
283
|
+
| ListDiscoveredEndpointsCommandInput
|
|
284
|
+
| ListFindingsCommandInput
|
|
285
|
+
| ListIntegratedResourcesCommandInput
|
|
286
|
+
| ListIntegrationsCommandInput
|
|
287
|
+
| ListMembershipsCommandInput
|
|
288
|
+
| ListPentestJobTasksCommandInput
|
|
289
|
+
| ListPentestJobsForPentestCommandInput
|
|
290
|
+
| ListPentestsCommandInput
|
|
291
|
+
| ListTagsForResourceCommandInput
|
|
292
|
+
| ListTargetDomainsCommandInput
|
|
293
|
+
| StartCodeRemediationCommandInput
|
|
294
|
+
| StartPentestJobCommandInput
|
|
295
|
+
| StopPentestJobCommandInput
|
|
296
|
+
| TagResourceCommandInput
|
|
297
|
+
| UntagResourceCommandInput
|
|
298
|
+
| UpdateAgentSpaceCommandInput
|
|
299
|
+
| UpdateApplicationCommandInput
|
|
300
|
+
| UpdateFindingCommandInput
|
|
301
|
+
| UpdateIntegratedResourcesCommandInput
|
|
302
|
+
| UpdatePentestCommandInput
|
|
303
|
+
| UpdateTargetDomainCommandInput
|
|
304
|
+
| VerifyTargetDomainCommandInput;
|
|
305
|
+
export type ServiceOutputTypes =
|
|
306
|
+
| AddArtifactCommandOutput
|
|
307
|
+
| BatchDeletePentestsCommandOutput
|
|
308
|
+
| BatchGetAgentSpacesCommandOutput
|
|
309
|
+
| BatchGetArtifactMetadataCommandOutput
|
|
310
|
+
| BatchGetFindingsCommandOutput
|
|
311
|
+
| BatchGetPentestJobTasksCommandOutput
|
|
312
|
+
| BatchGetPentestJobsCommandOutput
|
|
313
|
+
| BatchGetPentestsCommandOutput
|
|
314
|
+
| BatchGetTargetDomainsCommandOutput
|
|
315
|
+
| CreateAgentSpaceCommandOutput
|
|
316
|
+
| CreateApplicationCommandOutput
|
|
317
|
+
| CreateIntegrationCommandOutput
|
|
318
|
+
| CreateMembershipCommandOutput
|
|
319
|
+
| CreatePentestCommandOutput
|
|
320
|
+
| CreateTargetDomainCommandOutput
|
|
321
|
+
| DeleteAgentSpaceCommandOutput
|
|
322
|
+
| DeleteApplicationCommandOutput
|
|
323
|
+
| DeleteArtifactCommandOutput
|
|
324
|
+
| DeleteIntegrationCommandOutput
|
|
325
|
+
| DeleteMembershipCommandOutput
|
|
326
|
+
| DeleteTargetDomainCommandOutput
|
|
327
|
+
| GetApplicationCommandOutput
|
|
328
|
+
| GetArtifactCommandOutput
|
|
329
|
+
| GetIntegrationCommandOutput
|
|
330
|
+
| InitiateProviderRegistrationCommandOutput
|
|
331
|
+
| ListAgentSpacesCommandOutput
|
|
332
|
+
| ListApplicationsCommandOutput
|
|
333
|
+
| ListArtifactsCommandOutput
|
|
334
|
+
| ListDiscoveredEndpointsCommandOutput
|
|
335
|
+
| ListFindingsCommandOutput
|
|
336
|
+
| ListIntegratedResourcesCommandOutput
|
|
337
|
+
| ListIntegrationsCommandOutput
|
|
338
|
+
| ListMembershipsCommandOutput
|
|
339
|
+
| ListPentestJobTasksCommandOutput
|
|
340
|
+
| ListPentestJobsForPentestCommandOutput
|
|
341
|
+
| ListPentestsCommandOutput
|
|
342
|
+
| ListTagsForResourceCommandOutput
|
|
343
|
+
| ListTargetDomainsCommandOutput
|
|
344
|
+
| StartCodeRemediationCommandOutput
|
|
345
|
+
| StartPentestJobCommandOutput
|
|
346
|
+
| StopPentestJobCommandOutput
|
|
347
|
+
| TagResourceCommandOutput
|
|
348
|
+
| UntagResourceCommandOutput
|
|
349
|
+
| UpdateAgentSpaceCommandOutput
|
|
350
|
+
| UpdateApplicationCommandOutput
|
|
351
|
+
| UpdateFindingCommandOutput
|
|
352
|
+
| UpdateIntegratedResourcesCommandOutput
|
|
353
|
+
| UpdatePentestCommandOutput
|
|
354
|
+
| UpdateTargetDomainCommandOutput
|
|
355
|
+
| VerifyTargetDomainCommandOutput;
|
|
356
|
+
export interface ClientDefaults
|
|
357
|
+
extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
358
|
+
requestHandler?: __HttpHandlerUserInput;
|
|
359
|
+
sha256?: __ChecksumConstructor | __HashConstructor;
|
|
360
|
+
urlParser?: __UrlParser;
|
|
361
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
362
|
+
streamCollector?: __StreamCollector;
|
|
363
|
+
base64Decoder?: __Decoder;
|
|
364
|
+
base64Encoder?: __Encoder;
|
|
365
|
+
utf8Decoder?: __Decoder;
|
|
366
|
+
utf8Encoder?: __Encoder;
|
|
367
|
+
runtime?: string;
|
|
368
|
+
disableHostPrefix?: boolean;
|
|
369
|
+
serviceId?: string;
|
|
370
|
+
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
371
|
+
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
372
|
+
region?: string | __Provider<string>;
|
|
373
|
+
profile?: string;
|
|
374
|
+
defaultUserAgentProvider?: __Provider<__UserAgent>;
|
|
375
|
+
credentialDefaultProvider?: (input: any) => AwsCredentialIdentityProvider;
|
|
376
|
+
maxAttempts?: number | __Provider<number>;
|
|
377
|
+
retryMode?: string | __Provider<string>;
|
|
378
|
+
logger?: __Logger;
|
|
379
|
+
extensions?: RuntimeExtension[];
|
|
380
|
+
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
381
|
+
}
|
|
382
|
+
export type SecurityAgentClientConfigType = Partial<
|
|
383
|
+
__SmithyConfiguration<__HttpHandlerOptions>
|
|
384
|
+
> &
|
|
385
|
+
ClientDefaults &
|
|
386
|
+
UserAgentInputConfig &
|
|
387
|
+
RetryInputConfig &
|
|
388
|
+
RegionInputConfig &
|
|
389
|
+
HostHeaderInputConfig &
|
|
390
|
+
EndpointInputConfig<EndpointParameters> &
|
|
391
|
+
HttpAuthSchemeInputConfig &
|
|
392
|
+
ClientInputEndpointParameters;
|
|
393
|
+
export interface SecurityAgentClientConfig
|
|
394
|
+
extends SecurityAgentClientConfigType {}
|
|
395
|
+
export type SecurityAgentClientResolvedConfigType =
|
|
396
|
+
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
397
|
+
Required<ClientDefaults> &
|
|
398
|
+
RuntimeExtensionsConfig &
|
|
399
|
+
UserAgentResolvedConfig &
|
|
400
|
+
RetryResolvedConfig &
|
|
401
|
+
RegionResolvedConfig &
|
|
402
|
+
HostHeaderResolvedConfig &
|
|
403
|
+
EndpointResolvedConfig<EndpointParameters> &
|
|
404
|
+
HttpAuthSchemeResolvedConfig &
|
|
405
|
+
ClientResolvedEndpointParameters;
|
|
406
|
+
export interface SecurityAgentClientResolvedConfig
|
|
407
|
+
extends SecurityAgentClientResolvedConfigType {}
|
|
408
|
+
export declare class SecurityAgentClient extends __Client<
|
|
409
|
+
__HttpHandlerOptions,
|
|
410
|
+
ServiceInputTypes,
|
|
411
|
+
ServiceOutputTypes,
|
|
412
|
+
SecurityAgentClientResolvedConfig
|
|
413
|
+
> {
|
|
414
|
+
readonly config: SecurityAgentClientResolvedConfig;
|
|
415
|
+
constructor(
|
|
416
|
+
...[configuration]: __CheckOptionalClientConfig<SecurityAgentClientConfig>
|
|
417
|
+
);
|
|
418
|
+
destroy(): void;
|
|
419
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import {
|
|
2
|
+
AwsCredentialIdentity,
|
|
3
|
+
AwsCredentialIdentityProvider,
|
|
4
|
+
HttpAuthScheme,
|
|
5
|
+
} from "@smithy/types";
|
|
6
|
+
import { SecurityAgentHttpAuthSchemeProvider } from "./httpAuthSchemeProvider";
|
|
7
|
+
export interface HttpAuthExtensionConfiguration {
|
|
8
|
+
setHttpAuthScheme(httpAuthScheme: HttpAuthScheme): void;
|
|
9
|
+
httpAuthSchemes(): HttpAuthScheme[];
|
|
10
|
+
setHttpAuthSchemeProvider(
|
|
11
|
+
httpAuthSchemeProvider: SecurityAgentHttpAuthSchemeProvider
|
|
12
|
+
): void;
|
|
13
|
+
httpAuthSchemeProvider(): SecurityAgentHttpAuthSchemeProvider;
|
|
14
|
+
setCredentials(
|
|
15
|
+
credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider
|
|
16
|
+
): void;
|
|
17
|
+
credentials():
|
|
18
|
+
| AwsCredentialIdentity
|
|
19
|
+
| AwsCredentialIdentityProvider
|
|
20
|
+
| undefined;
|
|
21
|
+
}
|
|
22
|
+
export type HttpAuthRuntimeConfig = Partial<{
|
|
23
|
+
httpAuthSchemes: HttpAuthScheme[];
|
|
24
|
+
httpAuthSchemeProvider: SecurityAgentHttpAuthSchemeProvider;
|
|
25
|
+
credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider;
|
|
26
|
+
}>;
|
|
27
|
+
export declare const getHttpAuthExtensionConfiguration: (
|
|
28
|
+
runtimeConfig: HttpAuthRuntimeConfig
|
|
29
|
+
) => HttpAuthExtensionConfiguration;
|
|
30
|
+
export declare const resolveHttpAuthRuntimeConfig: (
|
|
31
|
+
config: HttpAuthExtensionConfiguration
|
|
32
|
+
) => HttpAuthRuntimeConfig;
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import {
|
|
2
|
+
AwsSdkSigV4AuthInputConfig,
|
|
3
|
+
AwsSdkSigV4AuthResolvedConfig,
|
|
4
|
+
AwsSdkSigV4PreviouslyResolved,
|
|
5
|
+
} from "@aws-sdk/core/httpAuthSchemes";
|
|
6
|
+
import {
|
|
7
|
+
HandlerExecutionContext,
|
|
8
|
+
HttpAuthScheme,
|
|
9
|
+
HttpAuthSchemeParameters,
|
|
10
|
+
HttpAuthSchemeParametersProvider,
|
|
11
|
+
HttpAuthSchemeProvider,
|
|
12
|
+
Provider,
|
|
13
|
+
} from "@smithy/types";
|
|
14
|
+
import { SecurityAgentClientResolvedConfig } from "../SecurityAgentClient";
|
|
15
|
+
export interface SecurityAgentHttpAuthSchemeParameters
|
|
16
|
+
extends HttpAuthSchemeParameters {
|
|
17
|
+
region?: string;
|
|
18
|
+
}
|
|
19
|
+
export interface SecurityAgentHttpAuthSchemeParametersProvider
|
|
20
|
+
extends HttpAuthSchemeParametersProvider<
|
|
21
|
+
SecurityAgentClientResolvedConfig,
|
|
22
|
+
HandlerExecutionContext,
|
|
23
|
+
SecurityAgentHttpAuthSchemeParameters,
|
|
24
|
+
object
|
|
25
|
+
> {}
|
|
26
|
+
export declare const defaultSecurityAgentHttpAuthSchemeParametersProvider: (
|
|
27
|
+
config: SecurityAgentClientResolvedConfig,
|
|
28
|
+
context: HandlerExecutionContext,
|
|
29
|
+
input: object
|
|
30
|
+
) => Promise<SecurityAgentHttpAuthSchemeParameters>;
|
|
31
|
+
export interface SecurityAgentHttpAuthSchemeProvider
|
|
32
|
+
extends HttpAuthSchemeProvider<SecurityAgentHttpAuthSchemeParameters> {}
|
|
33
|
+
export declare const defaultSecurityAgentHttpAuthSchemeProvider: SecurityAgentHttpAuthSchemeProvider;
|
|
34
|
+
export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
|
|
35
|
+
authSchemePreference?: string[] | Provider<string[]>;
|
|
36
|
+
httpAuthSchemes?: HttpAuthScheme[];
|
|
37
|
+
httpAuthSchemeProvider?: SecurityAgentHttpAuthSchemeProvider;
|
|
38
|
+
}
|
|
39
|
+
export interface HttpAuthSchemeResolvedConfig
|
|
40
|
+
extends AwsSdkSigV4AuthResolvedConfig {
|
|
41
|
+
readonly authSchemePreference: Provider<string[]>;
|
|
42
|
+
readonly httpAuthSchemes: HttpAuthScheme[];
|
|
43
|
+
readonly httpAuthSchemeProvider: SecurityAgentHttpAuthSchemeProvider;
|
|
44
|
+
}
|
|
45
|
+
export declare const resolveHttpAuthSchemeConfig: <T>(
|
|
46
|
+
config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved
|
|
47
|
+
) => T & HttpAuthSchemeResolvedConfig;
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { AddArtifactInput, AddArtifactOutput } from "../models/models_0";
|
|
4
|
+
import {
|
|
5
|
+
SecurityAgentClientResolvedConfig,
|
|
6
|
+
ServiceInputTypes,
|
|
7
|
+
ServiceOutputTypes,
|
|
8
|
+
} from "../SecurityAgentClient";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface AddArtifactCommandInput extends AddArtifactInput {}
|
|
12
|
+
export interface AddArtifactCommandOutput
|
|
13
|
+
extends AddArtifactOutput,
|
|
14
|
+
__MetadataBearer {}
|
|
15
|
+
declare const AddArtifactCommand_base: {
|
|
16
|
+
new (
|
|
17
|
+
input: AddArtifactCommandInput
|
|
18
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
19
|
+
AddArtifactCommandInput,
|
|
20
|
+
AddArtifactCommandOutput,
|
|
21
|
+
SecurityAgentClientResolvedConfig,
|
|
22
|
+
ServiceInputTypes,
|
|
23
|
+
ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
new (
|
|
26
|
+
input: AddArtifactCommandInput
|
|
27
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
28
|
+
AddArtifactCommandInput,
|
|
29
|
+
AddArtifactCommandOutput,
|
|
30
|
+
SecurityAgentClientResolvedConfig,
|
|
31
|
+
ServiceInputTypes,
|
|
32
|
+
ServiceOutputTypes
|
|
33
|
+
>;
|
|
34
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
35
|
+
};
|
|
36
|
+
export declare class AddArtifactCommand extends AddArtifactCommand_base {
|
|
37
|
+
protected static __types: {
|
|
38
|
+
api: {
|
|
39
|
+
input: AddArtifactInput;
|
|
40
|
+
output: AddArtifactOutput;
|
|
41
|
+
};
|
|
42
|
+
sdk: {
|
|
43
|
+
input: AddArtifactCommandInput;
|
|
44
|
+
output: AddArtifactCommandOutput;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
BatchDeletePentestsInput,
|
|
5
|
+
BatchDeletePentestsOutput,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
SecurityAgentClientResolvedConfig,
|
|
9
|
+
ServiceInputTypes,
|
|
10
|
+
ServiceOutputTypes,
|
|
11
|
+
} from "../SecurityAgentClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface BatchDeletePentestsCommandInput
|
|
15
|
+
extends BatchDeletePentestsInput {}
|
|
16
|
+
export interface BatchDeletePentestsCommandOutput
|
|
17
|
+
extends BatchDeletePentestsOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const BatchDeletePentestsCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: BatchDeletePentestsCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
BatchDeletePentestsCommandInput,
|
|
24
|
+
BatchDeletePentestsCommandOutput,
|
|
25
|
+
SecurityAgentClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: BatchDeletePentestsCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
BatchDeletePentestsCommandInput,
|
|
33
|
+
BatchDeletePentestsCommandOutput,
|
|
34
|
+
SecurityAgentClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class BatchDeletePentestsCommand extends BatchDeletePentestsCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: BatchDeletePentestsInput;
|
|
44
|
+
output: BatchDeletePentestsOutput;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: BatchDeletePentestsCommandInput;
|
|
48
|
+
output: BatchDeletePentestsCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
BatchGetAgentSpacesInput,
|
|
5
|
+
BatchGetAgentSpacesOutput,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
SecurityAgentClientResolvedConfig,
|
|
9
|
+
ServiceInputTypes,
|
|
10
|
+
ServiceOutputTypes,
|
|
11
|
+
} from "../SecurityAgentClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface BatchGetAgentSpacesCommandInput
|
|
15
|
+
extends BatchGetAgentSpacesInput {}
|
|
16
|
+
export interface BatchGetAgentSpacesCommandOutput
|
|
17
|
+
extends BatchGetAgentSpacesOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const BatchGetAgentSpacesCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: BatchGetAgentSpacesCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
BatchGetAgentSpacesCommandInput,
|
|
24
|
+
BatchGetAgentSpacesCommandOutput,
|
|
25
|
+
SecurityAgentClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: BatchGetAgentSpacesCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
BatchGetAgentSpacesCommandInput,
|
|
33
|
+
BatchGetAgentSpacesCommandOutput,
|
|
34
|
+
SecurityAgentClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class BatchGetAgentSpacesCommand extends BatchGetAgentSpacesCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: BatchGetAgentSpacesInput;
|
|
44
|
+
output: BatchGetAgentSpacesOutput;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: BatchGetAgentSpacesCommandInput;
|
|
48
|
+
output: BatchGetAgentSpacesCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
BatchGetArtifactMetadataInput,
|
|
5
|
+
BatchGetArtifactMetadataOutput,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
SecurityAgentClientResolvedConfig,
|
|
9
|
+
ServiceInputTypes,
|
|
10
|
+
ServiceOutputTypes,
|
|
11
|
+
} from "../SecurityAgentClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface BatchGetArtifactMetadataCommandInput
|
|
15
|
+
extends BatchGetArtifactMetadataInput {}
|
|
16
|
+
export interface BatchGetArtifactMetadataCommandOutput
|
|
17
|
+
extends BatchGetArtifactMetadataOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const BatchGetArtifactMetadataCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: BatchGetArtifactMetadataCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
BatchGetArtifactMetadataCommandInput,
|
|
24
|
+
BatchGetArtifactMetadataCommandOutput,
|
|
25
|
+
SecurityAgentClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: BatchGetArtifactMetadataCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
BatchGetArtifactMetadataCommandInput,
|
|
33
|
+
BatchGetArtifactMetadataCommandOutput,
|
|
34
|
+
SecurityAgentClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class BatchGetArtifactMetadataCommand extends BatchGetArtifactMetadataCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: BatchGetArtifactMetadataInput;
|
|
44
|
+
output: BatchGetArtifactMetadataOutput;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: BatchGetArtifactMetadataCommandInput;
|
|
48
|
+
output: BatchGetArtifactMetadataCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|