@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,1570 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.CreatePentestInput$ = exports.CreateMembershipResponse$ = exports.CreateMembershipRequest$ = exports.CreateIntegrationOutput$ = exports.CreateIntegrationInput$ = exports.CreateApplicationResponse$ = exports.CreateApplicationRequest$ = exports.CreateAgentSpaceOutput$ = exports.CreateAgentSpaceInput$ = exports.CodeReviewSettings$ = exports.CodeRemediationTaskDetails$ = exports.CodeRemediationTask$ = exports.CloudWatchLog$ = exports.Category$ = exports.BatchGetTargetDomainsOutput$ = exports.BatchGetTargetDomainsInput$ = exports.BatchGetPentestsOutput$ = exports.BatchGetPentestsInput$ = exports.BatchGetPentestJobTasksOutput$ = exports.BatchGetPentestJobTasksInput$ = exports.BatchGetPentestJobsOutput$ = exports.BatchGetPentestJobsInput$ = exports.BatchGetFindingsOutput$ = exports.BatchGetFindingsInput$ = exports.BatchGetArtifactMetadataOutput$ = exports.BatchGetArtifactMetadataInput$ = exports.BatchGetAgentSpacesOutput$ = exports.BatchGetAgentSpacesInput$ = exports.BatchDeletePentestsOutput$ = exports.BatchDeletePentestsInput$ = exports.AWSResources$ = exports.Authentication$ = exports.Assets$ = exports.ArtifactSummary$ = exports.ArtifactMetadataItem$ = exports.Artifact$ = exports.ApplicationSummary$ = exports.AgentSpaceSummary$ = exports.AgentSpace$ = exports.AddArtifactOutput$ = exports.AddArtifactInput$ = exports.Actor$ = exports.errorTypeRegistries = exports.ValidationException$ = exports.ThrottlingException$ = exports.ResourceNotFoundException$ = exports.InternalServerException$ = exports.ConflictException$ = exports.AccessDeniedException$ = exports.SecurityAgentServiceException$ = void 0;
|
|
4
|
+
exports.ListDiscoveredEndpointsOutput$ = exports.ListDiscoveredEndpointsInput$ = exports.ListArtifactsOutput$ = exports.ListArtifactsInput$ = exports.ListApplicationsResponse$ = exports.ListApplicationsRequest$ = exports.ListAgentSpacesOutput$ = exports.ListAgentSpacesInput$ = exports.IntegrationSummary$ = exports.IntegratedResourceSummary$ = exports.IntegratedResourceInputItem$ = exports.IntegratedRepository$ = exports.InitiateProviderRegistrationOutput$ = exports.InitiateProviderRegistrationInput$ = exports.IdCConfiguration$ = exports.HttpVerification$ = exports.GitHubResourceCapabilities$ = exports.GitHubRepositoryResource$ = exports.GitHubRepositoryMetadata$ = exports.GitHubIntegrationInput$ = exports.GetIntegrationOutput$ = exports.GetIntegrationInput$ = exports.GetArtifactOutput$ = exports.GetArtifactInput$ = exports.GetApplicationResponse$ = exports.GetApplicationRequest$ = exports.FindingSummary$ = exports.Finding$ = exports.ExecutionContext$ = exports.ErrorInformation$ = exports.Endpoint$ = exports.DocumentInfo$ = exports.DnsVerification$ = exports.DiscoveredEndpoint$ = exports.DeleteTargetDomainOutput$ = exports.DeleteTargetDomainInput$ = exports.DeletePentestFailure$ = exports.DeleteMembershipResponse$ = exports.DeleteMembershipRequest$ = exports.DeleteIntegrationOutput$ = exports.DeleteIntegrationInput$ = exports.DeleteArtifactOutput$ = exports.DeleteArtifactInput$ = exports.DeleteApplicationRequest$ = exports.DeleteAgentSpaceOutput$ = exports.DeleteAgentSpaceInput$ = exports.CustomHeader$ = exports.CreateTargetDomainOutput$ = exports.CreateTargetDomainInput$ = exports.CreatePentestOutput$ = void 0;
|
|
5
|
+
exports.UpdateIntegratedResourcesOutput$ = exports.UpdateIntegratedResourcesInput$ = exports.UpdateFindingOutput$ = exports.UpdateFindingInput$ = exports.UpdateApplicationResponse$ = exports.UpdateApplicationRequest$ = exports.UpdateAgentSpaceOutput$ = exports.UpdateAgentSpaceInput$ = exports.UntagResourceOutput$ = exports.UntagResourceInput$ = exports.TaskSummary$ = exports.Task$ = exports.TargetDomainSummary$ = exports.TargetDomain$ = exports.TagResourceOutput$ = exports.TagResourceInput$ = exports.StopPentestJobOutput$ = exports.StopPentestJobInput$ = exports.Step$ = exports.StartPentestJobOutput$ = exports.StartPentestJobInput$ = exports.StartCodeRemediationOutput$ = exports.StartCodeRemediationInput$ = exports.SourceCodeRepository$ = exports.PentestSummary$ = exports.PentestJobSummary$ = exports.PentestJob$ = exports.Pentest$ = exports.NetworkTrafficRule$ = exports.NetworkTrafficConfig$ = exports.MembershipSummary$ = exports.LogLocation$ = exports.ListTargetDomainsOutput$ = exports.ListTargetDomainsInput$ = exports.ListTagsForResourceOutput$ = exports.ListTagsForResourceInput$ = exports.ListPentestsOutput$ = exports.ListPentestsInput$ = exports.ListPentestJobTasksOutput$ = exports.ListPentestJobTasksInput$ = exports.ListPentestJobsForPentestOutput$ = exports.ListPentestJobsForPentestInput$ = exports.ListMembershipsResponse$ = exports.ListMembershipsRequest$ = exports.ListIntegrationsOutput$ = exports.ListIntegrationsInput$ = exports.ListIntegratedResourcesOutput$ = exports.ListIntegratedResourcesInput$ = exports.ListFindingsOutput$ = exports.ListFindingsInput$ = void 0;
|
|
6
|
+
exports.ListIntegrations$ = exports.ListIntegratedResources$ = exports.ListFindings$ = exports.ListDiscoveredEndpoints$ = exports.ListArtifacts$ = exports.ListApplications$ = exports.ListAgentSpaces$ = exports.InitiateProviderRegistration$ = exports.GetIntegration$ = exports.GetArtifact$ = exports.GetApplication$ = exports.DeleteTargetDomain$ = exports.DeleteMembership$ = exports.DeleteIntegration$ = exports.DeleteArtifact$ = exports.DeleteApplication$ = exports.DeleteAgentSpace$ = exports.CreateTargetDomain$ = exports.CreatePentest$ = exports.CreateMembership$ = exports.CreateIntegration$ = exports.CreateApplication$ = exports.CreateAgentSpace$ = exports.BatchGetTargetDomains$ = exports.BatchGetPentests$ = exports.BatchGetPentestJobTasks$ = exports.BatchGetPentestJobs$ = exports.BatchGetFindings$ = exports.BatchGetArtifactMetadata$ = exports.BatchGetAgentSpaces$ = exports.BatchDeletePentests$ = exports.AddArtifact$ = exports.ProviderResourceCapabilities$ = exports.ProviderInput$ = exports.MembershipConfig$ = exports.MemberMetadata$ = exports.IntegrationFilter$ = exports.IntegratedResourceMetadata$ = exports.IntegratedResource$ = exports.VpcConfig$ = exports.VerifyTargetDomainOutput$ = exports.VerifyTargetDomainInput$ = exports.VerificationDetails$ = exports.ValidationExceptionField$ = exports.UserMetadata$ = exports.UserConfig$ = exports.UpdateTargetDomainOutput$ = exports.UpdateTargetDomainInput$ = exports.UpdatePentestOutput$ = exports.UpdatePentestInput$ = void 0;
|
|
7
|
+
exports.VerifyTargetDomain$ = exports.UpdateTargetDomain$ = exports.UpdatePentest$ = exports.UpdateIntegratedResources$ = exports.UpdateFinding$ = exports.UpdateApplication$ = exports.UpdateAgentSpace$ = exports.UntagResource$ = exports.TagResource$ = exports.StopPentestJob$ = exports.StartPentestJob$ = exports.StartCodeRemediation$ = exports.ListTargetDomains$ = exports.ListTagsForResource$ = exports.ListPentests$ = exports.ListPentestJobTasks$ = exports.ListPentestJobsForPentest$ = exports.ListMemberships$ = void 0;
|
|
8
|
+
const _A = "Actor";
|
|
9
|
+
const _AA = "AddArtifact";
|
|
10
|
+
const _AAI = "AddArtifactInput";
|
|
11
|
+
const _AAO = "AddArtifactOutput";
|
|
12
|
+
const _ADE = "AccessDeniedException";
|
|
13
|
+
const _AL = "ActorList";
|
|
14
|
+
const _AMI = "ArtifactMetadataItem";
|
|
15
|
+
const _AML = "ArtifactMetadataList";
|
|
16
|
+
const _AS = "AgentSpace";
|
|
17
|
+
const _ASL = "AgentSpaceList";
|
|
18
|
+
const _ASLp = "ApplicationSummaryList";
|
|
19
|
+
const _ASLr = "ArtifactSummaryList";
|
|
20
|
+
const _ASS = "AgentSpaceSummary";
|
|
21
|
+
const _ASSL = "AgentSpaceSummaryList";
|
|
22
|
+
const _ASp = "ApplicationSummary";
|
|
23
|
+
const _ASr = "ArtifactSummary";
|
|
24
|
+
const _AWSR = "AWSResources";
|
|
25
|
+
const _Ar = "Artifact";
|
|
26
|
+
const _As = "Assets";
|
|
27
|
+
const _Au = "Authentication";
|
|
28
|
+
const _BDP = "BatchDeletePentests";
|
|
29
|
+
const _BDPI = "BatchDeletePentestsInput";
|
|
30
|
+
const _BDPO = "BatchDeletePentestsOutput";
|
|
31
|
+
const _BGAM = "BatchGetArtifactMetadata";
|
|
32
|
+
const _BGAMI = "BatchGetArtifactMetadataInput";
|
|
33
|
+
const _BGAMO = "BatchGetArtifactMetadataOutput";
|
|
34
|
+
const _BGAS = "BatchGetAgentSpaces";
|
|
35
|
+
const _BGASI = "BatchGetAgentSpacesInput";
|
|
36
|
+
const _BGASO = "BatchGetAgentSpacesOutput";
|
|
37
|
+
const _BGF = "BatchGetFindings";
|
|
38
|
+
const _BGFI = "BatchGetFindingsInput";
|
|
39
|
+
const _BGFO = "BatchGetFindingsOutput";
|
|
40
|
+
const _BGP = "BatchGetPentests";
|
|
41
|
+
const _BGPI = "BatchGetPentestsInput";
|
|
42
|
+
const _BGPJ = "BatchGetPentestJobs";
|
|
43
|
+
const _BGPJI = "BatchGetPentestJobsInput";
|
|
44
|
+
const _BGPJO = "BatchGetPentestJobsOutput";
|
|
45
|
+
const _BGPJT = "BatchGetPentestJobTasks";
|
|
46
|
+
const _BGPJTI = "BatchGetPentestJobTasksInput";
|
|
47
|
+
const _BGPJTO = "BatchGetPentestJobTasksOutput";
|
|
48
|
+
const _BGPO = "BatchGetPentestsOutput";
|
|
49
|
+
const _BGTD = "BatchGetTargetDomains";
|
|
50
|
+
const _BGTDI = "BatchGetTargetDomainsInput";
|
|
51
|
+
const _BGTDO = "BatchGetTargetDomainsOutput";
|
|
52
|
+
const _C = "Category";
|
|
53
|
+
const _CA = "CreateApplication";
|
|
54
|
+
const _CAR = "CreateApplicationRequest";
|
|
55
|
+
const _CARr = "CreateApplicationResponse";
|
|
56
|
+
const _CAS = "CreateAgentSpace";
|
|
57
|
+
const _CASI = "CreateAgentSpaceInput";
|
|
58
|
+
const _CASO = "CreateAgentSpaceOutput";
|
|
59
|
+
const _CE = "ConflictException";
|
|
60
|
+
const _CH = "CustomHeader";
|
|
61
|
+
const _CHL = "CustomHeaderList";
|
|
62
|
+
const _CI = "CreateIntegration";
|
|
63
|
+
const _CII = "CreateIntegrationInput";
|
|
64
|
+
const _CIO = "CreateIntegrationOutput";
|
|
65
|
+
const _CL = "CategoryList";
|
|
66
|
+
const _CM = "CreateMembership";
|
|
67
|
+
const _CMR = "CreateMembershipRequest";
|
|
68
|
+
const _CMRr = "CreateMembershipResponse";
|
|
69
|
+
const _CP = "CreatePentest";
|
|
70
|
+
const _CPI = "CreatePentestInput";
|
|
71
|
+
const _CPO = "CreatePentestOutput";
|
|
72
|
+
const _CRS = "CodeReviewSettings";
|
|
73
|
+
const _CRT = "CodeRemediationTask";
|
|
74
|
+
const _CRTD = "CodeRemediationTaskDetails";
|
|
75
|
+
const _CRTDL = "CodeRemediationTaskDetailsList";
|
|
76
|
+
const _CTD = "CreateTargetDomain";
|
|
77
|
+
const _CTDI = "CreateTargetDomainInput";
|
|
78
|
+
const _CTDO = "CreateTargetDomainOutput";
|
|
79
|
+
const _CWL = "CloudWatchLog";
|
|
80
|
+
const _DA = "DeleteApplication";
|
|
81
|
+
const _DAI = "DeleteArtifactInput";
|
|
82
|
+
const _DAO = "DeleteArtifactOutput";
|
|
83
|
+
const _DAR = "DeleteApplicationRequest";
|
|
84
|
+
const _DAS = "DeleteAgentSpace";
|
|
85
|
+
const _DASI = "DeleteAgentSpaceInput";
|
|
86
|
+
const _DASO = "DeleteAgentSpaceOutput";
|
|
87
|
+
const _DAe = "DeleteArtifact";
|
|
88
|
+
const _DE = "DiscoveredEndpoint";
|
|
89
|
+
const _DEL = "DiscoveredEndpointList";
|
|
90
|
+
const _DI = "DocumentInfo";
|
|
91
|
+
const _DII = "DeleteIntegrationInput";
|
|
92
|
+
const _DIO = "DeleteIntegrationOutput";
|
|
93
|
+
const _DIe = "DeleteIntegration";
|
|
94
|
+
const _DL = "DocumentList";
|
|
95
|
+
const _DM = "DeleteMembership";
|
|
96
|
+
const _DMR = "DeleteMembershipRequest";
|
|
97
|
+
const _DMRe = "DeleteMembershipResponse";
|
|
98
|
+
const _DPF = "DeletePentestFailure";
|
|
99
|
+
const _DPFL = "DeletePentestFailureList";
|
|
100
|
+
const _DTD = "DeleteTargetDomain";
|
|
101
|
+
const _DTDI = "DeleteTargetDomainInput";
|
|
102
|
+
const _DTDO = "DeleteTargetDomainOutput";
|
|
103
|
+
const _DV = "DnsVerification";
|
|
104
|
+
const _E = "Endpoint";
|
|
105
|
+
const _EC = "ExecutionContext";
|
|
106
|
+
const _ECL = "ExecutionContextList";
|
|
107
|
+
const _EI = "ErrorInformation";
|
|
108
|
+
const _EL = "EndpointList";
|
|
109
|
+
const _F = "Finding";
|
|
110
|
+
const _FL = "FindingList";
|
|
111
|
+
const _FS = "FindingSummary";
|
|
112
|
+
const _FSL = "FindingSummaryList";
|
|
113
|
+
const _GA = "GetApplication";
|
|
114
|
+
const _GAI = "GetArtifactInput";
|
|
115
|
+
const _GAO = "GetArtifactOutput";
|
|
116
|
+
const _GAR = "GetApplicationRequest";
|
|
117
|
+
const _GARe = "GetApplicationResponse";
|
|
118
|
+
const _GAe = "GetArtifact";
|
|
119
|
+
const _GHII = "GitHubIntegrationInput";
|
|
120
|
+
const _GHRC = "GitHubResourceCapabilities";
|
|
121
|
+
const _GHRM = "GitHubRepositoryMetadata";
|
|
122
|
+
const _GHRR = "GitHubRepositoryResource";
|
|
123
|
+
const _GI = "GetIntegration";
|
|
124
|
+
const _GII = "GetIntegrationInput";
|
|
125
|
+
const _GIO = "GetIntegrationOutput";
|
|
126
|
+
const _HV = "HttpVerification";
|
|
127
|
+
const _ICC = "IdCConfiguration";
|
|
128
|
+
const _IF = "IntegrationFilter";
|
|
129
|
+
const _IPR = "InitiateProviderRegistration";
|
|
130
|
+
const _IPRI = "InitiateProviderRegistrationInput";
|
|
131
|
+
const _IPRO = "InitiateProviderRegistrationOutput";
|
|
132
|
+
const _IR = "IntegratedRepository";
|
|
133
|
+
const _IRII = "IntegratedResourceInputItem";
|
|
134
|
+
const _IRIIL = "IntegratedResourceInputItemList";
|
|
135
|
+
const _IRL = "IntegratedRepositoryList";
|
|
136
|
+
const _IRM = "IntegratedResourceMetadata";
|
|
137
|
+
const _IRS = "IntegratedResourceSummary";
|
|
138
|
+
const _IRSL = "IntegratedResourceSummaryList";
|
|
139
|
+
const _IRn = "IntegratedResource";
|
|
140
|
+
const _IS = "IntegrationSummary";
|
|
141
|
+
const _ISE = "InternalServerException";
|
|
142
|
+
const _ISL = "IntegrationSummaryList";
|
|
143
|
+
const _LA = "ListApplications";
|
|
144
|
+
const _LAI = "ListArtifactsInput";
|
|
145
|
+
const _LAO = "ListArtifactsOutput";
|
|
146
|
+
const _LAR = "ListApplicationsRequest";
|
|
147
|
+
const _LARi = "ListApplicationsResponse";
|
|
148
|
+
const _LAS = "ListAgentSpaces";
|
|
149
|
+
const _LASI = "ListAgentSpacesInput";
|
|
150
|
+
const _LASO = "ListAgentSpacesOutput";
|
|
151
|
+
const _LAi = "ListArtifacts";
|
|
152
|
+
const _LDE = "ListDiscoveredEndpoints";
|
|
153
|
+
const _LDEI = "ListDiscoveredEndpointsInput";
|
|
154
|
+
const _LDEO = "ListDiscoveredEndpointsOutput";
|
|
155
|
+
const _LF = "ListFindings";
|
|
156
|
+
const _LFI = "ListFindingsInput";
|
|
157
|
+
const _LFO = "ListFindingsOutput";
|
|
158
|
+
const _LI = "ListIntegrations";
|
|
159
|
+
const _LII = "ListIntegrationsInput";
|
|
160
|
+
const _LIO = "ListIntegrationsOutput";
|
|
161
|
+
const _LIR = "ListIntegratedResources";
|
|
162
|
+
const _LIRI = "ListIntegratedResourcesInput";
|
|
163
|
+
const _LIRO = "ListIntegratedResourcesOutput";
|
|
164
|
+
const _LL = "LogLocation";
|
|
165
|
+
const _LM = "ListMemberships";
|
|
166
|
+
const _LMR = "ListMembershipsRequest";
|
|
167
|
+
const _LMRi = "ListMembershipsResponse";
|
|
168
|
+
const _LP = "ListPentests";
|
|
169
|
+
const _LPI = "ListPentestsInput";
|
|
170
|
+
const _LPJFP = "ListPentestJobsForPentest";
|
|
171
|
+
const _LPJFPI = "ListPentestJobsForPentestInput";
|
|
172
|
+
const _LPJFPO = "ListPentestJobsForPentestOutput";
|
|
173
|
+
const _LPJT = "ListPentestJobTasks";
|
|
174
|
+
const _LPJTI = "ListPentestJobTasksInput";
|
|
175
|
+
const _LPJTO = "ListPentestJobTasksOutput";
|
|
176
|
+
const _LPO = "ListPentestsOutput";
|
|
177
|
+
const _LTD = "ListTargetDomains";
|
|
178
|
+
const _LTDI = "ListTargetDomainsInput";
|
|
179
|
+
const _LTDO = "ListTargetDomainsOutput";
|
|
180
|
+
const _LTFR = "ListTagsForResource";
|
|
181
|
+
const _LTFRI = "ListTagsForResourceInput";
|
|
182
|
+
const _LTFRO = "ListTagsForResourceOutput";
|
|
183
|
+
const _MC = "MembershipConfig";
|
|
184
|
+
const _MM = "MemberMetadata";
|
|
185
|
+
const _MS = "MembershipSummary";
|
|
186
|
+
const _MSL = "MembershipSummaryList";
|
|
187
|
+
const _NTC = "NetworkTrafficConfig";
|
|
188
|
+
const _NTR = "NetworkTrafficRule";
|
|
189
|
+
const _NTRL = "NetworkTrafficRuleList";
|
|
190
|
+
const _P = "Pentest";
|
|
191
|
+
const _PI = "ProviderInput";
|
|
192
|
+
const _PJ = "PentestJob";
|
|
193
|
+
const _PJL = "PentestJobList";
|
|
194
|
+
const _PJS = "PentestJobSummary";
|
|
195
|
+
const _PJSL = "PentestJobSummaryList";
|
|
196
|
+
const _PL = "PentestList";
|
|
197
|
+
const _PRC = "ProviderResourceCapabilities";
|
|
198
|
+
const _PS = "PentestSummary";
|
|
199
|
+
const _PSL = "PentestSummaryList";
|
|
200
|
+
const _RNFE = "ResourceNotFoundException";
|
|
201
|
+
const _S = "Step";
|
|
202
|
+
const _SCR = "SourceCodeRepository";
|
|
203
|
+
const _SCRI = "StartCodeRemediationInput";
|
|
204
|
+
const _SCRL = "SourceCodeRepositoryList";
|
|
205
|
+
const _SCRO = "StartCodeRemediationOutput";
|
|
206
|
+
const _SCRt = "StartCodeRemediation";
|
|
207
|
+
const _SL = "StepList";
|
|
208
|
+
const _SPJ = "StartPentestJob";
|
|
209
|
+
const _SPJI = "StartPentestJobInput";
|
|
210
|
+
const _SPJIt = "StopPentestJobInput";
|
|
211
|
+
const _SPJO = "StartPentestJobOutput";
|
|
212
|
+
const _SPJOt = "StopPentestJobOutput";
|
|
213
|
+
const _SPJt = "StopPentestJob";
|
|
214
|
+
const _T = "Task";
|
|
215
|
+
const _TD = "TargetDomain";
|
|
216
|
+
const _TDL = "TargetDomainList";
|
|
217
|
+
const _TDS = "TargetDomainSummary";
|
|
218
|
+
const _TDSL = "TargetDomainSummaryList";
|
|
219
|
+
const _TE = "ThrottlingException";
|
|
220
|
+
const _TL = "TaskList";
|
|
221
|
+
const _TR = "TagResource";
|
|
222
|
+
const _TRI = "TagResourceInput";
|
|
223
|
+
const _TRO = "TagResourceOutput";
|
|
224
|
+
const _TS = "TaskSummary";
|
|
225
|
+
const _TSL = "TaskSummaryList";
|
|
226
|
+
const _UA = "UpdateApplication";
|
|
227
|
+
const _UAR = "UpdateApplicationRequest";
|
|
228
|
+
const _UARp = "UpdateApplicationResponse";
|
|
229
|
+
const _UAS = "UpdateAgentSpace";
|
|
230
|
+
const _UASI = "UpdateAgentSpaceInput";
|
|
231
|
+
const _UASO = "UpdateAgentSpaceOutput";
|
|
232
|
+
const _UC = "UserConfig";
|
|
233
|
+
const _UF = "UpdateFinding";
|
|
234
|
+
const _UFI = "UpdateFindingInput";
|
|
235
|
+
const _UFO = "UpdateFindingOutput";
|
|
236
|
+
const _UIR = "UpdateIntegratedResources";
|
|
237
|
+
const _UIRI = "UpdateIntegratedResourcesInput";
|
|
238
|
+
const _UIRO = "UpdateIntegratedResourcesOutput";
|
|
239
|
+
const _UM = "UserMetadata";
|
|
240
|
+
const _UP = "UpdatePentest";
|
|
241
|
+
const _UPI = "UpdatePentestInput";
|
|
242
|
+
const _UPO = "UpdatePentestOutput";
|
|
243
|
+
const _UR = "UntagResource";
|
|
244
|
+
const _URI = "UntagResourceInput";
|
|
245
|
+
const _URO = "UntagResourceOutput";
|
|
246
|
+
const _UTD = "UpdateTargetDomain";
|
|
247
|
+
const _UTDI = "UpdateTargetDomainInput";
|
|
248
|
+
const _UTDO = "UpdateTargetDomainOutput";
|
|
249
|
+
const _VC = "VpcConfig";
|
|
250
|
+
const _VCp = "VpcConfigs";
|
|
251
|
+
const _VD = "VerificationDetails";
|
|
252
|
+
const _VE = "ValidationException";
|
|
253
|
+
const _VEF = "ValidationExceptionField";
|
|
254
|
+
const _VEFL = "ValidationExceptionFieldList";
|
|
255
|
+
const _VTD = "VerifyTargetDomain";
|
|
256
|
+
const _VTDI = "VerifyTargetDomainInput";
|
|
257
|
+
const _VTDO = "VerifyTargetDomainOutput";
|
|
258
|
+
const _a = "authentication";
|
|
259
|
+
const _aC = "artifactContent";
|
|
260
|
+
const _aD = "allowedDomains";
|
|
261
|
+
const _aI = "artifactId";
|
|
262
|
+
const _aIp = "applicationId";
|
|
263
|
+
const _aIr = "artifactIds";
|
|
264
|
+
const _aML = "artifactMetadataList";
|
|
265
|
+
const _aN = "applicationName";
|
|
266
|
+
const _aR = "awsResources";
|
|
267
|
+
const _aS = "agentSpaces";
|
|
268
|
+
const _aSI = "agentSpaceId";
|
|
269
|
+
const _aSIg = "agentSpaceIds";
|
|
270
|
+
const _aSS = "agentSpaceSummaries";
|
|
271
|
+
const _aSp = "applicationSummaries";
|
|
272
|
+
const _aSr = "artifactSummaries";
|
|
273
|
+
const _aSt = "attackScript";
|
|
274
|
+
const _aT = "artifactType";
|
|
275
|
+
const _aTc = "accessType";
|
|
276
|
+
const _ac = "actors";
|
|
277
|
+
const _ar = "artifact";
|
|
278
|
+
const _as = "assets";
|
|
279
|
+
const _c = "client";
|
|
280
|
+
const _cA = "createdAt";
|
|
281
|
+
const _cB = "createdBy";
|
|
282
|
+
const _cDL = "codeDiffLink";
|
|
283
|
+
const _cH = "customHeaders";
|
|
284
|
+
const _cN = "categoryName";
|
|
285
|
+
const _cRS = "codeReviewSettings";
|
|
286
|
+
const _cRSo = "codeRemediationStrategy";
|
|
287
|
+
const _cRT = "codeRemediationTask";
|
|
288
|
+
const _cS = "controlsScanning";
|
|
289
|
+
const _cSs = "csrfState";
|
|
290
|
+
const _cT = "contextType";
|
|
291
|
+
const _cWL = "cloudWatchLog";
|
|
292
|
+
const _ca = "capabilities";
|
|
293
|
+
const _cat = "categories";
|
|
294
|
+
const _co = "contents";
|
|
295
|
+
const _cod = "code";
|
|
296
|
+
const _con = "config";
|
|
297
|
+
const _conf = "confidence";
|
|
298
|
+
const _cont = "context";
|
|
299
|
+
const _d = "description";
|
|
300
|
+
const _dE = "discoveredEndpoints";
|
|
301
|
+
const _dKKI = "defaultKmsKeyId";
|
|
302
|
+
const _dN = "domainName";
|
|
303
|
+
const _dNi = "displayName";
|
|
304
|
+
const _dRN = "dnsRecordName";
|
|
305
|
+
const _dRT = "dnsRecordType";
|
|
306
|
+
const _dT = "dnsTxt";
|
|
307
|
+
const _de = "deleted";
|
|
308
|
+
const _do = "domain";
|
|
309
|
+
const _doc = "documents";
|
|
310
|
+
const _e = "error";
|
|
311
|
+
const _eC = "executionContext";
|
|
312
|
+
const _eI = "errorInformation";
|
|
313
|
+
const _eP = "excludePaths";
|
|
314
|
+
const _eRT = "excludeRiskTypes";
|
|
315
|
+
const _eS = "executionStatus";
|
|
316
|
+
const _ef = "effect";
|
|
317
|
+
const _em = "email";
|
|
318
|
+
const _en = "endpoints";
|
|
319
|
+
const _ev = "evidence";
|
|
320
|
+
const _f = "failed";
|
|
321
|
+
const _fI = "findingIds";
|
|
322
|
+
const _fIi = "findingId";
|
|
323
|
+
const _fL = "fieldList";
|
|
324
|
+
const _fN = "fileName";
|
|
325
|
+
const _fS = "findingsSummaries";
|
|
326
|
+
const _fi = "findings";
|
|
327
|
+
const _fil = "filter";
|
|
328
|
+
const _g = "github";
|
|
329
|
+
const _gPS = "generalPurposeScanning";
|
|
330
|
+
const _gR = "githubRepository";
|
|
331
|
+
const _h = "http";
|
|
332
|
+
const _hE = "httpError";
|
|
333
|
+
const _hQ = "httpQuery";
|
|
334
|
+
const _hR = "httpRoute";
|
|
335
|
+
const _i = "identifier";
|
|
336
|
+
const _iAA = "idcApplicationArn";
|
|
337
|
+
const _iC = "idcConfiguration";
|
|
338
|
+
const _iDN = "integrationDisplayName";
|
|
339
|
+
const _iI = "integrationId";
|
|
340
|
+
const _iIA = "idcInstanceArn";
|
|
341
|
+
const _iIn = "installationId";
|
|
342
|
+
const _iP = "isPrimary";
|
|
343
|
+
const _iR = "integratedRepositories";
|
|
344
|
+
const _iRS = "integratedResourceSummaries";
|
|
345
|
+
const _iRa = "iamRoles";
|
|
346
|
+
const _iS = "integrationSummaries";
|
|
347
|
+
const _in = "input";
|
|
348
|
+
const _it = "items";
|
|
349
|
+
const _kKI = "kmsKeyId";
|
|
350
|
+
const _lC = "logConfig";
|
|
351
|
+
const _lCe = "leaveComments";
|
|
352
|
+
const _lFA = "lambdaFunctionArns";
|
|
353
|
+
const _lG = "logGroups";
|
|
354
|
+
const _lGo = "logGroup";
|
|
355
|
+
const _lL = "logsLocation";
|
|
356
|
+
const _lS = "logStream";
|
|
357
|
+
const _lT = "logType";
|
|
358
|
+
const _lUB = "lastUpdatedBy";
|
|
359
|
+
const _m = "message";
|
|
360
|
+
const _mI = "membershipId";
|
|
361
|
+
const _mR = "maxResults";
|
|
362
|
+
const _mS = "membershipSummaries";
|
|
363
|
+
const _mT = "memberType";
|
|
364
|
+
const _me = "metadata";
|
|
365
|
+
const _met = "method";
|
|
366
|
+
const _n = "name";
|
|
367
|
+
const _nF = "notFound";
|
|
368
|
+
const _nT = "nextToken";
|
|
369
|
+
const _nTC = "networkTrafficConfig";
|
|
370
|
+
const _nTRT = "networkTrafficRuleType";
|
|
371
|
+
const _o = "operation";
|
|
372
|
+
const _oN = "organizationName";
|
|
373
|
+
const _ov = "overview";
|
|
374
|
+
const _ow = "owner";
|
|
375
|
+
const _p = "pentests";
|
|
376
|
+
const _pI = "pentestIds";
|
|
377
|
+
const _pIe = "pentestId";
|
|
378
|
+
const _pJ = "pentestJobs";
|
|
379
|
+
const _pJI = "pentestJobIds";
|
|
380
|
+
const _pJIe = "pentestJobId";
|
|
381
|
+
const _pJS = "pentestJobSummaries";
|
|
382
|
+
const _pRI = "providerResourceId";
|
|
383
|
+
const _pRL = "pullRequestLink";
|
|
384
|
+
const _pS = "pentestSummaries";
|
|
385
|
+
const _pT = "providerType";
|
|
386
|
+
const _pa = "pattern";
|
|
387
|
+
const _pat = "path";
|
|
388
|
+
const _pr = "provider";
|
|
389
|
+
const _pre = "prefix";
|
|
390
|
+
const _qC = "quotaCode";
|
|
391
|
+
const _r = "reason";
|
|
392
|
+
const _rA = "roleArn";
|
|
393
|
+
const _rAe = "resourceArn";
|
|
394
|
+
const _rC = "remediateCode";
|
|
395
|
+
const _rL = "riskLevel";
|
|
396
|
+
const _rN = "repoName";
|
|
397
|
+
const _rP = "routePath";
|
|
398
|
+
const _rS = "riskScore";
|
|
399
|
+
const _rT = "riskType";
|
|
400
|
+
const _rTe = "redirectTo";
|
|
401
|
+
const _rTes = "resourceType";
|
|
402
|
+
const _re = "reasoning";
|
|
403
|
+
const _res = "resource";
|
|
404
|
+
const _ro = "role";
|
|
405
|
+
const _ru = "rules";
|
|
406
|
+
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.securityagent";
|
|
407
|
+
const _sA = "secretArns";
|
|
408
|
+
const _sAu = "subnetArns";
|
|
409
|
+
const _sB = "s3Buckets";
|
|
410
|
+
const _sC = "serviceCode";
|
|
411
|
+
const _sCo = "sourceCode";
|
|
412
|
+
const _sGA = "securityGroupArns";
|
|
413
|
+
const _sL = "s3Location";
|
|
414
|
+
const _sN = "stepName";
|
|
415
|
+
const _sR = "statusReason";
|
|
416
|
+
const _sRe = "serviceRole";
|
|
417
|
+
const _se = "server";
|
|
418
|
+
const _st = "status";
|
|
419
|
+
const _sta = "state";
|
|
420
|
+
const _ste = "steps";
|
|
421
|
+
const _t = "type";
|
|
422
|
+
const _tD = "targetDomains";
|
|
423
|
+
const _tDI = "targetDomainIds";
|
|
424
|
+
const _tDIa = "targetDomainId";
|
|
425
|
+
const _tDN = "targetDomainName";
|
|
426
|
+
const _tDS = "targetDomainSummaries";
|
|
427
|
+
const _tDa = "taskDetails";
|
|
428
|
+
const _tE = "targetEndpoint";
|
|
429
|
+
const _tI = "taskIds";
|
|
430
|
+
const _tIa = "taskId";
|
|
431
|
+
const _tK = "tagKeys";
|
|
432
|
+
const _tS = "taskSummaries";
|
|
433
|
+
const _ta = "tasks";
|
|
434
|
+
const _tag = "tags";
|
|
435
|
+
const _ti = "title";
|
|
436
|
+
const _tim = "timestamp";
|
|
437
|
+
const _to = "token";
|
|
438
|
+
const _u = "uris";
|
|
439
|
+
const _uA = "updatedAt";
|
|
440
|
+
const _uB = "updatedBy";
|
|
441
|
+
const _ur = "uri";
|
|
442
|
+
const _us = "username";
|
|
443
|
+
const _use = "user";
|
|
444
|
+
const _v = "value";
|
|
445
|
+
const _vA = "verifiedAt";
|
|
446
|
+
const _vAp = "vpcArn";
|
|
447
|
+
const _vC = "vpcConfig";
|
|
448
|
+
const _vD = "verificationDetails";
|
|
449
|
+
const _vM = "verificationMethod";
|
|
450
|
+
const _vS = "verificationStatus";
|
|
451
|
+
const _vp = "vpcs";
|
|
452
|
+
const n0 = "com.amazonaws.securityagent";
|
|
453
|
+
const schema_1 = require("@smithy/core/schema");
|
|
454
|
+
const errors_1 = require("../models/errors");
|
|
455
|
+
const SecurityAgentServiceException_1 = require("../models/SecurityAgentServiceException");
|
|
456
|
+
const _s_registry = schema_1.TypeRegistry.for(_s);
|
|
457
|
+
exports.SecurityAgentServiceException$ = [-3, _s, "SecurityAgentServiceException", 0, [], []];
|
|
458
|
+
_s_registry.registerError(exports.SecurityAgentServiceException$, SecurityAgentServiceException_1.SecurityAgentServiceException);
|
|
459
|
+
const n0_registry = schema_1.TypeRegistry.for(n0);
|
|
460
|
+
exports.AccessDeniedException$ = [-3, n0, _ADE,
|
|
461
|
+
{ [_e]: _c, [_hE]: 403 },
|
|
462
|
+
[_m],
|
|
463
|
+
[0], 1
|
|
464
|
+
];
|
|
465
|
+
n0_registry.registerError(exports.AccessDeniedException$, errors_1.AccessDeniedException);
|
|
466
|
+
exports.ConflictException$ = [-3, n0, _CE,
|
|
467
|
+
{ [_e]: _c, [_hE]: 409 },
|
|
468
|
+
[_m],
|
|
469
|
+
[0], 1
|
|
470
|
+
];
|
|
471
|
+
n0_registry.registerError(exports.ConflictException$, errors_1.ConflictException);
|
|
472
|
+
exports.InternalServerException$ = [-3, n0, _ISE,
|
|
473
|
+
{ [_e]: _se, [_hE]: 500 },
|
|
474
|
+
[_m],
|
|
475
|
+
[0], 1
|
|
476
|
+
];
|
|
477
|
+
n0_registry.registerError(exports.InternalServerException$, errors_1.InternalServerException);
|
|
478
|
+
exports.ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
479
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
480
|
+
[_m],
|
|
481
|
+
[0], 1
|
|
482
|
+
];
|
|
483
|
+
n0_registry.registerError(exports.ResourceNotFoundException$, errors_1.ResourceNotFoundException);
|
|
484
|
+
exports.ThrottlingException$ = [-3, n0, _TE,
|
|
485
|
+
{ [_e]: _c, [_hE]: 429 },
|
|
486
|
+
[_m, _sC, _qC],
|
|
487
|
+
[0, 0, 0], 1
|
|
488
|
+
];
|
|
489
|
+
n0_registry.registerError(exports.ThrottlingException$, errors_1.ThrottlingException);
|
|
490
|
+
exports.ValidationException$ = [-3, n0, _VE,
|
|
491
|
+
{ [_e]: _c },
|
|
492
|
+
[_m, _fL],
|
|
493
|
+
[0, () => ValidationExceptionFieldList], 1
|
|
494
|
+
];
|
|
495
|
+
n0_registry.registerError(exports.ValidationException$, errors_1.ValidationException);
|
|
496
|
+
exports.errorTypeRegistries = [
|
|
497
|
+
_s_registry,
|
|
498
|
+
n0_registry,
|
|
499
|
+
];
|
|
500
|
+
exports.Actor$ = [3, n0, _A,
|
|
501
|
+
0,
|
|
502
|
+
[_i, _u, _a, _d],
|
|
503
|
+
[0, 64 | 0, () => exports.Authentication$, 0]
|
|
504
|
+
];
|
|
505
|
+
exports.AddArtifactInput$ = [3, n0, _AAI,
|
|
506
|
+
0,
|
|
507
|
+
[_aSI, _aC, _aT, _fN],
|
|
508
|
+
[0, 21, 0, 0], 4
|
|
509
|
+
];
|
|
510
|
+
exports.AddArtifactOutput$ = [3, n0, _AAO,
|
|
511
|
+
0,
|
|
512
|
+
[_aI],
|
|
513
|
+
[0], 1
|
|
514
|
+
];
|
|
515
|
+
exports.AgentSpace$ = [3, n0, _AS,
|
|
516
|
+
0,
|
|
517
|
+
[_aSI, _n, _d, _aR, _tDI, _cRS, _kKI, _cA, _uA],
|
|
518
|
+
[0, 0, 0, () => exports.AWSResources$, 64 | 0, () => exports.CodeReviewSettings$, 0, 5, 5], 2
|
|
519
|
+
];
|
|
520
|
+
exports.AgentSpaceSummary$ = [3, n0, _ASS,
|
|
521
|
+
0,
|
|
522
|
+
[_aSI, _n, _cA, _uA],
|
|
523
|
+
[0, 0, 5, 5], 2
|
|
524
|
+
];
|
|
525
|
+
exports.ApplicationSummary$ = [3, n0, _ASp,
|
|
526
|
+
0,
|
|
527
|
+
[_aIp, _aN, _do, _dKKI],
|
|
528
|
+
[0, 0, 0, 0], 3
|
|
529
|
+
];
|
|
530
|
+
exports.Artifact$ = [3, n0, _Ar,
|
|
531
|
+
0,
|
|
532
|
+
[_co, _t],
|
|
533
|
+
[0, 0], 2
|
|
534
|
+
];
|
|
535
|
+
exports.ArtifactMetadataItem$ = [3, n0, _AMI,
|
|
536
|
+
0,
|
|
537
|
+
[_aSI, _aI, _fN, _uA],
|
|
538
|
+
[0, 0, 0, 5], 4
|
|
539
|
+
];
|
|
540
|
+
exports.ArtifactSummary$ = [3, n0, _ASr,
|
|
541
|
+
0,
|
|
542
|
+
[_aI, _fN, _aT],
|
|
543
|
+
[0, 0, 0], 3
|
|
544
|
+
];
|
|
545
|
+
exports.Assets$ = [3, n0, _As,
|
|
546
|
+
0,
|
|
547
|
+
[_en, _ac, _doc, _sCo, _iR],
|
|
548
|
+
[() => EndpointList, () => ActorList, () => DocumentList, () => SourceCodeRepositoryList, () => IntegratedRepositoryList]
|
|
549
|
+
];
|
|
550
|
+
exports.Authentication$ = [3, n0, _Au,
|
|
551
|
+
0,
|
|
552
|
+
[_pT, _v],
|
|
553
|
+
[0, 0]
|
|
554
|
+
];
|
|
555
|
+
exports.AWSResources$ = [3, n0, _AWSR,
|
|
556
|
+
0,
|
|
557
|
+
[_vp, _lG, _sB, _sA, _lFA, _iRa],
|
|
558
|
+
[() => VpcConfigs, 64 | 0, 64 | 0, 64 | 0, 64 | 0, 64 | 0]
|
|
559
|
+
];
|
|
560
|
+
exports.BatchDeletePentestsInput$ = [3, n0, _BDPI,
|
|
561
|
+
0,
|
|
562
|
+
[_pI, _aSI],
|
|
563
|
+
[64 | 0, 0], 2
|
|
564
|
+
];
|
|
565
|
+
exports.BatchDeletePentestsOutput$ = [3, n0, _BDPO,
|
|
566
|
+
0,
|
|
567
|
+
[_de, _f],
|
|
568
|
+
[() => PentestList, () => DeletePentestFailureList]
|
|
569
|
+
];
|
|
570
|
+
exports.BatchGetAgentSpacesInput$ = [3, n0, _BGASI,
|
|
571
|
+
0,
|
|
572
|
+
[_aSIg],
|
|
573
|
+
[64 | 0], 1
|
|
574
|
+
];
|
|
575
|
+
exports.BatchGetAgentSpacesOutput$ = [3, n0, _BGASO,
|
|
576
|
+
0,
|
|
577
|
+
[_aS, _nF],
|
|
578
|
+
[() => AgentSpaceList, 64 | 0]
|
|
579
|
+
];
|
|
580
|
+
exports.BatchGetArtifactMetadataInput$ = [3, n0, _BGAMI,
|
|
581
|
+
0,
|
|
582
|
+
[_aSI, _aIr],
|
|
583
|
+
[0, 64 | 0], 2
|
|
584
|
+
];
|
|
585
|
+
exports.BatchGetArtifactMetadataOutput$ = [3, n0, _BGAMO,
|
|
586
|
+
0,
|
|
587
|
+
[_aML],
|
|
588
|
+
[() => ArtifactMetadataList], 1
|
|
589
|
+
];
|
|
590
|
+
exports.BatchGetFindingsInput$ = [3, n0, _BGFI,
|
|
591
|
+
0,
|
|
592
|
+
[_fI, _aSI],
|
|
593
|
+
[64 | 0, 0], 2
|
|
594
|
+
];
|
|
595
|
+
exports.BatchGetFindingsOutput$ = [3, n0, _BGFO,
|
|
596
|
+
0,
|
|
597
|
+
[_fi, _nF],
|
|
598
|
+
[() => FindingList, 64 | 0]
|
|
599
|
+
];
|
|
600
|
+
exports.BatchGetPentestJobsInput$ = [3, n0, _BGPJI,
|
|
601
|
+
0,
|
|
602
|
+
[_pJI, _aSI],
|
|
603
|
+
[64 | 0, 0], 2
|
|
604
|
+
];
|
|
605
|
+
exports.BatchGetPentestJobsOutput$ = [3, n0, _BGPJO,
|
|
606
|
+
0,
|
|
607
|
+
[_pJ, _nF],
|
|
608
|
+
[() => PentestJobList, 64 | 0]
|
|
609
|
+
];
|
|
610
|
+
exports.BatchGetPentestJobTasksInput$ = [3, n0, _BGPJTI,
|
|
611
|
+
0,
|
|
612
|
+
[_aSI, _tI],
|
|
613
|
+
[0, 64 | 0], 2
|
|
614
|
+
];
|
|
615
|
+
exports.BatchGetPentestJobTasksOutput$ = [3, n0, _BGPJTO,
|
|
616
|
+
0,
|
|
617
|
+
[_ta, _nF],
|
|
618
|
+
[() => TaskList, 64 | 0]
|
|
619
|
+
];
|
|
620
|
+
exports.BatchGetPentestsInput$ = [3, n0, _BGPI,
|
|
621
|
+
0,
|
|
622
|
+
[_pI, _aSI],
|
|
623
|
+
[64 | 0, 0], 2
|
|
624
|
+
];
|
|
625
|
+
exports.BatchGetPentestsOutput$ = [3, n0, _BGPO,
|
|
626
|
+
0,
|
|
627
|
+
[_p, _nF],
|
|
628
|
+
[() => PentestList, 64 | 0]
|
|
629
|
+
];
|
|
630
|
+
exports.BatchGetTargetDomainsInput$ = [3, n0, _BGTDI,
|
|
631
|
+
0,
|
|
632
|
+
[_tDI],
|
|
633
|
+
[64 | 0], 1
|
|
634
|
+
];
|
|
635
|
+
exports.BatchGetTargetDomainsOutput$ = [3, n0, _BGTDO,
|
|
636
|
+
0,
|
|
637
|
+
[_tD, _nF],
|
|
638
|
+
[() => TargetDomainList, 64 | 0]
|
|
639
|
+
];
|
|
640
|
+
exports.Category$ = [3, n0, _C,
|
|
641
|
+
0,
|
|
642
|
+
[_n, _iP],
|
|
643
|
+
[0, 2]
|
|
644
|
+
];
|
|
645
|
+
exports.CloudWatchLog$ = [3, n0, _CWL,
|
|
646
|
+
0,
|
|
647
|
+
[_lGo, _lS],
|
|
648
|
+
[0, 0]
|
|
649
|
+
];
|
|
650
|
+
exports.CodeRemediationTask$ = [3, n0, _CRT,
|
|
651
|
+
0,
|
|
652
|
+
[_st, _sR, _tDa],
|
|
653
|
+
[0, 0, () => CodeRemediationTaskDetailsList], 1
|
|
654
|
+
];
|
|
655
|
+
exports.CodeRemediationTaskDetails$ = [3, n0, _CRTD,
|
|
656
|
+
0,
|
|
657
|
+
[_rN, _cDL, _pRL],
|
|
658
|
+
[0, 0, 0]
|
|
659
|
+
];
|
|
660
|
+
exports.CodeReviewSettings$ = [3, n0, _CRS,
|
|
661
|
+
0,
|
|
662
|
+
[_cS, _gPS],
|
|
663
|
+
[2, 2], 2
|
|
664
|
+
];
|
|
665
|
+
exports.CreateAgentSpaceInput$ = [3, n0, _CASI,
|
|
666
|
+
0,
|
|
667
|
+
[_n, _d, _aR, _tDI, _cRS, _kKI, _tag],
|
|
668
|
+
[0, 0, () => exports.AWSResources$, 64 | 0, () => exports.CodeReviewSettings$, 0, 128 | 0], 1
|
|
669
|
+
];
|
|
670
|
+
exports.CreateAgentSpaceOutput$ = [3, n0, _CASO,
|
|
671
|
+
0,
|
|
672
|
+
[_aSI, _n, _d, _aR, _tDI, _cRS, _kKI, _cA, _uA],
|
|
673
|
+
[0, 0, 0, () => exports.AWSResources$, 64 | 0, () => exports.CodeReviewSettings$, 0, 5, 5], 2
|
|
674
|
+
];
|
|
675
|
+
exports.CreateApplicationRequest$ = [3, n0, _CAR,
|
|
676
|
+
0,
|
|
677
|
+
[_iIA, _rA, _dKKI, _tag],
|
|
678
|
+
[0, 0, 0, 128 | 0]
|
|
679
|
+
];
|
|
680
|
+
exports.CreateApplicationResponse$ = [3, n0, _CARr,
|
|
681
|
+
0,
|
|
682
|
+
[_aIp],
|
|
683
|
+
[0], 1
|
|
684
|
+
];
|
|
685
|
+
exports.CreateIntegrationInput$ = [3, n0, _CII,
|
|
686
|
+
0,
|
|
687
|
+
[_pr, _in, _iDN, _kKI, _tag],
|
|
688
|
+
[0, () => exports.ProviderInput$, 0, 0, 128 | 0], 3
|
|
689
|
+
];
|
|
690
|
+
exports.CreateIntegrationOutput$ = [3, n0, _CIO,
|
|
691
|
+
0,
|
|
692
|
+
[_iI],
|
|
693
|
+
[0], 1
|
|
694
|
+
];
|
|
695
|
+
exports.CreateMembershipRequest$ = [3, n0, _CMR,
|
|
696
|
+
0,
|
|
697
|
+
[_aIp, _aSI, _mI, _mT, _con],
|
|
698
|
+
[0, 0, 0, 0, () => exports.MembershipConfig$], 4
|
|
699
|
+
];
|
|
700
|
+
exports.CreateMembershipResponse$ = [3, n0, _CMRr,
|
|
701
|
+
0,
|
|
702
|
+
[],
|
|
703
|
+
[]
|
|
704
|
+
];
|
|
705
|
+
exports.CreatePentestInput$ = [3, n0, _CPI,
|
|
706
|
+
0,
|
|
707
|
+
[_ti, _aSI, _as, _eRT, _sRe, _lC, _vC, _nTC, _cRSo],
|
|
708
|
+
[0, 0, () => exports.Assets$, 64 | 0, 0, () => exports.CloudWatchLog$, () => exports.VpcConfig$, () => exports.NetworkTrafficConfig$, 0], 2
|
|
709
|
+
];
|
|
710
|
+
exports.CreatePentestOutput$ = [3, n0, _CPO,
|
|
711
|
+
0,
|
|
712
|
+
[_pIe, _ti, _cA, _uA, _as, _eRT, _sRe, _lC, _aSI],
|
|
713
|
+
[0, 0, 5, 5, () => exports.Assets$, 64 | 0, 0, () => exports.CloudWatchLog$, 0]
|
|
714
|
+
];
|
|
715
|
+
exports.CreateTargetDomainInput$ = [3, n0, _CTDI,
|
|
716
|
+
0,
|
|
717
|
+
[_tDN, _vM, _tag],
|
|
718
|
+
[0, 0, 128 | 0], 2
|
|
719
|
+
];
|
|
720
|
+
exports.CreateTargetDomainOutput$ = [3, n0, _CTDO,
|
|
721
|
+
0,
|
|
722
|
+
[_tDIa, _dN, _vS, _vD, _cA, _vA],
|
|
723
|
+
[0, 0, 0, () => exports.VerificationDetails$, 5, 5], 3
|
|
724
|
+
];
|
|
725
|
+
exports.CustomHeader$ = [3, n0, _CH,
|
|
726
|
+
0,
|
|
727
|
+
[_n, _v],
|
|
728
|
+
[0, 0]
|
|
729
|
+
];
|
|
730
|
+
exports.DeleteAgentSpaceInput$ = [3, n0, _DASI,
|
|
731
|
+
0,
|
|
732
|
+
[_aSI],
|
|
733
|
+
[0], 1
|
|
734
|
+
];
|
|
735
|
+
exports.DeleteAgentSpaceOutput$ = [3, n0, _DASO,
|
|
736
|
+
0,
|
|
737
|
+
[_aSI],
|
|
738
|
+
[0]
|
|
739
|
+
];
|
|
740
|
+
exports.DeleteApplicationRequest$ = [3, n0, _DAR,
|
|
741
|
+
0,
|
|
742
|
+
[_aIp],
|
|
743
|
+
[0], 1
|
|
744
|
+
];
|
|
745
|
+
exports.DeleteArtifactInput$ = [3, n0, _DAI,
|
|
746
|
+
0,
|
|
747
|
+
[_aSI, _aI],
|
|
748
|
+
[0, 0], 2
|
|
749
|
+
];
|
|
750
|
+
exports.DeleteArtifactOutput$ = [3, n0, _DAO,
|
|
751
|
+
0,
|
|
752
|
+
[],
|
|
753
|
+
[]
|
|
754
|
+
];
|
|
755
|
+
exports.DeleteIntegrationInput$ = [3, n0, _DII,
|
|
756
|
+
0,
|
|
757
|
+
[_iI],
|
|
758
|
+
[0], 1
|
|
759
|
+
];
|
|
760
|
+
exports.DeleteIntegrationOutput$ = [3, n0, _DIO,
|
|
761
|
+
0,
|
|
762
|
+
[],
|
|
763
|
+
[]
|
|
764
|
+
];
|
|
765
|
+
exports.DeleteMembershipRequest$ = [3, n0, _DMR,
|
|
766
|
+
0,
|
|
767
|
+
[_aIp, _aSI, _mI, _mT],
|
|
768
|
+
[0, 0, 0, 0], 3
|
|
769
|
+
];
|
|
770
|
+
exports.DeleteMembershipResponse$ = [3, n0, _DMRe,
|
|
771
|
+
0,
|
|
772
|
+
[],
|
|
773
|
+
[]
|
|
774
|
+
];
|
|
775
|
+
exports.DeletePentestFailure$ = [3, n0, _DPF,
|
|
776
|
+
0,
|
|
777
|
+
[_pIe, _r],
|
|
778
|
+
[0, 0]
|
|
779
|
+
];
|
|
780
|
+
exports.DeleteTargetDomainInput$ = [3, n0, _DTDI,
|
|
781
|
+
0,
|
|
782
|
+
[_tDIa],
|
|
783
|
+
[0], 1
|
|
784
|
+
];
|
|
785
|
+
exports.DeleteTargetDomainOutput$ = [3, n0, _DTDO,
|
|
786
|
+
0,
|
|
787
|
+
[_tDIa],
|
|
788
|
+
[0]
|
|
789
|
+
];
|
|
790
|
+
exports.DiscoveredEndpoint$ = [3, n0, _DE,
|
|
791
|
+
0,
|
|
792
|
+
[_ur, _pJIe, _tIa, _aSI, _ev, _o, _d],
|
|
793
|
+
[0, 0, 0, 0, 0, 0, 0], 4
|
|
794
|
+
];
|
|
795
|
+
exports.DnsVerification$ = [3, n0, _DV,
|
|
796
|
+
0,
|
|
797
|
+
[_to, _dRN, _dRT],
|
|
798
|
+
[0, 0, 0]
|
|
799
|
+
];
|
|
800
|
+
exports.DocumentInfo$ = [3, n0, _DI,
|
|
801
|
+
0,
|
|
802
|
+
[_sL, _aI],
|
|
803
|
+
[0, 0]
|
|
804
|
+
];
|
|
805
|
+
exports.Endpoint$ = [3, n0, _E,
|
|
806
|
+
0,
|
|
807
|
+
[_ur],
|
|
808
|
+
[0]
|
|
809
|
+
];
|
|
810
|
+
exports.ErrorInformation$ = [3, n0, _EI,
|
|
811
|
+
0,
|
|
812
|
+
[_cod, _m],
|
|
813
|
+
[0, 0]
|
|
814
|
+
];
|
|
815
|
+
exports.ExecutionContext$ = [3, n0, _EC,
|
|
816
|
+
0,
|
|
817
|
+
[_cT, _cont, _tim],
|
|
818
|
+
[0, 0, 5]
|
|
819
|
+
];
|
|
820
|
+
exports.Finding$ = [3, n0, _F,
|
|
821
|
+
0,
|
|
822
|
+
[_fIi, _aSI, _pIe, _pJIe, _tIa, _n, _d, _st, _rT, _rL, _rS, _re, _conf, _aSt, _cRT, _lUB, _cA, _uA],
|
|
823
|
+
[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, () => exports.CodeRemediationTask$, 0, 5, 5], 2
|
|
824
|
+
];
|
|
825
|
+
exports.FindingSummary$ = [3, n0, _FS,
|
|
826
|
+
0,
|
|
827
|
+
[_fIi, _aSI, _pIe, _pJIe, _n, _st, _rT, _rL, _conf, _cA, _uA],
|
|
828
|
+
[0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5], 2
|
|
829
|
+
];
|
|
830
|
+
exports.GetApplicationRequest$ = [3, n0, _GAR,
|
|
831
|
+
0,
|
|
832
|
+
[_aIp],
|
|
833
|
+
[0], 1
|
|
834
|
+
];
|
|
835
|
+
exports.GetApplicationResponse$ = [3, n0, _GARe,
|
|
836
|
+
0,
|
|
837
|
+
[_aIp, _do, _aN, _iC, _rA, _dKKI],
|
|
838
|
+
[0, 0, 0, () => exports.IdCConfiguration$, 0, 0], 2
|
|
839
|
+
];
|
|
840
|
+
exports.GetArtifactInput$ = [3, n0, _GAI,
|
|
841
|
+
0,
|
|
842
|
+
[_aSI, _aI],
|
|
843
|
+
[0, 0], 2
|
|
844
|
+
];
|
|
845
|
+
exports.GetArtifactOutput$ = [3, n0, _GAO,
|
|
846
|
+
0,
|
|
847
|
+
[_aSI, _aI, _ar, _fN, _uA],
|
|
848
|
+
[0, 0, () => exports.Artifact$, 0, 5], 5
|
|
849
|
+
];
|
|
850
|
+
exports.GetIntegrationInput$ = [3, n0, _GII,
|
|
851
|
+
0,
|
|
852
|
+
[_iI],
|
|
853
|
+
[0], 1
|
|
854
|
+
];
|
|
855
|
+
exports.GetIntegrationOutput$ = [3, n0, _GIO,
|
|
856
|
+
0,
|
|
857
|
+
[_iI, _iIn, _pr, _pT, _dNi, _kKI],
|
|
858
|
+
[0, 0, 0, 0, 0, 0], 4
|
|
859
|
+
];
|
|
860
|
+
exports.GitHubIntegrationInput$ = [3, n0, _GHII,
|
|
861
|
+
0,
|
|
862
|
+
[_cod, _sta, _oN],
|
|
863
|
+
[0, 0, 0], 2
|
|
864
|
+
];
|
|
865
|
+
exports.GitHubRepositoryMetadata$ = [3, n0, _GHRM,
|
|
866
|
+
0,
|
|
867
|
+
[_n, _pRI, _ow, _aTc],
|
|
868
|
+
[0, 0, 0, 0], 3
|
|
869
|
+
];
|
|
870
|
+
exports.GitHubRepositoryResource$ = [3, n0, _GHRR,
|
|
871
|
+
0,
|
|
872
|
+
[_n, _ow],
|
|
873
|
+
[0, 0], 2
|
|
874
|
+
];
|
|
875
|
+
exports.GitHubResourceCapabilities$ = [3, n0, _GHRC,
|
|
876
|
+
0,
|
|
877
|
+
[_lCe, _rC],
|
|
878
|
+
[2, 2]
|
|
879
|
+
];
|
|
880
|
+
exports.HttpVerification$ = [3, n0, _HV,
|
|
881
|
+
0,
|
|
882
|
+
[_to, _rP],
|
|
883
|
+
[0, 0]
|
|
884
|
+
];
|
|
885
|
+
exports.IdCConfiguration$ = [3, n0, _ICC,
|
|
886
|
+
0,
|
|
887
|
+
[_iAA, _iIA],
|
|
888
|
+
[0, 0]
|
|
889
|
+
];
|
|
890
|
+
exports.InitiateProviderRegistrationInput$ = [3, n0, _IPRI,
|
|
891
|
+
0,
|
|
892
|
+
[_pr],
|
|
893
|
+
[0], 1
|
|
894
|
+
];
|
|
895
|
+
exports.InitiateProviderRegistrationOutput$ = [3, n0, _IPRO,
|
|
896
|
+
0,
|
|
897
|
+
[_rTe, _cSs],
|
|
898
|
+
[0, 0], 2
|
|
899
|
+
];
|
|
900
|
+
exports.IntegratedRepository$ = [3, n0, _IR,
|
|
901
|
+
0,
|
|
902
|
+
[_iI, _pRI],
|
|
903
|
+
[0, 0], 2
|
|
904
|
+
];
|
|
905
|
+
exports.IntegratedResourceInputItem$ = [3, n0, _IRII,
|
|
906
|
+
0,
|
|
907
|
+
[_res, _ca],
|
|
908
|
+
[() => exports.IntegratedResource$, () => exports.ProviderResourceCapabilities$], 1
|
|
909
|
+
];
|
|
910
|
+
exports.IntegratedResourceSummary$ = [3, n0, _IRS,
|
|
911
|
+
0,
|
|
912
|
+
[_iI, _res, _ca],
|
|
913
|
+
[0, () => exports.IntegratedResourceMetadata$, () => exports.ProviderResourceCapabilities$], 2
|
|
914
|
+
];
|
|
915
|
+
exports.IntegrationSummary$ = [3, n0, _IS,
|
|
916
|
+
0,
|
|
917
|
+
[_iI, _iIn, _pr, _pT, _dNi],
|
|
918
|
+
[0, 0, 0, 0, 0], 5
|
|
919
|
+
];
|
|
920
|
+
exports.ListAgentSpacesInput$ = [3, n0, _LASI,
|
|
921
|
+
0,
|
|
922
|
+
[_nT, _mR],
|
|
923
|
+
[0, 1]
|
|
924
|
+
];
|
|
925
|
+
exports.ListAgentSpacesOutput$ = [3, n0, _LASO,
|
|
926
|
+
0,
|
|
927
|
+
[_aSS, _nT],
|
|
928
|
+
[() => AgentSpaceSummaryList, 0]
|
|
929
|
+
];
|
|
930
|
+
exports.ListApplicationsRequest$ = [3, n0, _LAR,
|
|
931
|
+
0,
|
|
932
|
+
[_nT, _mR],
|
|
933
|
+
[0, 1]
|
|
934
|
+
];
|
|
935
|
+
exports.ListApplicationsResponse$ = [3, n0, _LARi,
|
|
936
|
+
0,
|
|
937
|
+
[_aSp, _nT],
|
|
938
|
+
[() => ApplicationSummaryList, 0], 1
|
|
939
|
+
];
|
|
940
|
+
exports.ListArtifactsInput$ = [3, n0, _LAI,
|
|
941
|
+
0,
|
|
942
|
+
[_aSI, _nT, _mR],
|
|
943
|
+
[0, 0, 1], 1
|
|
944
|
+
];
|
|
945
|
+
exports.ListArtifactsOutput$ = [3, n0, _LAO,
|
|
946
|
+
0,
|
|
947
|
+
[_aSr, _nT],
|
|
948
|
+
[() => ArtifactSummaryList, 0], 1
|
|
949
|
+
];
|
|
950
|
+
exports.ListDiscoveredEndpointsInput$ = [3, n0, _LDEI,
|
|
951
|
+
0,
|
|
952
|
+
[_pJIe, _aSI, _mR, _pre, _nT],
|
|
953
|
+
[0, 0, 1, 0, 0], 2
|
|
954
|
+
];
|
|
955
|
+
exports.ListDiscoveredEndpointsOutput$ = [3, n0, _LDEO,
|
|
956
|
+
0,
|
|
957
|
+
[_dE, _nT],
|
|
958
|
+
[() => DiscoveredEndpointList, 0]
|
|
959
|
+
];
|
|
960
|
+
exports.ListFindingsInput$ = [3, n0, _LFI,
|
|
961
|
+
0,
|
|
962
|
+
[_pJIe, _aSI, _mR, _nT, _rT, _rL, _st, _conf, _n],
|
|
963
|
+
[0, 0, 1, 0, 0, 0, 0, 0, 0], 2
|
|
964
|
+
];
|
|
965
|
+
exports.ListFindingsOutput$ = [3, n0, _LFO,
|
|
966
|
+
0,
|
|
967
|
+
[_fS, _nT],
|
|
968
|
+
[() => FindingSummaryList, 0]
|
|
969
|
+
];
|
|
970
|
+
exports.ListIntegratedResourcesInput$ = [3, n0, _LIRI,
|
|
971
|
+
0,
|
|
972
|
+
[_aSI, _iI, _rTes, _nT, _mR],
|
|
973
|
+
[0, 0, 0, 0, 1], 1
|
|
974
|
+
];
|
|
975
|
+
exports.ListIntegratedResourcesOutput$ = [3, n0, _LIRO,
|
|
976
|
+
0,
|
|
977
|
+
[_iRS, _nT],
|
|
978
|
+
[() => IntegratedResourceSummaryList, 0], 1
|
|
979
|
+
];
|
|
980
|
+
exports.ListIntegrationsInput$ = [3, n0, _LII,
|
|
981
|
+
0,
|
|
982
|
+
[_fil, _nT, _mR],
|
|
983
|
+
[() => exports.IntegrationFilter$, 0, 1]
|
|
984
|
+
];
|
|
985
|
+
exports.ListIntegrationsOutput$ = [3, n0, _LIO,
|
|
986
|
+
0,
|
|
987
|
+
[_iS, _nT],
|
|
988
|
+
[() => IntegrationSummaryList, 0], 1
|
|
989
|
+
];
|
|
990
|
+
exports.ListMembershipsRequest$ = [3, n0, _LMR,
|
|
991
|
+
0,
|
|
992
|
+
[_aIp, _aSI, _mT, _mR, _nT],
|
|
993
|
+
[0, 0, 0, 1, 0], 2
|
|
994
|
+
];
|
|
995
|
+
exports.ListMembershipsResponse$ = [3, n0, _LMRi,
|
|
996
|
+
0,
|
|
997
|
+
[_mS, _nT],
|
|
998
|
+
[() => MembershipSummaryList, 0], 1
|
|
999
|
+
];
|
|
1000
|
+
exports.ListPentestJobsForPentestInput$ = [3, n0, _LPJFPI,
|
|
1001
|
+
0,
|
|
1002
|
+
[_pIe, _aSI, _mR, _nT],
|
|
1003
|
+
[0, 0, 1, 0], 2
|
|
1004
|
+
];
|
|
1005
|
+
exports.ListPentestJobsForPentestOutput$ = [3, n0, _LPJFPO,
|
|
1006
|
+
0,
|
|
1007
|
+
[_pJS, _nT],
|
|
1008
|
+
[() => PentestJobSummaryList, 0]
|
|
1009
|
+
];
|
|
1010
|
+
exports.ListPentestJobTasksInput$ = [3, n0, _LPJTI,
|
|
1011
|
+
0,
|
|
1012
|
+
[_aSI, _mR, _pJIe, _sN, _cN, _nT],
|
|
1013
|
+
[0, 1, 0, 0, 0, 0], 1
|
|
1014
|
+
];
|
|
1015
|
+
exports.ListPentestJobTasksOutput$ = [3, n0, _LPJTO,
|
|
1016
|
+
0,
|
|
1017
|
+
[_tS, _nT],
|
|
1018
|
+
[() => TaskSummaryList, 0]
|
|
1019
|
+
];
|
|
1020
|
+
exports.ListPentestsInput$ = [3, n0, _LPI,
|
|
1021
|
+
0,
|
|
1022
|
+
[_aSI, _mR, _nT],
|
|
1023
|
+
[0, 1, 0], 1
|
|
1024
|
+
];
|
|
1025
|
+
exports.ListPentestsOutput$ = [3, n0, _LPO,
|
|
1026
|
+
0,
|
|
1027
|
+
[_pS, _nT],
|
|
1028
|
+
[() => PentestSummaryList, 0]
|
|
1029
|
+
];
|
|
1030
|
+
exports.ListTagsForResourceInput$ = [3, n0, _LTFRI,
|
|
1031
|
+
0,
|
|
1032
|
+
[_rAe],
|
|
1033
|
+
[[0, 1]], 1
|
|
1034
|
+
];
|
|
1035
|
+
exports.ListTagsForResourceOutput$ = [3, n0, _LTFRO,
|
|
1036
|
+
0,
|
|
1037
|
+
[_tag],
|
|
1038
|
+
[128 | 0]
|
|
1039
|
+
];
|
|
1040
|
+
exports.ListTargetDomainsInput$ = [3, n0, _LTDI,
|
|
1041
|
+
0,
|
|
1042
|
+
[_nT, _mR],
|
|
1043
|
+
[0, 1]
|
|
1044
|
+
];
|
|
1045
|
+
exports.ListTargetDomainsOutput$ = [3, n0, _LTDO,
|
|
1046
|
+
0,
|
|
1047
|
+
[_tDS, _nT],
|
|
1048
|
+
[() => TargetDomainSummaryList, 0]
|
|
1049
|
+
];
|
|
1050
|
+
exports.LogLocation$ = [3, n0, _LL,
|
|
1051
|
+
0,
|
|
1052
|
+
[_lT, _cWL],
|
|
1053
|
+
[0, () => exports.CloudWatchLog$]
|
|
1054
|
+
];
|
|
1055
|
+
exports.MembershipSummary$ = [3, n0, _MS,
|
|
1056
|
+
0,
|
|
1057
|
+
[_mI, _aIp, _aSI, _mT, _cA, _uA, _cB, _uB, _con, _me],
|
|
1058
|
+
[0, 0, 0, 0, 5, 5, 0, 0, () => exports.MembershipConfig$, () => exports.MemberMetadata$], 8
|
|
1059
|
+
];
|
|
1060
|
+
exports.NetworkTrafficConfig$ = [3, n0, _NTC,
|
|
1061
|
+
0,
|
|
1062
|
+
[_ru, _cH],
|
|
1063
|
+
[() => NetworkTrafficRuleList, () => CustomHeaderList]
|
|
1064
|
+
];
|
|
1065
|
+
exports.NetworkTrafficRule$ = [3, n0, _NTR,
|
|
1066
|
+
0,
|
|
1067
|
+
[_ef, _pa, _nTRT],
|
|
1068
|
+
[0, 0, 0]
|
|
1069
|
+
];
|
|
1070
|
+
exports.Pentest$ = [3, n0, _P,
|
|
1071
|
+
0,
|
|
1072
|
+
[_pIe, _aSI, _ti, _as, _eRT, _sRe, _lC, _vC, _nTC, _cRSo, _cA, _uA],
|
|
1073
|
+
[0, 0, 0, () => exports.Assets$, 64 | 0, 0, () => exports.CloudWatchLog$, () => exports.VpcConfig$, () => exports.NetworkTrafficConfig$, 0, 5, 5], 4
|
|
1074
|
+
];
|
|
1075
|
+
exports.PentestJob$ = [3, n0, _PJ,
|
|
1076
|
+
0,
|
|
1077
|
+
[_pJIe, _pIe, _ti, _ov, _st, _en, _ac, _doc, _sCo, _eP, _aD, _eRT, _ste, _eC, _sRe, _lC, _vC, _nTC, _eI, _iR, _cRSo, _cA, _uA],
|
|
1078
|
+
[0, 0, 0, 0, 0, () => EndpointList, () => ActorList, () => DocumentList, () => SourceCodeRepositoryList, () => EndpointList, () => EndpointList, 64 | 0, () => StepList, () => ExecutionContextList, 0, () => exports.CloudWatchLog$, () => exports.VpcConfig$, () => exports.NetworkTrafficConfig$, () => exports.ErrorInformation$, () => IntegratedRepositoryList, 0, 5, 5]
|
|
1079
|
+
];
|
|
1080
|
+
exports.PentestJobSummary$ = [3, n0, _PJS,
|
|
1081
|
+
0,
|
|
1082
|
+
[_pJIe, _pIe, _ti, _st, _cA, _uA],
|
|
1083
|
+
[0, 0, 0, 0, 5, 5], 2
|
|
1084
|
+
];
|
|
1085
|
+
exports.PentestSummary$ = [3, n0, _PS,
|
|
1086
|
+
0,
|
|
1087
|
+
[_pIe, _aSI, _ti, _cA, _uA],
|
|
1088
|
+
[0, 0, 0, 5, 5], 3
|
|
1089
|
+
];
|
|
1090
|
+
exports.SourceCodeRepository$ = [3, n0, _SCR,
|
|
1091
|
+
0,
|
|
1092
|
+
[_sL],
|
|
1093
|
+
[0]
|
|
1094
|
+
];
|
|
1095
|
+
exports.StartCodeRemediationInput$ = [3, n0, _SCRI,
|
|
1096
|
+
0,
|
|
1097
|
+
[_aSI, _pJIe, _fI],
|
|
1098
|
+
[0, 0, 64 | 0], 3
|
|
1099
|
+
];
|
|
1100
|
+
exports.StartCodeRemediationOutput$ = [3, n0, _SCRO,
|
|
1101
|
+
0,
|
|
1102
|
+
[],
|
|
1103
|
+
[]
|
|
1104
|
+
];
|
|
1105
|
+
exports.StartPentestJobInput$ = [3, n0, _SPJI,
|
|
1106
|
+
0,
|
|
1107
|
+
[_aSI, _pIe],
|
|
1108
|
+
[0, 0], 2
|
|
1109
|
+
];
|
|
1110
|
+
exports.StartPentestJobOutput$ = [3, n0, _SPJO,
|
|
1111
|
+
0,
|
|
1112
|
+
[_ti, _st, _cA, _uA, _pIe, _pJIe, _aSI],
|
|
1113
|
+
[0, 0, 5, 5, 0, 0, 0]
|
|
1114
|
+
];
|
|
1115
|
+
exports.Step$ = [3, n0, _S,
|
|
1116
|
+
0,
|
|
1117
|
+
[_n, _st, _cA, _uA],
|
|
1118
|
+
[0, 0, 5, 5]
|
|
1119
|
+
];
|
|
1120
|
+
exports.StopPentestJobInput$ = [3, n0, _SPJIt,
|
|
1121
|
+
0,
|
|
1122
|
+
[_aSI, _pJIe],
|
|
1123
|
+
[0, 0], 2
|
|
1124
|
+
];
|
|
1125
|
+
exports.StopPentestJobOutput$ = [3, n0, _SPJOt,
|
|
1126
|
+
0,
|
|
1127
|
+
[],
|
|
1128
|
+
[]
|
|
1129
|
+
];
|
|
1130
|
+
exports.TagResourceInput$ = [3, n0, _TRI,
|
|
1131
|
+
0,
|
|
1132
|
+
[_rAe, _tag],
|
|
1133
|
+
[[0, 1], 128 | 0], 2
|
|
1134
|
+
];
|
|
1135
|
+
exports.TagResourceOutput$ = [3, n0, _TRO,
|
|
1136
|
+
0,
|
|
1137
|
+
[],
|
|
1138
|
+
[]
|
|
1139
|
+
];
|
|
1140
|
+
exports.TargetDomain$ = [3, n0, _TD,
|
|
1141
|
+
0,
|
|
1142
|
+
[_tDIa, _dN, _vS, _vD, _cA, _vA],
|
|
1143
|
+
[0, 0, 0, () => exports.VerificationDetails$, 5, 5], 2
|
|
1144
|
+
];
|
|
1145
|
+
exports.TargetDomainSummary$ = [3, n0, _TDS,
|
|
1146
|
+
0,
|
|
1147
|
+
[_tDIa, _dN, _vS],
|
|
1148
|
+
[0, 0, 0], 2
|
|
1149
|
+
];
|
|
1150
|
+
exports.Task$ = [3, n0, _T,
|
|
1151
|
+
0,
|
|
1152
|
+
[_tIa, _pIe, _pJIe, _aSI, _ti, _d, _cat, _rT, _tE, _eS, _lL, _cA, _uA],
|
|
1153
|
+
[0, 0, 0, 0, 0, 0, () => CategoryList, 0, () => exports.Endpoint$, 0, () => exports.LogLocation$, 5, 5], 1
|
|
1154
|
+
];
|
|
1155
|
+
exports.TaskSummary$ = [3, n0, _TS,
|
|
1156
|
+
0,
|
|
1157
|
+
[_tIa, _pIe, _pJIe, _aSI, _ti, _rT, _eS, _cA, _uA],
|
|
1158
|
+
[0, 0, 0, 0, 0, 0, 0, 5, 5], 1
|
|
1159
|
+
];
|
|
1160
|
+
exports.UntagResourceInput$ = [3, n0, _URI,
|
|
1161
|
+
0,
|
|
1162
|
+
[_rAe, _tK],
|
|
1163
|
+
[[0, 1], [64 | 0, { [_hQ]: _tK }]], 2
|
|
1164
|
+
];
|
|
1165
|
+
exports.UntagResourceOutput$ = [3, n0, _URO,
|
|
1166
|
+
0,
|
|
1167
|
+
[],
|
|
1168
|
+
[]
|
|
1169
|
+
];
|
|
1170
|
+
exports.UpdateAgentSpaceInput$ = [3, n0, _UASI,
|
|
1171
|
+
0,
|
|
1172
|
+
[_aSI, _n, _d, _aR, _tDI, _cRS],
|
|
1173
|
+
[0, 0, 0, () => exports.AWSResources$, 64 | 0, () => exports.CodeReviewSettings$], 1
|
|
1174
|
+
];
|
|
1175
|
+
exports.UpdateAgentSpaceOutput$ = [3, n0, _UASO,
|
|
1176
|
+
0,
|
|
1177
|
+
[_aSI, _n, _d, _aR, _tDI, _cRS, _cA, _uA],
|
|
1178
|
+
[0, 0, 0, () => exports.AWSResources$, 64 | 0, () => exports.CodeReviewSettings$, 5, 5], 2
|
|
1179
|
+
];
|
|
1180
|
+
exports.UpdateApplicationRequest$ = [3, n0, _UAR,
|
|
1181
|
+
0,
|
|
1182
|
+
[_aIp, _rA, _dKKI],
|
|
1183
|
+
[0, 0, 0], 1
|
|
1184
|
+
];
|
|
1185
|
+
exports.UpdateApplicationResponse$ = [3, n0, _UARp,
|
|
1186
|
+
0,
|
|
1187
|
+
[_aIp],
|
|
1188
|
+
[0], 1
|
|
1189
|
+
];
|
|
1190
|
+
exports.UpdateFindingInput$ = [3, n0, _UFI,
|
|
1191
|
+
0,
|
|
1192
|
+
[_fIi, _aSI, _rL, _st],
|
|
1193
|
+
[0, 0, 0, 0], 2
|
|
1194
|
+
];
|
|
1195
|
+
exports.UpdateFindingOutput$ = [3, n0, _UFO,
|
|
1196
|
+
0,
|
|
1197
|
+
[],
|
|
1198
|
+
[]
|
|
1199
|
+
];
|
|
1200
|
+
exports.UpdateIntegratedResourcesInput$ = [3, n0, _UIRI,
|
|
1201
|
+
0,
|
|
1202
|
+
[_aSI, _iI, _it],
|
|
1203
|
+
[0, 0, () => IntegratedResourceInputItemList], 3
|
|
1204
|
+
];
|
|
1205
|
+
exports.UpdateIntegratedResourcesOutput$ = [3, n0, _UIRO,
|
|
1206
|
+
0,
|
|
1207
|
+
[],
|
|
1208
|
+
[]
|
|
1209
|
+
];
|
|
1210
|
+
exports.UpdatePentestInput$ = [3, n0, _UPI,
|
|
1211
|
+
0,
|
|
1212
|
+
[_pIe, _aSI, _ti, _as, _eRT, _sRe, _lC, _vC, _nTC, _cRSo],
|
|
1213
|
+
[0, 0, 0, () => exports.Assets$, 64 | 0, 0, () => exports.CloudWatchLog$, () => exports.VpcConfig$, () => exports.NetworkTrafficConfig$, 0], 2
|
|
1214
|
+
];
|
|
1215
|
+
exports.UpdatePentestOutput$ = [3, n0, _UPO,
|
|
1216
|
+
0,
|
|
1217
|
+
[_pIe, _ti, _cA, _uA, _as, _eRT, _sRe, _lC, _aSI],
|
|
1218
|
+
[0, 0, 5, 5, () => exports.Assets$, 64 | 0, 0, () => exports.CloudWatchLog$, 0]
|
|
1219
|
+
];
|
|
1220
|
+
exports.UpdateTargetDomainInput$ = [3, n0, _UTDI,
|
|
1221
|
+
0,
|
|
1222
|
+
[_tDIa, _vM],
|
|
1223
|
+
[0, 0], 2
|
|
1224
|
+
];
|
|
1225
|
+
exports.UpdateTargetDomainOutput$ = [3, n0, _UTDO,
|
|
1226
|
+
0,
|
|
1227
|
+
[_tDIa, _dN, _vS, _vD, _cA, _vA],
|
|
1228
|
+
[0, 0, 0, () => exports.VerificationDetails$, 5, 5], 3
|
|
1229
|
+
];
|
|
1230
|
+
exports.UserConfig$ = [3, n0, _UC,
|
|
1231
|
+
0,
|
|
1232
|
+
[_ro],
|
|
1233
|
+
[0]
|
|
1234
|
+
];
|
|
1235
|
+
exports.UserMetadata$ = [3, n0, _UM,
|
|
1236
|
+
0,
|
|
1237
|
+
[_us, _em],
|
|
1238
|
+
[0, 0], 2
|
|
1239
|
+
];
|
|
1240
|
+
exports.ValidationExceptionField$ = [3, n0, _VEF,
|
|
1241
|
+
0,
|
|
1242
|
+
[_pat, _m],
|
|
1243
|
+
[0, 0], 2
|
|
1244
|
+
];
|
|
1245
|
+
exports.VerificationDetails$ = [3, n0, _VD,
|
|
1246
|
+
0,
|
|
1247
|
+
[_met, _dT, _hR],
|
|
1248
|
+
[0, () => exports.DnsVerification$, () => exports.HttpVerification$]
|
|
1249
|
+
];
|
|
1250
|
+
exports.VerifyTargetDomainInput$ = [3, n0, _VTDI,
|
|
1251
|
+
0,
|
|
1252
|
+
[_tDIa],
|
|
1253
|
+
[0], 1
|
|
1254
|
+
];
|
|
1255
|
+
exports.VerifyTargetDomainOutput$ = [3, n0, _VTDO,
|
|
1256
|
+
0,
|
|
1257
|
+
[_tDIa, _dN, _cA, _uA, _vA, _st],
|
|
1258
|
+
[0, 0, 5, 5, 5, 0]
|
|
1259
|
+
];
|
|
1260
|
+
exports.VpcConfig$ = [3, n0, _VC,
|
|
1261
|
+
0,
|
|
1262
|
+
[_vAp, _sGA, _sAu],
|
|
1263
|
+
[0, 64 | 0, 64 | 0]
|
|
1264
|
+
];
|
|
1265
|
+
var __Unit = "unit";
|
|
1266
|
+
var ActorList = [1, n0, _AL,
|
|
1267
|
+
0, () => exports.Actor$
|
|
1268
|
+
];
|
|
1269
|
+
var AgentSpaceIdList = 64 | 0;
|
|
1270
|
+
var AgentSpaceList = [1, n0, _ASL,
|
|
1271
|
+
0, () => exports.AgentSpace$
|
|
1272
|
+
];
|
|
1273
|
+
var AgentSpaceSummaryList = [1, n0, _ASSL,
|
|
1274
|
+
0, () => exports.AgentSpaceSummary$
|
|
1275
|
+
];
|
|
1276
|
+
var ApplicationSummaryList = [1, n0, _ASLp,
|
|
1277
|
+
0, () => exports.ApplicationSummary$
|
|
1278
|
+
];
|
|
1279
|
+
var ArtifactIds = 64 | 0;
|
|
1280
|
+
var ArtifactMetadataList = [1, n0, _AML,
|
|
1281
|
+
0, () => exports.ArtifactMetadataItem$
|
|
1282
|
+
];
|
|
1283
|
+
var ArtifactSummaryList = [1, n0, _ASLr,
|
|
1284
|
+
0, () => exports.ArtifactSummary$
|
|
1285
|
+
];
|
|
1286
|
+
var CategoryList = [1, n0, _CL,
|
|
1287
|
+
0, () => exports.Category$
|
|
1288
|
+
];
|
|
1289
|
+
var CodeRemediationTaskDetailsList = [1, n0, _CRTDL,
|
|
1290
|
+
0, () => exports.CodeRemediationTaskDetails$
|
|
1291
|
+
];
|
|
1292
|
+
var CustomHeaderList = [1, n0, _CHL,
|
|
1293
|
+
0, () => exports.CustomHeader$
|
|
1294
|
+
];
|
|
1295
|
+
var DeletePentestFailureList = [1, n0, _DPFL,
|
|
1296
|
+
0, () => exports.DeletePentestFailure$
|
|
1297
|
+
];
|
|
1298
|
+
var DiscoveredEndpointList = [1, n0, _DEL,
|
|
1299
|
+
0, () => exports.DiscoveredEndpoint$
|
|
1300
|
+
];
|
|
1301
|
+
var DocumentList = [1, n0, _DL,
|
|
1302
|
+
0, () => exports.DocumentInfo$
|
|
1303
|
+
];
|
|
1304
|
+
var EndpointList = [1, n0, _EL,
|
|
1305
|
+
0, () => exports.Endpoint$
|
|
1306
|
+
];
|
|
1307
|
+
var ExecutionContextList = [1, n0, _ECL,
|
|
1308
|
+
0, () => exports.ExecutionContext$
|
|
1309
|
+
];
|
|
1310
|
+
var FindingIdList = 64 | 0;
|
|
1311
|
+
var FindingList = [1, n0, _FL,
|
|
1312
|
+
0, () => exports.Finding$
|
|
1313
|
+
];
|
|
1314
|
+
var FindingSummaryList = [1, n0, _FSL,
|
|
1315
|
+
0, () => exports.FindingSummary$
|
|
1316
|
+
];
|
|
1317
|
+
var IamRoles = 64 | 0;
|
|
1318
|
+
var IntegratedRepositoryList = [1, n0, _IRL,
|
|
1319
|
+
0, () => exports.IntegratedRepository$
|
|
1320
|
+
];
|
|
1321
|
+
var IntegratedResourceInputItemList = [1, n0, _IRIIL,
|
|
1322
|
+
0, () => exports.IntegratedResourceInputItem$
|
|
1323
|
+
];
|
|
1324
|
+
var IntegratedResourceSummaryList = [1, n0, _IRSL,
|
|
1325
|
+
0, () => exports.IntegratedResourceSummary$
|
|
1326
|
+
];
|
|
1327
|
+
var IntegrationSummaryList = [1, n0, _ISL,
|
|
1328
|
+
0, () => exports.IntegrationSummary$
|
|
1329
|
+
];
|
|
1330
|
+
var LambdaFunctionArns = 64 | 0;
|
|
1331
|
+
var LogGroupArns = 64 | 0;
|
|
1332
|
+
var MembershipSummaryList = [1, n0, _MSL,
|
|
1333
|
+
0, () => exports.MembershipSummary$
|
|
1334
|
+
];
|
|
1335
|
+
var NetworkTrafficRuleList = [1, n0, _NTRL,
|
|
1336
|
+
0, () => exports.NetworkTrafficRule$
|
|
1337
|
+
];
|
|
1338
|
+
var PentestIdList = 64 | 0;
|
|
1339
|
+
var PentestJobIdList = 64 | 0;
|
|
1340
|
+
var PentestJobList = [1, n0, _PJL,
|
|
1341
|
+
0, () => exports.PentestJob$
|
|
1342
|
+
];
|
|
1343
|
+
var PentestJobSummaryList = [1, n0, _PJSL,
|
|
1344
|
+
0, () => exports.PentestJobSummary$
|
|
1345
|
+
];
|
|
1346
|
+
var PentestList = [1, n0, _PL,
|
|
1347
|
+
0, () => exports.Pentest$
|
|
1348
|
+
];
|
|
1349
|
+
var PentestSummaryList = [1, n0, _PSL,
|
|
1350
|
+
0, () => exports.PentestSummary$
|
|
1351
|
+
];
|
|
1352
|
+
var RiskTypeList = 64 | 0;
|
|
1353
|
+
var S3BucketArns = 64 | 0;
|
|
1354
|
+
var SecretArns = 64 | 0;
|
|
1355
|
+
var SecurityGroupArns = 64 | 0;
|
|
1356
|
+
var SourceCodeRepositoryList = [1, n0, _SCRL,
|
|
1357
|
+
0, () => exports.SourceCodeRepository$
|
|
1358
|
+
];
|
|
1359
|
+
var StepList = [1, n0, _SL,
|
|
1360
|
+
0, () => exports.Step$
|
|
1361
|
+
];
|
|
1362
|
+
var SubnetArns = 64 | 0;
|
|
1363
|
+
var TagKeyList = 64 | 0;
|
|
1364
|
+
var TargetDomainIdList = 64 | 0;
|
|
1365
|
+
var TargetDomainList = [1, n0, _TDL,
|
|
1366
|
+
0, () => exports.TargetDomain$
|
|
1367
|
+
];
|
|
1368
|
+
var TargetDomainSummaryList = [1, n0, _TDSL,
|
|
1369
|
+
0, () => exports.TargetDomainSummary$
|
|
1370
|
+
];
|
|
1371
|
+
var TaskIdList = 64 | 0;
|
|
1372
|
+
var TaskList = [1, n0, _TL,
|
|
1373
|
+
0, () => exports.Task$
|
|
1374
|
+
];
|
|
1375
|
+
var TaskSummaryList = [1, n0, _TSL,
|
|
1376
|
+
0, () => exports.TaskSummary$
|
|
1377
|
+
];
|
|
1378
|
+
var UriList = 64 | 0;
|
|
1379
|
+
var ValidationExceptionFieldList = [1, n0, _VEFL,
|
|
1380
|
+
0, () => exports.ValidationExceptionField$
|
|
1381
|
+
];
|
|
1382
|
+
var VpcConfigs = [1, n0, _VCp,
|
|
1383
|
+
0, () => exports.VpcConfig$
|
|
1384
|
+
];
|
|
1385
|
+
var TagMap = 128 | 0;
|
|
1386
|
+
exports.IntegratedResource$ = [4, n0, _IRn,
|
|
1387
|
+
0,
|
|
1388
|
+
[_gR],
|
|
1389
|
+
[() => exports.GitHubRepositoryResource$]
|
|
1390
|
+
];
|
|
1391
|
+
exports.IntegratedResourceMetadata$ = [4, n0, _IRM,
|
|
1392
|
+
0,
|
|
1393
|
+
[_gR],
|
|
1394
|
+
[() => exports.GitHubRepositoryMetadata$]
|
|
1395
|
+
];
|
|
1396
|
+
exports.IntegrationFilter$ = [4, n0, _IF,
|
|
1397
|
+
0,
|
|
1398
|
+
[_pr, _pT],
|
|
1399
|
+
[0, 0]
|
|
1400
|
+
];
|
|
1401
|
+
exports.MemberMetadata$ = [4, n0, _MM,
|
|
1402
|
+
0,
|
|
1403
|
+
[_use],
|
|
1404
|
+
[() => exports.UserMetadata$]
|
|
1405
|
+
];
|
|
1406
|
+
exports.MembershipConfig$ = [4, n0, _MC,
|
|
1407
|
+
0,
|
|
1408
|
+
[_use],
|
|
1409
|
+
[() => exports.UserConfig$]
|
|
1410
|
+
];
|
|
1411
|
+
exports.ProviderInput$ = [4, n0, _PI,
|
|
1412
|
+
0,
|
|
1413
|
+
[_g],
|
|
1414
|
+
[() => exports.GitHubIntegrationInput$]
|
|
1415
|
+
];
|
|
1416
|
+
exports.ProviderResourceCapabilities$ = [4, n0, _PRC,
|
|
1417
|
+
0,
|
|
1418
|
+
[_g],
|
|
1419
|
+
[() => exports.GitHubResourceCapabilities$]
|
|
1420
|
+
];
|
|
1421
|
+
exports.AddArtifact$ = [9, n0, _AA,
|
|
1422
|
+
{ [_h]: ["POST", "/AddArtifact", 201] }, () => exports.AddArtifactInput$, () => exports.AddArtifactOutput$
|
|
1423
|
+
];
|
|
1424
|
+
exports.BatchDeletePentests$ = [9, n0, _BDP,
|
|
1425
|
+
{ [_h]: ["POST", "/BatchDeletePentests", 200] }, () => exports.BatchDeletePentestsInput$, () => exports.BatchDeletePentestsOutput$
|
|
1426
|
+
];
|
|
1427
|
+
exports.BatchGetAgentSpaces$ = [9, n0, _BGAS,
|
|
1428
|
+
{ [_h]: ["POST", "/BatchGetAgentSpaces", 200] }, () => exports.BatchGetAgentSpacesInput$, () => exports.BatchGetAgentSpacesOutput$
|
|
1429
|
+
];
|
|
1430
|
+
exports.BatchGetArtifactMetadata$ = [9, n0, _BGAM,
|
|
1431
|
+
{ [_h]: ["POST", "/BatchGetArtifactMetadata", 200] }, () => exports.BatchGetArtifactMetadataInput$, () => exports.BatchGetArtifactMetadataOutput$
|
|
1432
|
+
];
|
|
1433
|
+
exports.BatchGetFindings$ = [9, n0, _BGF,
|
|
1434
|
+
{ [_h]: ["POST", "/BatchGetFindings", 200] }, () => exports.BatchGetFindingsInput$, () => exports.BatchGetFindingsOutput$
|
|
1435
|
+
];
|
|
1436
|
+
exports.BatchGetPentestJobs$ = [9, n0, _BGPJ,
|
|
1437
|
+
{ [_h]: ["POST", "/BatchGetPentestJobs", 200] }, () => exports.BatchGetPentestJobsInput$, () => exports.BatchGetPentestJobsOutput$
|
|
1438
|
+
];
|
|
1439
|
+
exports.BatchGetPentestJobTasks$ = [9, n0, _BGPJT,
|
|
1440
|
+
{ [_h]: ["POST", "/BatchGetPentestJobTasks", 200] }, () => exports.BatchGetPentestJobTasksInput$, () => exports.BatchGetPentestJobTasksOutput$
|
|
1441
|
+
];
|
|
1442
|
+
exports.BatchGetPentests$ = [9, n0, _BGP,
|
|
1443
|
+
{ [_h]: ["POST", "/BatchGetPentests", 200] }, () => exports.BatchGetPentestsInput$, () => exports.BatchGetPentestsOutput$
|
|
1444
|
+
];
|
|
1445
|
+
exports.BatchGetTargetDomains$ = [9, n0, _BGTD,
|
|
1446
|
+
{ [_h]: ["POST", "/BatchGetTargetDomains", 200] }, () => exports.BatchGetTargetDomainsInput$, () => exports.BatchGetTargetDomainsOutput$
|
|
1447
|
+
];
|
|
1448
|
+
exports.CreateAgentSpace$ = [9, n0, _CAS,
|
|
1449
|
+
{ [_h]: ["POST", "/CreateAgentSpace", 200] }, () => exports.CreateAgentSpaceInput$, () => exports.CreateAgentSpaceOutput$
|
|
1450
|
+
];
|
|
1451
|
+
exports.CreateApplication$ = [9, n0, _CA,
|
|
1452
|
+
{ [_h]: ["POST", "/CreateApplication", 200] }, () => exports.CreateApplicationRequest$, () => exports.CreateApplicationResponse$
|
|
1453
|
+
];
|
|
1454
|
+
exports.CreateIntegration$ = [9, n0, _CI,
|
|
1455
|
+
{ [_h]: ["POST", "/CreateIntegration", 201] }, () => exports.CreateIntegrationInput$, () => exports.CreateIntegrationOutput$
|
|
1456
|
+
];
|
|
1457
|
+
exports.CreateMembership$ = [9, n0, _CM,
|
|
1458
|
+
{ [_h]: ["POST", "/CreateMembership", 200] }, () => exports.CreateMembershipRequest$, () => exports.CreateMembershipResponse$
|
|
1459
|
+
];
|
|
1460
|
+
exports.CreatePentest$ = [9, n0, _CP,
|
|
1461
|
+
{ [_h]: ["POST", "/CreatePentest", 200] }, () => exports.CreatePentestInput$, () => exports.CreatePentestOutput$
|
|
1462
|
+
];
|
|
1463
|
+
exports.CreateTargetDomain$ = [9, n0, _CTD,
|
|
1464
|
+
{ [_h]: ["POST", "/CreateTargetDomain", 200] }, () => exports.CreateTargetDomainInput$, () => exports.CreateTargetDomainOutput$
|
|
1465
|
+
];
|
|
1466
|
+
exports.DeleteAgentSpace$ = [9, n0, _DAS,
|
|
1467
|
+
{ [_h]: ["POST", "/DeleteAgentSpace", 200] }, () => exports.DeleteAgentSpaceInput$, () => exports.DeleteAgentSpaceOutput$
|
|
1468
|
+
];
|
|
1469
|
+
exports.DeleteApplication$ = [9, n0, _DA,
|
|
1470
|
+
{ [_h]: ["POST", "/DeleteApplication", 200] }, () => exports.DeleteApplicationRequest$, () => __Unit
|
|
1471
|
+
];
|
|
1472
|
+
exports.DeleteArtifact$ = [9, n0, _DAe,
|
|
1473
|
+
{ [_h]: ["POST", "/DeleteArtifact", 200] }, () => exports.DeleteArtifactInput$, () => exports.DeleteArtifactOutput$
|
|
1474
|
+
];
|
|
1475
|
+
exports.DeleteIntegration$ = [9, n0, _DIe,
|
|
1476
|
+
{ [_h]: ["POST", "/DeleteIntegration", 200] }, () => exports.DeleteIntegrationInput$, () => exports.DeleteIntegrationOutput$
|
|
1477
|
+
];
|
|
1478
|
+
exports.DeleteMembership$ = [9, n0, _DM,
|
|
1479
|
+
{ [_h]: ["POST", "/DeleteMembership", 200] }, () => exports.DeleteMembershipRequest$, () => exports.DeleteMembershipResponse$
|
|
1480
|
+
];
|
|
1481
|
+
exports.DeleteTargetDomain$ = [9, n0, _DTD,
|
|
1482
|
+
{ [_h]: ["POST", "/DeleteTargetDomain", 200] }, () => exports.DeleteTargetDomainInput$, () => exports.DeleteTargetDomainOutput$
|
|
1483
|
+
];
|
|
1484
|
+
exports.GetApplication$ = [9, n0, _GA,
|
|
1485
|
+
{ [_h]: ["POST", "/GetApplication", 200] }, () => exports.GetApplicationRequest$, () => exports.GetApplicationResponse$
|
|
1486
|
+
];
|
|
1487
|
+
exports.GetArtifact$ = [9, n0, _GAe,
|
|
1488
|
+
{ [_h]: ["POST", "/GetArtifact", 200] }, () => exports.GetArtifactInput$, () => exports.GetArtifactOutput$
|
|
1489
|
+
];
|
|
1490
|
+
exports.GetIntegration$ = [9, n0, _GI,
|
|
1491
|
+
{ [_h]: ["POST", "/GetIntegration", 200] }, () => exports.GetIntegrationInput$, () => exports.GetIntegrationOutput$
|
|
1492
|
+
];
|
|
1493
|
+
exports.InitiateProviderRegistration$ = [9, n0, _IPR,
|
|
1494
|
+
{ [_h]: ["POST", "/oauth2/provider/register", 200] }, () => exports.InitiateProviderRegistrationInput$, () => exports.InitiateProviderRegistrationOutput$
|
|
1495
|
+
];
|
|
1496
|
+
exports.ListAgentSpaces$ = [9, n0, _LAS,
|
|
1497
|
+
{ [_h]: ["POST", "/ListAgentSpaces", 200] }, () => exports.ListAgentSpacesInput$, () => exports.ListAgentSpacesOutput$
|
|
1498
|
+
];
|
|
1499
|
+
exports.ListApplications$ = [9, n0, _LA,
|
|
1500
|
+
{ [_h]: ["POST", "/ListApplications", 200] }, () => exports.ListApplicationsRequest$, () => exports.ListApplicationsResponse$
|
|
1501
|
+
];
|
|
1502
|
+
exports.ListArtifacts$ = [9, n0, _LAi,
|
|
1503
|
+
{ [_h]: ["POST", "/ListArtifacts", 200] }, () => exports.ListArtifactsInput$, () => exports.ListArtifactsOutput$
|
|
1504
|
+
];
|
|
1505
|
+
exports.ListDiscoveredEndpoints$ = [9, n0, _LDE,
|
|
1506
|
+
{ [_h]: ["POST", "/ListDiscoveredEndpoints", 200] }, () => exports.ListDiscoveredEndpointsInput$, () => exports.ListDiscoveredEndpointsOutput$
|
|
1507
|
+
];
|
|
1508
|
+
exports.ListFindings$ = [9, n0, _LF,
|
|
1509
|
+
{ [_h]: ["POST", "/ListFindings", 200] }, () => exports.ListFindingsInput$, () => exports.ListFindingsOutput$
|
|
1510
|
+
];
|
|
1511
|
+
exports.ListIntegratedResources$ = [9, n0, _LIR,
|
|
1512
|
+
{ [_h]: ["POST", "/ListIntegratedResources", 200] }, () => exports.ListIntegratedResourcesInput$, () => exports.ListIntegratedResourcesOutput$
|
|
1513
|
+
];
|
|
1514
|
+
exports.ListIntegrations$ = [9, n0, _LI,
|
|
1515
|
+
{ [_h]: ["POST", "/ListIntegrations", 200] }, () => exports.ListIntegrationsInput$, () => exports.ListIntegrationsOutput$
|
|
1516
|
+
];
|
|
1517
|
+
exports.ListMemberships$ = [9, n0, _LM,
|
|
1518
|
+
{ [_h]: ["POST", "/ListMemberships", 200] }, () => exports.ListMembershipsRequest$, () => exports.ListMembershipsResponse$
|
|
1519
|
+
];
|
|
1520
|
+
exports.ListPentestJobsForPentest$ = [9, n0, _LPJFP,
|
|
1521
|
+
{ [_h]: ["POST", "/ListPentestJobsForPentest", 200] }, () => exports.ListPentestJobsForPentestInput$, () => exports.ListPentestJobsForPentestOutput$
|
|
1522
|
+
];
|
|
1523
|
+
exports.ListPentestJobTasks$ = [9, n0, _LPJT,
|
|
1524
|
+
{ [_h]: ["POST", "/ListPentestJobTasks", 200] }, () => exports.ListPentestJobTasksInput$, () => exports.ListPentestJobTasksOutput$
|
|
1525
|
+
];
|
|
1526
|
+
exports.ListPentests$ = [9, n0, _LP,
|
|
1527
|
+
{ [_h]: ["POST", "/ListPentests", 200] }, () => exports.ListPentestsInput$, () => exports.ListPentestsOutput$
|
|
1528
|
+
];
|
|
1529
|
+
exports.ListTagsForResource$ = [9, n0, _LTFR,
|
|
1530
|
+
{ [_h]: ["GET", "/tags/{resourceArn}", 200] }, () => exports.ListTagsForResourceInput$, () => exports.ListTagsForResourceOutput$
|
|
1531
|
+
];
|
|
1532
|
+
exports.ListTargetDomains$ = [9, n0, _LTD,
|
|
1533
|
+
{ [_h]: ["POST", "/ListTargetDomains", 200] }, () => exports.ListTargetDomainsInput$, () => exports.ListTargetDomainsOutput$
|
|
1534
|
+
];
|
|
1535
|
+
exports.StartCodeRemediation$ = [9, n0, _SCRt,
|
|
1536
|
+
{ [_h]: ["POST", "/StartCodeRemediation", 200] }, () => exports.StartCodeRemediationInput$, () => exports.StartCodeRemediationOutput$
|
|
1537
|
+
];
|
|
1538
|
+
exports.StartPentestJob$ = [9, n0, _SPJ,
|
|
1539
|
+
{ [_h]: ["POST", "/StartPentestJob", 200] }, () => exports.StartPentestJobInput$, () => exports.StartPentestJobOutput$
|
|
1540
|
+
];
|
|
1541
|
+
exports.StopPentestJob$ = [9, n0, _SPJt,
|
|
1542
|
+
{ [_h]: ["POST", "/StopPentestJob", 200] }, () => exports.StopPentestJobInput$, () => exports.StopPentestJobOutput$
|
|
1543
|
+
];
|
|
1544
|
+
exports.TagResource$ = [9, n0, _TR,
|
|
1545
|
+
{ [_h]: ["POST", "/tags/{resourceArn}", 204] }, () => exports.TagResourceInput$, () => exports.TagResourceOutput$
|
|
1546
|
+
];
|
|
1547
|
+
exports.UntagResource$ = [9, n0, _UR,
|
|
1548
|
+
{ [_h]: ["DELETE", "/tags/{resourceArn}", 204] }, () => exports.UntagResourceInput$, () => exports.UntagResourceOutput$
|
|
1549
|
+
];
|
|
1550
|
+
exports.UpdateAgentSpace$ = [9, n0, _UAS,
|
|
1551
|
+
{ [_h]: ["POST", "/UpdateAgentSpace", 200] }, () => exports.UpdateAgentSpaceInput$, () => exports.UpdateAgentSpaceOutput$
|
|
1552
|
+
];
|
|
1553
|
+
exports.UpdateApplication$ = [9, n0, _UA,
|
|
1554
|
+
{ [_h]: ["POST", "/UpdateApplication", 200] }, () => exports.UpdateApplicationRequest$, () => exports.UpdateApplicationResponse$
|
|
1555
|
+
];
|
|
1556
|
+
exports.UpdateFinding$ = [9, n0, _UF,
|
|
1557
|
+
{ [_h]: ["POST", "/UpdateFinding", 200] }, () => exports.UpdateFindingInput$, () => exports.UpdateFindingOutput$
|
|
1558
|
+
];
|
|
1559
|
+
exports.UpdateIntegratedResources$ = [9, n0, _UIR,
|
|
1560
|
+
{ [_h]: ["POST", "/UpdateIntegratedResources", 200] }, () => exports.UpdateIntegratedResourcesInput$, () => exports.UpdateIntegratedResourcesOutput$
|
|
1561
|
+
];
|
|
1562
|
+
exports.UpdatePentest$ = [9, n0, _UP,
|
|
1563
|
+
{ [_h]: ["POST", "/UpdatePentest", 200] }, () => exports.UpdatePentestInput$, () => exports.UpdatePentestOutput$
|
|
1564
|
+
];
|
|
1565
|
+
exports.UpdateTargetDomain$ = [9, n0, _UTD,
|
|
1566
|
+
{ [_h]: ["POST", "/UpdateTargetDomain", 200] }, () => exports.UpdateTargetDomainInput$, () => exports.UpdateTargetDomainOutput$
|
|
1567
|
+
];
|
|
1568
|
+
exports.VerifyTargetDomain$ = [9, n0, _VTD,
|
|
1569
|
+
{ [_h]: ["POST", "/VerifyTargetDomain", 200] }, () => exports.VerifyTargetDomainInput$, () => exports.VerifyTargetDomainOutput$
|
|
1570
|
+
];
|