@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,200 @@
|
|
|
1
|
+
export declare const AccessType: {
|
|
2
|
+
readonly PRIVATE: "PRIVATE";
|
|
3
|
+
readonly PUBLIC: "PUBLIC";
|
|
4
|
+
};
|
|
5
|
+
export type AccessType = (typeof AccessType)[keyof typeof AccessType];
|
|
6
|
+
export declare const AuthenticationProviderType: {
|
|
7
|
+
readonly AWS_IAM_ROLE: "AWS_IAM_ROLE";
|
|
8
|
+
readonly AWS_INTERNAL: "AWS_INTERNAL";
|
|
9
|
+
readonly AWS_LAMBDA: "AWS_LAMBDA";
|
|
10
|
+
readonly SECRETS_MANAGER: "SECRETS_MANAGER";
|
|
11
|
+
};
|
|
12
|
+
export type AuthenticationProviderType =
|
|
13
|
+
(typeof AuthenticationProviderType)[keyof typeof AuthenticationProviderType];
|
|
14
|
+
export declare const ArtifactType: {
|
|
15
|
+
readonly DOC: "DOC";
|
|
16
|
+
readonly DOCX: "DOCX";
|
|
17
|
+
readonly JPEG: "JPEG";
|
|
18
|
+
readonly JSON: "JSON";
|
|
19
|
+
readonly MD: "MD";
|
|
20
|
+
readonly PDF: "PDF";
|
|
21
|
+
readonly PNG: "PNG";
|
|
22
|
+
readonly TXT: "TXT";
|
|
23
|
+
readonly YAML: "YAML";
|
|
24
|
+
};
|
|
25
|
+
export type ArtifactType = (typeof ArtifactType)[keyof typeof ArtifactType];
|
|
26
|
+
export declare const CodeRemediationStrategy: {
|
|
27
|
+
readonly AUTOMATIC: "AUTOMATIC";
|
|
28
|
+
readonly DISABLED: "DISABLED";
|
|
29
|
+
};
|
|
30
|
+
export type CodeRemediationStrategy =
|
|
31
|
+
(typeof CodeRemediationStrategy)[keyof typeof CodeRemediationStrategy];
|
|
32
|
+
export declare const RiskType: {
|
|
33
|
+
readonly ARBITRARY_FILE_UPLOAD: "ARBITRARY_FILE_UPLOAD";
|
|
34
|
+
readonly BUSINESS_LOGIC_VULNERABILITIES: "BUSINESS_LOGIC_VULNERABILITIES";
|
|
35
|
+
readonly CODE_INJECTION: "CODE_INJECTION";
|
|
36
|
+
readonly COMMAND_INJECTION: "COMMAND_INJECTION";
|
|
37
|
+
readonly CROSS_SITE_SCRIPTING: "CROSS_SITE_SCRIPTING";
|
|
38
|
+
readonly CRYPTOGRAPHIC_VULNERABILITIES: "CRYPTOGRAPHIC_VULNERABILITIES";
|
|
39
|
+
readonly DATABASE_ACCESS: "DATABASE_ACCESS";
|
|
40
|
+
readonly DATABASE_MODIFICATION: "DATABASE_MODIFICATION";
|
|
41
|
+
readonly DEFAULT_CREDENTIALS: "DEFAULT_CREDENTIALS";
|
|
42
|
+
readonly DENIAL_OF_SERVICE: "DENIAL_OF_SERVICE";
|
|
43
|
+
readonly FILE_ACCESS: "FILE_ACCESS";
|
|
44
|
+
readonly FILE_CREATION: "FILE_CREATION";
|
|
45
|
+
readonly FILE_DELETION: "FILE_DELETION";
|
|
46
|
+
readonly GRAPHQL_VULNERABILITIES: "GRAPHQL_VULNERABILITIES";
|
|
47
|
+
readonly INFORMATION_DISCLOSURE: "INFORMATION_DISCLOSURE";
|
|
48
|
+
readonly INSECURE_DESERIALIZATION: "INSECURE_DESERIALIZATION";
|
|
49
|
+
readonly INSECURE_DIRECT_OBJECT_REFERENCE: "INSECURE_DIRECT_OBJECT_REFERENCE";
|
|
50
|
+
readonly JSON_WEB_TOKEN_VULNERABILITIES: "JSON_WEB_TOKEN_VULNERABILITIES";
|
|
51
|
+
readonly LOCAL_FILE_INCLUSION: "LOCAL_FILE_INCLUSION";
|
|
52
|
+
readonly OTHER: "OTHER";
|
|
53
|
+
readonly OUTBOUND_SERVICE_REQUEST: "OUTBOUND_SERVICE_REQUEST";
|
|
54
|
+
readonly PATH_TRAVERSAL: "PATH_TRAVERSAL";
|
|
55
|
+
readonly PRIVILEGE_ESCALATION: "PRIVILEGE_ESCALATION";
|
|
56
|
+
readonly SERVER_SIDE_REQUEST_FORGERY: "SERVER_SIDE_REQUEST_FORGERY";
|
|
57
|
+
readonly SERVER_SIDE_TEMPLATE_INJECTION: "SERVER_SIDE_TEMPLATE_INJECTION";
|
|
58
|
+
readonly SQL_INJECTION: "SQL_INJECTION";
|
|
59
|
+
readonly UNKNOWN: "UNKNOWN";
|
|
60
|
+
readonly XML_EXTERNAL_ENTITY: "XML_EXTERNAL_ENTITY";
|
|
61
|
+
};
|
|
62
|
+
export type RiskType = (typeof RiskType)[keyof typeof RiskType];
|
|
63
|
+
export declare const NetworkTrafficRuleEffect: {
|
|
64
|
+
readonly ALLOW: "ALLOW";
|
|
65
|
+
readonly DENY: "DENY";
|
|
66
|
+
};
|
|
67
|
+
export type NetworkTrafficRuleEffect =
|
|
68
|
+
(typeof NetworkTrafficRuleEffect)[keyof typeof NetworkTrafficRuleEffect];
|
|
69
|
+
export declare const NetworkTrafficRuleType: {
|
|
70
|
+
readonly URL: "URL";
|
|
71
|
+
};
|
|
72
|
+
export type NetworkTrafficRuleType =
|
|
73
|
+
(typeof NetworkTrafficRuleType)[keyof typeof NetworkTrafficRuleType];
|
|
74
|
+
export declare const CodeRemediationTaskStatus: {
|
|
75
|
+
readonly COMPLETED: "COMPLETED";
|
|
76
|
+
readonly FAILED: "FAILED";
|
|
77
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
78
|
+
};
|
|
79
|
+
export type CodeRemediationTaskStatus =
|
|
80
|
+
(typeof CodeRemediationTaskStatus)[keyof typeof CodeRemediationTaskStatus];
|
|
81
|
+
export declare const ConfidenceLevel: {
|
|
82
|
+
readonly FALSE_POSITIVE: "FALSE_POSITIVE";
|
|
83
|
+
readonly HIGH: "HIGH";
|
|
84
|
+
readonly LOW: "LOW";
|
|
85
|
+
readonly MEDIUM: "MEDIUM";
|
|
86
|
+
readonly UNCONFIRMED: "UNCONFIRMED";
|
|
87
|
+
};
|
|
88
|
+
export type ConfidenceLevel =
|
|
89
|
+
(typeof ConfidenceLevel)[keyof typeof ConfidenceLevel];
|
|
90
|
+
export declare const RiskLevel: {
|
|
91
|
+
readonly CRITICAL: "CRITICAL";
|
|
92
|
+
readonly HIGH: "HIGH";
|
|
93
|
+
readonly INFORMATIONAL: "INFORMATIONAL";
|
|
94
|
+
readonly LOW: "LOW";
|
|
95
|
+
readonly MEDIUM: "MEDIUM";
|
|
96
|
+
readonly UNKNOWN: "UNKNOWN";
|
|
97
|
+
};
|
|
98
|
+
export type RiskLevel = (typeof RiskLevel)[keyof typeof RiskLevel];
|
|
99
|
+
export declare const FindingStatus: {
|
|
100
|
+
readonly ACCEPTED: "ACCEPTED";
|
|
101
|
+
readonly ACTIVE: "ACTIVE";
|
|
102
|
+
readonly FALSE_POSITIVE: "FALSE_POSITIVE";
|
|
103
|
+
readonly RESOLVED: "RESOLVED";
|
|
104
|
+
};
|
|
105
|
+
export type FindingStatus = (typeof FindingStatus)[keyof typeof FindingStatus];
|
|
106
|
+
export declare const ErrorCode: {
|
|
107
|
+
readonly CLIENT_ERROR: "CLIENT_ERROR";
|
|
108
|
+
readonly INTERNAL_ERROR: "INTERNAL_ERROR";
|
|
109
|
+
readonly STOPPED_BY_USER: "STOPPED_BY_USER";
|
|
110
|
+
};
|
|
111
|
+
export type ErrorCode = (typeof ErrorCode)[keyof typeof ErrorCode];
|
|
112
|
+
export declare const ContextType: {
|
|
113
|
+
readonly CLIENT_ERROR: "CLIENT_ERROR";
|
|
114
|
+
readonly ERROR: "ERROR";
|
|
115
|
+
readonly INFO: "INFO";
|
|
116
|
+
readonly WARNING: "WARNING";
|
|
117
|
+
};
|
|
118
|
+
export type ContextType = (typeof ContextType)[keyof typeof ContextType];
|
|
119
|
+
export declare const JobStatus: {
|
|
120
|
+
readonly COMPLETED: "COMPLETED";
|
|
121
|
+
readonly FAILED: "FAILED";
|
|
122
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
123
|
+
readonly STOPPED: "STOPPED";
|
|
124
|
+
readonly STOPPING: "STOPPING";
|
|
125
|
+
};
|
|
126
|
+
export type JobStatus = (typeof JobStatus)[keyof typeof JobStatus];
|
|
127
|
+
export declare const StepName: {
|
|
128
|
+
readonly FINALIZING: "FINALIZING";
|
|
129
|
+
readonly PENTEST: "PENTEST";
|
|
130
|
+
readonly PREFLIGHT: "PREFLIGHT";
|
|
131
|
+
readonly STATIC_ANALYSIS: "STATIC_ANALYSIS";
|
|
132
|
+
};
|
|
133
|
+
export type StepName = (typeof StepName)[keyof typeof StepName];
|
|
134
|
+
export declare const StepStatus: {
|
|
135
|
+
readonly COMPLETED: "COMPLETED";
|
|
136
|
+
readonly FAILED: "FAILED";
|
|
137
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
138
|
+
readonly NOT_STARTED: "NOT_STARTED";
|
|
139
|
+
readonly STOPPED: "STOPPED";
|
|
140
|
+
};
|
|
141
|
+
export type StepStatus = (typeof StepStatus)[keyof typeof StepStatus];
|
|
142
|
+
export declare const TaskExecutionStatus: {
|
|
143
|
+
readonly ABORTED: "ABORTED";
|
|
144
|
+
readonly COMPLETED: "COMPLETED";
|
|
145
|
+
readonly FAILED: "FAILED";
|
|
146
|
+
readonly INTERNAL_ERROR: "INTERNAL_ERROR";
|
|
147
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
148
|
+
};
|
|
149
|
+
export type TaskExecutionStatus =
|
|
150
|
+
(typeof TaskExecutionStatus)[keyof typeof TaskExecutionStatus];
|
|
151
|
+
export declare const LogType: {
|
|
152
|
+
readonly CLOUDWATCH: "CLOUDWATCH";
|
|
153
|
+
};
|
|
154
|
+
export type LogType = (typeof LogType)[keyof typeof LogType];
|
|
155
|
+
export declare const DNSRecordType: {
|
|
156
|
+
readonly TXT: "TXT";
|
|
157
|
+
};
|
|
158
|
+
export type DNSRecordType = (typeof DNSRecordType)[keyof typeof DNSRecordType];
|
|
159
|
+
export declare const DomainVerificationMethod: {
|
|
160
|
+
readonly DNS_TXT: "DNS_TXT";
|
|
161
|
+
readonly HTTP_ROUTE: "HTTP_ROUTE";
|
|
162
|
+
};
|
|
163
|
+
export type DomainVerificationMethod =
|
|
164
|
+
(typeof DomainVerificationMethod)[keyof typeof DomainVerificationMethod];
|
|
165
|
+
export declare const TargetDomainStatus: {
|
|
166
|
+
readonly FAILED: "FAILED";
|
|
167
|
+
readonly PENDING: "PENDING";
|
|
168
|
+
readonly UNREACHABLE: "UNREACHABLE";
|
|
169
|
+
readonly VERIFIED: "VERIFIED";
|
|
170
|
+
};
|
|
171
|
+
export type TargetDomainStatus =
|
|
172
|
+
(typeof TargetDomainStatus)[keyof typeof TargetDomainStatus];
|
|
173
|
+
export declare const Provider: {
|
|
174
|
+
readonly GITHUB: "GITHUB";
|
|
175
|
+
};
|
|
176
|
+
export type Provider = (typeof Provider)[keyof typeof Provider];
|
|
177
|
+
export declare const UserRole: {
|
|
178
|
+
readonly MEMBER: "MEMBER";
|
|
179
|
+
};
|
|
180
|
+
export type UserRole = (typeof UserRole)[keyof typeof UserRole];
|
|
181
|
+
export declare const MembershipType: {
|
|
182
|
+
readonly USER: "USER";
|
|
183
|
+
};
|
|
184
|
+
export type MembershipType =
|
|
185
|
+
(typeof MembershipType)[keyof typeof MembershipType];
|
|
186
|
+
export declare const ProviderType: {
|
|
187
|
+
readonly DOCUMENTATION: "DOCUMENTATION";
|
|
188
|
+
readonly SOURCE_CODE: "SOURCE_CODE";
|
|
189
|
+
};
|
|
190
|
+
export type ProviderType = (typeof ProviderType)[keyof typeof ProviderType];
|
|
191
|
+
export declare const ResourceType: {
|
|
192
|
+
readonly CODE_REPOSITORY: "CODE_REPOSITORY";
|
|
193
|
+
};
|
|
194
|
+
export type ResourceType = (typeof ResourceType)[keyof typeof ResourceType];
|
|
195
|
+
export declare const MembershipTypeFilter: {
|
|
196
|
+
readonly ALL: "ALL";
|
|
197
|
+
readonly USER: "USER";
|
|
198
|
+
};
|
|
199
|
+
export type MembershipTypeFilter =
|
|
200
|
+
(typeof MembershipTypeFilter)[keyof typeof MembershipTypeFilter];
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { ValidationExceptionField } from "./models_0";
|
|
3
|
+
import { SecurityAgentServiceException as __BaseException } from "./SecurityAgentServiceException";
|
|
4
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
5
|
+
readonly name: "AccessDeniedException";
|
|
6
|
+
readonly $fault: "client";
|
|
7
|
+
constructor(
|
|
8
|
+
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
9
|
+
);
|
|
10
|
+
}
|
|
11
|
+
export declare class InternalServerException extends __BaseException {
|
|
12
|
+
readonly name: "InternalServerException";
|
|
13
|
+
readonly $fault: "server";
|
|
14
|
+
constructor(
|
|
15
|
+
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
16
|
+
);
|
|
17
|
+
}
|
|
18
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
19
|
+
readonly name: "ResourceNotFoundException";
|
|
20
|
+
readonly $fault: "client";
|
|
21
|
+
constructor(
|
|
22
|
+
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
23
|
+
);
|
|
24
|
+
}
|
|
25
|
+
export declare class ThrottlingException extends __BaseException {
|
|
26
|
+
readonly name: "ThrottlingException";
|
|
27
|
+
readonly $fault: "client";
|
|
28
|
+
serviceCode?: string | undefined;
|
|
29
|
+
quotaCode?: string | undefined;
|
|
30
|
+
constructor(
|
|
31
|
+
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
32
|
+
);
|
|
33
|
+
}
|
|
34
|
+
export declare class ValidationException extends __BaseException {
|
|
35
|
+
readonly name: "ValidationException";
|
|
36
|
+
readonly $fault: "client";
|
|
37
|
+
fieldList?: ValidationExceptionField[] | undefined;
|
|
38
|
+
constructor(
|
|
39
|
+
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
40
|
+
);
|
|
41
|
+
}
|
|
42
|
+
export declare class ConflictException extends __BaseException {
|
|
43
|
+
readonly name: "ConflictException";
|
|
44
|
+
readonly $fault: "client";
|
|
45
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
46
|
+
}
|