@aws-sdk/client-securityagent 3.1045.0 → 3.1046.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.
Files changed (245) hide show
  1. package/README.md +77 -0
  2. package/dist-cjs/auth/httpAuthSchemeProvider.js +4 -4
  3. package/dist-cjs/endpoint/bdd.js +2 -2
  4. package/dist-cjs/endpoint/endpointResolver.js +4 -4
  5. package/dist-cjs/index.js +308 -143
  6. package/dist-cjs/models/SecurityAgentServiceException.js +3 -3
  7. package/dist-cjs/runtimeConfig.browser.js +12 -14
  8. package/dist-cjs/runtimeConfig.js +18 -22
  9. package/dist-cjs/runtimeConfig.shared.js +9 -10
  10. package/dist-cjs/schemas/schemas_0.js +299 -24
  11. package/dist-es/SecurityAgent.js +29 -1
  12. package/dist-es/SecurityAgentClient.js +5 -5
  13. package/dist-es/auth/httpAuthSchemeProvider.js +1 -1
  14. package/dist-es/commands/AddArtifactCommand.js +2 -2
  15. package/dist-es/commands/BatchDeleteCodeReviewsCommand.js +16 -0
  16. package/dist-es/commands/BatchDeletePentestsCommand.js +2 -2
  17. package/dist-es/commands/BatchGetAgentSpacesCommand.js +2 -2
  18. package/dist-es/commands/BatchGetArtifactMetadataCommand.js +2 -2
  19. package/dist-es/commands/BatchGetCodeReviewJobTasksCommand.js +16 -0
  20. package/dist-es/commands/BatchGetCodeReviewJobsCommand.js +16 -0
  21. package/dist-es/commands/BatchGetCodeReviewsCommand.js +16 -0
  22. package/dist-es/commands/BatchGetFindingsCommand.js +2 -2
  23. package/dist-es/commands/BatchGetPentestJobTasksCommand.js +2 -2
  24. package/dist-es/commands/BatchGetPentestJobsCommand.js +2 -2
  25. package/dist-es/commands/BatchGetPentestsCommand.js +2 -2
  26. package/dist-es/commands/BatchGetTargetDomainsCommand.js +2 -2
  27. package/dist-es/commands/CreateAgentSpaceCommand.js +2 -2
  28. package/dist-es/commands/CreateApplicationCommand.js +2 -2
  29. package/dist-es/commands/CreateCodeReviewCommand.js +16 -0
  30. package/dist-es/commands/CreateIntegrationCommand.js +2 -2
  31. package/dist-es/commands/CreateMembershipCommand.js +2 -2
  32. package/dist-es/commands/CreatePentestCommand.js +2 -2
  33. package/dist-es/commands/CreateTargetDomainCommand.js +2 -2
  34. package/dist-es/commands/DeleteAgentSpaceCommand.js +2 -2
  35. package/dist-es/commands/DeleteApplicationCommand.js +2 -2
  36. package/dist-es/commands/DeleteArtifactCommand.js +2 -2
  37. package/dist-es/commands/DeleteIntegrationCommand.js +2 -2
  38. package/dist-es/commands/DeleteMembershipCommand.js +2 -2
  39. package/dist-es/commands/DeleteTargetDomainCommand.js +2 -2
  40. package/dist-es/commands/GetApplicationCommand.js +2 -2
  41. package/dist-es/commands/GetArtifactCommand.js +2 -2
  42. package/dist-es/commands/GetIntegrationCommand.js +2 -2
  43. package/dist-es/commands/InitiateProviderRegistrationCommand.js +2 -2
  44. package/dist-es/commands/ListAgentSpacesCommand.js +2 -2
  45. package/dist-es/commands/ListApplicationsCommand.js +2 -2
  46. package/dist-es/commands/ListArtifactsCommand.js +2 -2
  47. package/dist-es/commands/ListCodeReviewJobTasksCommand.js +16 -0
  48. package/dist-es/commands/ListCodeReviewJobsForCodeReviewCommand.js +16 -0
  49. package/dist-es/commands/ListCodeReviewsCommand.js +16 -0
  50. package/dist-es/commands/ListDiscoveredEndpointsCommand.js +2 -2
  51. package/dist-es/commands/ListFindingsCommand.js +2 -2
  52. package/dist-es/commands/ListIntegratedResourcesCommand.js +2 -2
  53. package/dist-es/commands/ListIntegrationsCommand.js +2 -2
  54. package/dist-es/commands/ListMembershipsCommand.js +2 -2
  55. package/dist-es/commands/ListPentestJobTasksCommand.js +2 -2
  56. package/dist-es/commands/ListPentestJobsForPentestCommand.js +2 -2
  57. package/dist-es/commands/ListPentestsCommand.js +2 -2
  58. package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
  59. package/dist-es/commands/ListTargetDomainsCommand.js +2 -2
  60. package/dist-es/commands/StartCodeRemediationCommand.js +2 -2
  61. package/dist-es/commands/StartCodeReviewJobCommand.js +16 -0
  62. package/dist-es/commands/StartPentestJobCommand.js +2 -2
  63. package/dist-es/commands/StopCodeReviewJobCommand.js +16 -0
  64. package/dist-es/commands/StopPentestJobCommand.js +2 -2
  65. package/dist-es/commands/TagResourceCommand.js +2 -2
  66. package/dist-es/commands/UntagResourceCommand.js +2 -2
  67. package/dist-es/commands/UpdateAgentSpaceCommand.js +2 -2
  68. package/dist-es/commands/UpdateApplicationCommand.js +2 -2
  69. package/dist-es/commands/UpdateCodeReviewCommand.js +16 -0
  70. package/dist-es/commands/UpdateFindingCommand.js +2 -2
  71. package/dist-es/commands/UpdateIntegratedResourcesCommand.js +2 -2
  72. package/dist-es/commands/UpdatePentestCommand.js +2 -2
  73. package/dist-es/commands/UpdateTargetDomainCommand.js +2 -2
  74. package/dist-es/commands/VerifyTargetDomainCommand.js +2 -2
  75. package/dist-es/commands/index.js +11 -0
  76. package/dist-es/endpoint/bdd.js +1 -1
  77. package/dist-es/endpoint/endpointResolver.js +1 -1
  78. package/dist-es/models/SecurityAgentServiceException.js +1 -1
  79. package/dist-es/models/enums.js +26 -26
  80. package/dist-es/pagination/ListCodeReviewJobTasksPaginator.js +4 -0
  81. package/dist-es/pagination/ListCodeReviewJobsForCodeReviewPaginator.js +4 -0
  82. package/dist-es/pagination/ListCodeReviewsPaginator.js +4 -0
  83. package/dist-es/pagination/index.js +3 -0
  84. package/dist-es/runtimeConfig.browser.js +4 -6
  85. package/dist-es/runtimeConfig.js +4 -8
  86. package/dist-es/runtimeConfig.shared.js +3 -4
  87. package/dist-es/runtimeExtensions.js +2 -2
  88. package/dist-es/schemas/schemas_0.js +293 -19
  89. package/dist-types/SecurityAgent.d.ts +98 -0
  90. package/dist-types/SecurityAgentClient.d.ts +18 -7
  91. package/dist-types/commands/AddArtifactCommand.d.ts +6 -4
  92. package/dist-types/commands/BatchDeleteCodeReviewsCommand.d.ts +87 -0
  93. package/dist-types/commands/BatchDeletePentestsCommand.d.ts +6 -4
  94. package/dist-types/commands/BatchGetAgentSpacesCommand.d.ts +6 -4
  95. package/dist-types/commands/BatchGetArtifactMetadataCommand.d.ts +6 -4
  96. package/dist-types/commands/BatchGetCodeReviewJobTasksCommand.d.ts +108 -0
  97. package/dist-types/commands/BatchGetCodeReviewJobsCommand.d.ts +134 -0
  98. package/dist-types/commands/BatchGetCodeReviewsCommand.d.ts +133 -0
  99. package/dist-types/commands/BatchGetFindingsCommand.d.ts +16 -4
  100. package/dist-types/commands/BatchGetPentestJobTasksCommand.d.ts +6 -4
  101. package/dist-types/commands/BatchGetPentestJobsCommand.d.ts +6 -4
  102. package/dist-types/commands/BatchGetPentestsCommand.d.ts +6 -4
  103. package/dist-types/commands/BatchGetTargetDomainsCommand.d.ts +6 -4
  104. package/dist-types/commands/CreateAgentSpaceCommand.d.ts +6 -4
  105. package/dist-types/commands/CreateApplicationCommand.d.ts +6 -4
  106. package/dist-types/commands/CreateCodeReviewCommand.d.ts +167 -0
  107. package/dist-types/commands/CreateIntegrationCommand.d.ts +6 -4
  108. package/dist-types/commands/CreateMembershipCommand.d.ts +6 -4
  109. package/dist-types/commands/CreatePentestCommand.d.ts +6 -4
  110. package/dist-types/commands/CreateTargetDomainCommand.d.ts +6 -4
  111. package/dist-types/commands/DeleteAgentSpaceCommand.d.ts +6 -4
  112. package/dist-types/commands/DeleteApplicationCommand.d.ts +6 -4
  113. package/dist-types/commands/DeleteArtifactCommand.d.ts +6 -4
  114. package/dist-types/commands/DeleteIntegrationCommand.d.ts +6 -4
  115. package/dist-types/commands/DeleteMembershipCommand.d.ts +6 -4
  116. package/dist-types/commands/DeleteTargetDomainCommand.d.ts +6 -4
  117. package/dist-types/commands/GetApplicationCommand.d.ts +6 -4
  118. package/dist-types/commands/GetArtifactCommand.d.ts +6 -4
  119. package/dist-types/commands/GetIntegrationCommand.d.ts +6 -4
  120. package/dist-types/commands/InitiateProviderRegistrationCommand.d.ts +6 -4
  121. package/dist-types/commands/ListAgentSpacesCommand.d.ts +6 -4
  122. package/dist-types/commands/ListApplicationsCommand.d.ts +6 -4
  123. package/dist-types/commands/ListArtifactsCommand.d.ts +6 -4
  124. package/dist-types/commands/ListCodeReviewJobTasksCommand.d.ts +94 -0
  125. package/dist-types/commands/ListCodeReviewJobsForCodeReviewCommand.d.ts +89 -0
  126. package/dist-types/commands/ListCodeReviewsCommand.d.ts +87 -0
  127. package/dist-types/commands/ListDiscoveredEndpointsCommand.d.ts +6 -4
  128. package/dist-types/commands/ListFindingsCommand.d.ts +10 -5
  129. package/dist-types/commands/ListIntegratedResourcesCommand.d.ts +6 -4
  130. package/dist-types/commands/ListIntegrationsCommand.d.ts +6 -4
  131. package/dist-types/commands/ListMembershipsCommand.d.ts +6 -4
  132. package/dist-types/commands/ListPentestJobTasksCommand.d.ts +6 -4
  133. package/dist-types/commands/ListPentestJobsForPentestCommand.d.ts +6 -4
  134. package/dist-types/commands/ListPentestsCommand.d.ts +6 -4
  135. package/dist-types/commands/ListTagsForResourceCommand.d.ts +6 -4
  136. package/dist-types/commands/ListTargetDomainsCommand.d.ts +6 -4
  137. package/dist-types/commands/StartCodeRemediationCommand.d.ts +8 -5
  138. package/dist-types/commands/StartCodeReviewJobCommand.d.ts +83 -0
  139. package/dist-types/commands/StartPentestJobCommand.d.ts +6 -4
  140. package/dist-types/commands/StopCodeReviewJobCommand.d.ts +75 -0
  141. package/dist-types/commands/StopPentestJobCommand.d.ts +6 -4
  142. package/dist-types/commands/TagResourceCommand.d.ts +6 -4
  143. package/dist-types/commands/UntagResourceCommand.d.ts +6 -4
  144. package/dist-types/commands/UpdateAgentSpaceCommand.d.ts +6 -4
  145. package/dist-types/commands/UpdateApplicationCommand.d.ts +6 -4
  146. package/dist-types/commands/UpdateCodeReviewCommand.d.ts +168 -0
  147. package/dist-types/commands/UpdateFindingCommand.d.ts +6 -4
  148. package/dist-types/commands/UpdateIntegratedResourcesCommand.d.ts +6 -4
  149. package/dist-types/commands/UpdatePentestCommand.d.ts +6 -4
  150. package/dist-types/commands/UpdateTargetDomainCommand.d.ts +6 -4
  151. package/dist-types/commands/VerifyTargetDomainCommand.d.ts +6 -4
  152. package/dist-types/commands/index.d.ts +11 -0
  153. package/dist-types/endpoint/bdd.d.ts +1 -1
  154. package/dist-types/extensionConfiguration.d.ts +1 -1
  155. package/dist-types/models/SecurityAgentServiceException.d.ts +1 -1
  156. package/dist-types/models/enums.d.ts +58 -58
  157. package/dist-types/models/errors.d.ts +1 -1
  158. package/dist-types/models/models_0.d.ts +1015 -100
  159. package/dist-types/pagination/ListCodeReviewJobTasksPaginator.d.ts +7 -0
  160. package/dist-types/pagination/ListCodeReviewJobsForCodeReviewPaginator.d.ts +7 -0
  161. package/dist-types/pagination/ListCodeReviewsPaginator.d.ts +7 -0
  162. package/dist-types/pagination/index.d.ts +3 -0
  163. package/dist-types/runtimeConfig.browser.d.ts +2 -2
  164. package/dist-types/runtimeConfig.d.ts +2 -2
  165. package/dist-types/runtimeConfig.native.d.ts +2 -2
  166. package/dist-types/schemas/schemas_0.d.ts +41 -0
  167. package/dist-types/ts3.4/SecurityAgent.d.ts +208 -0
  168. package/dist-types/ts3.4/SecurityAgentClient.d.ts +74 -14
  169. package/dist-types/ts3.4/commands/AddArtifactCommand.d.ts +6 -4
  170. package/dist-types/ts3.4/commands/BatchDeleteCodeReviewsCommand.d.ts +53 -0
  171. package/dist-types/ts3.4/commands/BatchDeletePentestsCommand.d.ts +6 -4
  172. package/dist-types/ts3.4/commands/BatchGetAgentSpacesCommand.d.ts +6 -4
  173. package/dist-types/ts3.4/commands/BatchGetArtifactMetadataCommand.d.ts +6 -4
  174. package/dist-types/ts3.4/commands/BatchGetCodeReviewJobTasksCommand.d.ts +53 -0
  175. package/dist-types/ts3.4/commands/BatchGetCodeReviewJobsCommand.d.ts +53 -0
  176. package/dist-types/ts3.4/commands/BatchGetCodeReviewsCommand.d.ts +53 -0
  177. package/dist-types/ts3.4/commands/BatchGetFindingsCommand.d.ts +6 -4
  178. package/dist-types/ts3.4/commands/BatchGetPentestJobTasksCommand.d.ts +6 -4
  179. package/dist-types/ts3.4/commands/BatchGetPentestJobsCommand.d.ts +6 -4
  180. package/dist-types/ts3.4/commands/BatchGetPentestsCommand.d.ts +6 -4
  181. package/dist-types/ts3.4/commands/BatchGetTargetDomainsCommand.d.ts +6 -4
  182. package/dist-types/ts3.4/commands/CreateAgentSpaceCommand.d.ts +6 -4
  183. package/dist-types/ts3.4/commands/CreateApplicationCommand.d.ts +6 -4
  184. package/dist-types/ts3.4/commands/CreateCodeReviewCommand.d.ts +52 -0
  185. package/dist-types/ts3.4/commands/CreateIntegrationCommand.d.ts +6 -4
  186. package/dist-types/ts3.4/commands/CreateMembershipCommand.d.ts +6 -4
  187. package/dist-types/ts3.4/commands/CreatePentestCommand.d.ts +6 -4
  188. package/dist-types/ts3.4/commands/CreateTargetDomainCommand.d.ts +6 -4
  189. package/dist-types/ts3.4/commands/DeleteAgentSpaceCommand.d.ts +6 -4
  190. package/dist-types/ts3.4/commands/DeleteApplicationCommand.d.ts +6 -4
  191. package/dist-types/ts3.4/commands/DeleteArtifactCommand.d.ts +6 -4
  192. package/dist-types/ts3.4/commands/DeleteIntegrationCommand.d.ts +6 -4
  193. package/dist-types/ts3.4/commands/DeleteMembershipCommand.d.ts +6 -4
  194. package/dist-types/ts3.4/commands/DeleteTargetDomainCommand.d.ts +6 -4
  195. package/dist-types/ts3.4/commands/GetApplicationCommand.d.ts +6 -4
  196. package/dist-types/ts3.4/commands/GetArtifactCommand.d.ts +6 -4
  197. package/dist-types/ts3.4/commands/GetIntegrationCommand.d.ts +6 -4
  198. package/dist-types/ts3.4/commands/InitiateProviderRegistrationCommand.d.ts +6 -4
  199. package/dist-types/ts3.4/commands/ListAgentSpacesCommand.d.ts +6 -4
  200. package/dist-types/ts3.4/commands/ListApplicationsCommand.d.ts +6 -4
  201. package/dist-types/ts3.4/commands/ListArtifactsCommand.d.ts +6 -4
  202. package/dist-types/ts3.4/commands/ListCodeReviewJobTasksCommand.d.ts +53 -0
  203. package/dist-types/ts3.4/commands/ListCodeReviewJobsForCodeReviewCommand.d.ts +53 -0
  204. package/dist-types/ts3.4/commands/ListCodeReviewsCommand.d.ts +52 -0
  205. package/dist-types/ts3.4/commands/ListDiscoveredEndpointsCommand.d.ts +6 -4
  206. package/dist-types/ts3.4/commands/ListFindingsCommand.d.ts +6 -4
  207. package/dist-types/ts3.4/commands/ListIntegratedResourcesCommand.d.ts +6 -4
  208. package/dist-types/ts3.4/commands/ListIntegrationsCommand.d.ts +6 -4
  209. package/dist-types/ts3.4/commands/ListMembershipsCommand.d.ts +6 -4
  210. package/dist-types/ts3.4/commands/ListPentestJobTasksCommand.d.ts +6 -4
  211. package/dist-types/ts3.4/commands/ListPentestJobsForPentestCommand.d.ts +6 -4
  212. package/dist-types/ts3.4/commands/ListPentestsCommand.d.ts +6 -4
  213. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +6 -4
  214. package/dist-types/ts3.4/commands/ListTargetDomainsCommand.d.ts +6 -4
  215. package/dist-types/ts3.4/commands/StartCodeRemediationCommand.d.ts +6 -4
  216. package/dist-types/ts3.4/commands/StartCodeReviewJobCommand.d.ts +53 -0
  217. package/dist-types/ts3.4/commands/StartPentestJobCommand.d.ts +6 -4
  218. package/dist-types/ts3.4/commands/StopCodeReviewJobCommand.d.ts +52 -0
  219. package/dist-types/ts3.4/commands/StopPentestJobCommand.d.ts +6 -4
  220. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +6 -4
  221. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +6 -4
  222. package/dist-types/ts3.4/commands/UpdateAgentSpaceCommand.d.ts +6 -4
  223. package/dist-types/ts3.4/commands/UpdateApplicationCommand.d.ts +6 -4
  224. package/dist-types/ts3.4/commands/UpdateCodeReviewCommand.d.ts +52 -0
  225. package/dist-types/ts3.4/commands/UpdateFindingCommand.d.ts +6 -4
  226. package/dist-types/ts3.4/commands/UpdateIntegratedResourcesCommand.d.ts +6 -4
  227. package/dist-types/ts3.4/commands/UpdatePentestCommand.d.ts +6 -4
  228. package/dist-types/ts3.4/commands/UpdateTargetDomainCommand.d.ts +6 -4
  229. package/dist-types/ts3.4/commands/VerifyTargetDomainCommand.d.ts +6 -4
  230. package/dist-types/ts3.4/commands/index.d.ts +11 -0
  231. package/dist-types/ts3.4/endpoint/bdd.d.ts +1 -1
  232. package/dist-types/ts3.4/extensionConfiguration.d.ts +1 -1
  233. package/dist-types/ts3.4/models/SecurityAgentServiceException.d.ts +1 -1
  234. package/dist-types/ts3.4/models/enums.d.ts +32 -32
  235. package/dist-types/ts3.4/models/errors.d.ts +1 -1
  236. package/dist-types/ts3.4/models/models_0.d.ts +231 -25
  237. package/dist-types/ts3.4/pagination/ListCodeReviewJobTasksPaginator.d.ts +11 -0
  238. package/dist-types/ts3.4/pagination/ListCodeReviewJobsForCodeReviewPaginator.d.ts +11 -0
  239. package/dist-types/ts3.4/pagination/ListCodeReviewsPaginator.d.ts +11 -0
  240. package/dist-types/ts3.4/pagination/index.d.ts +3 -0
  241. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +2 -2
  242. package/dist-types/ts3.4/runtimeConfig.d.ts +2 -2
  243. package/dist-types/ts3.4/runtimeConfig.native.d.ts +3 -3
  244. package/dist-types/ts3.4/schemas/schemas_0.d.ts +41 -0
  245. package/package.json +13 -34
@@ -71,38 +71,6 @@ export declare const NetworkTrafficRuleType: {
71
71
  };
72
72
  export type NetworkTrafficRuleType =
73
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
74
  export declare const ErrorCode: {
107
75
  readonly CLIENT_ERROR: "CLIENT_ERROR";
108
76
  readonly INTERNAL_ERROR: "INTERNAL_ERROR";
@@ -152,6 +120,38 @@ export declare const LogType: {
152
120
  readonly CLOUDWATCH: "CLOUDWATCH";
153
121
  };
154
122
  export type LogType = (typeof LogType)[keyof typeof LogType];
123
+ export declare const CodeRemediationTaskStatus: {
124
+ readonly COMPLETED: "COMPLETED";
125
+ readonly FAILED: "FAILED";
126
+ readonly IN_PROGRESS: "IN_PROGRESS";
127
+ };
128
+ export type CodeRemediationTaskStatus =
129
+ (typeof CodeRemediationTaskStatus)[keyof typeof CodeRemediationTaskStatus];
130
+ export declare const ConfidenceLevel: {
131
+ readonly FALSE_POSITIVE: "FALSE_POSITIVE";
132
+ readonly HIGH: "HIGH";
133
+ readonly LOW: "LOW";
134
+ readonly MEDIUM: "MEDIUM";
135
+ readonly UNCONFIRMED: "UNCONFIRMED";
136
+ };
137
+ export type ConfidenceLevel =
138
+ (typeof ConfidenceLevel)[keyof typeof ConfidenceLevel];
139
+ export declare const RiskLevel: {
140
+ readonly CRITICAL: "CRITICAL";
141
+ readonly HIGH: "HIGH";
142
+ readonly INFORMATIONAL: "INFORMATIONAL";
143
+ readonly LOW: "LOW";
144
+ readonly MEDIUM: "MEDIUM";
145
+ readonly UNKNOWN: "UNKNOWN";
146
+ };
147
+ export type RiskLevel = (typeof RiskLevel)[keyof typeof RiskLevel];
148
+ export declare const FindingStatus: {
149
+ readonly ACCEPTED: "ACCEPTED";
150
+ readonly ACTIVE: "ACTIVE";
151
+ readonly FALSE_POSITIVE: "FALSE_POSITIVE";
152
+ readonly RESOLVED: "RESOLVED";
153
+ };
154
+ export type FindingStatus = (typeof FindingStatus)[keyof typeof FindingStatus];
155
155
  export declare const DNSRecordType: {
156
156
  readonly TXT: "TXT";
157
157
  };
@@ -1,4 +1,4 @@
1
- import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/core/client";
2
2
  import { ValidationExceptionField } from "./models_0";
3
3
  import { SecurityAgentServiceException as __BaseException } from "./SecurityAgentServiceException";
4
4
  export declare class AccessDeniedException extends __BaseException {
@@ -228,6 +228,18 @@ export interface Assets {
228
228
  sourceCode?: SourceCodeRepository[] | undefined;
229
229
  integratedRepositories?: IntegratedRepository[] | undefined;
230
230
  }
231
+ export interface BatchDeleteCodeReviewsInput {
232
+ codeReviewIds: string[] | undefined;
233
+ agentSpaceId: string | undefined;
234
+ }
235
+ export interface DeleteCodeReviewFailure {
236
+ codeReviewId?: string | undefined;
237
+ reason?: string | undefined;
238
+ }
239
+ export interface BatchDeleteCodeReviewsOutput {
240
+ deleted?: string[] | undefined;
241
+ failed?: DeleteCodeReviewFailure[] | undefined;
242
+ }
231
243
  export interface BatchDeletePentestsInput {
232
244
  pentestIds: string[] | undefined;
233
245
  agentSpaceId: string | undefined;
@@ -278,10 +290,106 @@ export interface BatchGetArtifactMetadataInput {
278
290
  export interface BatchGetArtifactMetadataOutput {
279
291
  artifactMetadataList: ArtifactMetadataItem[] | undefined;
280
292
  }
293
+ export interface BatchGetCodeReviewJobsInput {
294
+ codeReviewJobIds: string[] | undefined;
295
+ agentSpaceId: string | undefined;
296
+ }
297
+ export interface ErrorInformation {
298
+ code?: ErrorCode | undefined;
299
+ message?: string | undefined;
300
+ }
301
+ export interface ExecutionContext {
302
+ contextType?: ContextType | undefined;
303
+ context?: string | undefined;
304
+ timestamp?: Date | undefined;
305
+ }
306
+ export interface Step {
307
+ name?: StepName | undefined;
308
+ status?: StepStatus | undefined;
309
+ createdAt?: Date | undefined;
310
+ updatedAt?: Date | undefined;
311
+ }
312
+ export interface CodeReviewJob {
313
+ codeReviewJobId?: string | undefined;
314
+ codeReviewId?: string | undefined;
315
+ title?: string | undefined;
316
+ overview?: string | undefined;
317
+ status?: JobStatus | undefined;
318
+ documents?: DocumentInfo[] | undefined;
319
+ sourceCode?: SourceCodeRepository[] | undefined;
320
+ steps?: Step[] | undefined;
321
+ executionContext?: ExecutionContext[] | undefined;
322
+ serviceRole?: string | undefined;
323
+ logConfig?: CloudWatchLog | undefined;
324
+ errorInformation?: ErrorInformation | undefined;
325
+ integratedRepositories?: IntegratedRepository[] | undefined;
326
+ codeRemediationStrategy?: CodeRemediationStrategy | undefined;
327
+ createdAt?: Date | undefined;
328
+ updatedAt?: Date | undefined;
329
+ }
330
+ export interface BatchGetCodeReviewJobsOutput {
331
+ codeReviewJobs?: CodeReviewJob[] | undefined;
332
+ notFound?: string[] | undefined;
333
+ }
334
+ export interface BatchGetCodeReviewJobTasksInput {
335
+ agentSpaceId: string | undefined;
336
+ codeReviewJobTaskIds: string[] | undefined;
337
+ }
338
+ export interface Category {
339
+ name?: string | undefined;
340
+ isPrimary?: boolean | undefined;
341
+ }
342
+ export interface LogLocation {
343
+ logType?: LogType | undefined;
344
+ cloudWatchLog?: CloudWatchLog | undefined;
345
+ }
346
+ export interface CodeReviewJobTask {
347
+ taskId: string | undefined;
348
+ codeReviewId?: string | undefined;
349
+ codeReviewJobId?: string | undefined;
350
+ agentSpaceId?: string | undefined;
351
+ title?: string | undefined;
352
+ description?: string | undefined;
353
+ categories?: Category[] | undefined;
354
+ riskType?: RiskType | undefined;
355
+ executionStatus?: TaskExecutionStatus | undefined;
356
+ logsLocation?: LogLocation | undefined;
357
+ createdAt?: Date | undefined;
358
+ updatedAt?: Date | undefined;
359
+ }
360
+ export interface BatchGetCodeReviewJobTasksOutput {
361
+ codeReviewJobTasks?: CodeReviewJobTask[] | undefined;
362
+ notFound?: string[] | undefined;
363
+ }
364
+ export interface BatchGetCodeReviewsInput {
365
+ codeReviewIds: string[] | undefined;
366
+ agentSpaceId: string | undefined;
367
+ }
368
+ export interface CodeReview {
369
+ codeReviewId: string | undefined;
370
+ agentSpaceId: string | undefined;
371
+ title: string | undefined;
372
+ assets: Assets | undefined;
373
+ serviceRole?: string | undefined;
374
+ logConfig?: CloudWatchLog | undefined;
375
+ codeRemediationStrategy?: CodeRemediationStrategy | undefined;
376
+ createdAt?: Date | undefined;
377
+ updatedAt?: Date | undefined;
378
+ }
379
+ export interface BatchGetCodeReviewsOutput {
380
+ codeReviews?: CodeReview[] | undefined;
381
+ notFound?: string[] | undefined;
382
+ }
281
383
  export interface BatchGetFindingsInput {
282
384
  findingIds: string[] | undefined;
283
385
  agentSpaceId: string | undefined;
284
386
  }
387
+ export interface CodeLocation {
388
+ filePath: string | undefined;
389
+ lineStart?: number | undefined;
390
+ lineEnd?: number | undefined;
391
+ label?: string | undefined;
392
+ }
285
393
  export interface CodeRemediationTaskDetails {
286
394
  repoName?: string | undefined;
287
395
  codeDiffLink?: string | undefined;
@@ -297,6 +405,8 @@ export interface Finding {
297
405
  agentSpaceId: string | undefined;
298
406
  pentestId?: string | undefined;
299
407
  pentestJobId?: string | undefined;
408
+ codeReviewId?: string | undefined;
409
+ codeReviewJobId?: string | undefined;
300
410
  taskId?: string | undefined;
301
411
  name?: string | undefined;
302
412
  description?: string | undefined;
@@ -309,6 +419,7 @@ export interface Finding {
309
419
  attackScript?: string | undefined;
310
420
  codeRemediationTask?: CodeRemediationTask | undefined;
311
421
  lastUpdatedBy?: string | undefined;
422
+ codeLocations?: CodeLocation[] | undefined;
312
423
  createdAt?: Date | undefined;
313
424
  updatedAt?: Date | undefined;
314
425
  }
@@ -320,21 +431,6 @@ export interface BatchGetPentestJobsInput {
320
431
  pentestJobIds: string[] | undefined;
321
432
  agentSpaceId: string | undefined;
322
433
  }
323
- export interface ErrorInformation {
324
- code?: ErrorCode | undefined;
325
- message?: string | undefined;
326
- }
327
- export interface ExecutionContext {
328
- contextType?: ContextType | undefined;
329
- context?: string | undefined;
330
- timestamp?: Date | undefined;
331
- }
332
- export interface Step {
333
- name?: StepName | undefined;
334
- status?: StepStatus | undefined;
335
- createdAt?: Date | undefined;
336
- updatedAt?: Date | undefined;
337
- }
338
434
  export interface PentestJob {
339
435
  pentestJobId?: string | undefined;
340
436
  pentestId?: string | undefined;
@@ -368,14 +464,6 @@ export interface BatchGetPentestJobTasksInput {
368
464
  agentSpaceId: string | undefined;
369
465
  taskIds: string[] | undefined;
370
466
  }
371
- export interface Category {
372
- name?: string | undefined;
373
- isPrimary?: boolean | undefined;
374
- }
375
- export interface LogLocation {
376
- logType?: LogType | undefined;
377
- cloudWatchLog?: CloudWatchLog | undefined;
378
- }
379
467
  export interface Task {
380
468
  taskId: string | undefined;
381
469
  pentestId?: string | undefined;
@@ -433,6 +521,51 @@ export interface BatchGetTargetDomainsOutput {
433
521
  targetDomains?: TargetDomain[] | undefined;
434
522
  notFound?: string[] | undefined;
435
523
  }
524
+ export interface CodeReviewJobSummary {
525
+ codeReviewJobId: string | undefined;
526
+ codeReviewId: string | undefined;
527
+ title?: string | undefined;
528
+ status?: JobStatus | undefined;
529
+ createdAt?: Date | undefined;
530
+ updatedAt?: Date | undefined;
531
+ }
532
+ export interface CodeReviewJobTaskSummary {
533
+ taskId: string | undefined;
534
+ codeReviewId?: string | undefined;
535
+ codeReviewJobId?: string | undefined;
536
+ agentSpaceId?: string | undefined;
537
+ title?: string | undefined;
538
+ riskType?: RiskType | undefined;
539
+ executionStatus?: TaskExecutionStatus | undefined;
540
+ createdAt?: Date | undefined;
541
+ updatedAt?: Date | undefined;
542
+ }
543
+ export interface CodeReviewSummary {
544
+ codeReviewId: string | undefined;
545
+ agentSpaceId: string | undefined;
546
+ title: string | undefined;
547
+ createdAt?: Date | undefined;
548
+ updatedAt?: Date | undefined;
549
+ }
550
+ export interface CreateCodeReviewInput {
551
+ title: string | undefined;
552
+ agentSpaceId: string | undefined;
553
+ assets: Assets | undefined;
554
+ serviceRole?: string | undefined;
555
+ logConfig?: CloudWatchLog | undefined;
556
+ codeRemediationStrategy?: CodeRemediationStrategy | undefined;
557
+ }
558
+ export interface CreateCodeReviewOutput {
559
+ codeReviewId: string | undefined;
560
+ title?: string | undefined;
561
+ createdAt?: Date | undefined;
562
+ updatedAt?: Date | undefined;
563
+ assets?: Assets | undefined;
564
+ serviceRole?: string | undefined;
565
+ logConfig?: CloudWatchLog | undefined;
566
+ agentSpaceId?: string | undefined;
567
+ codeRemediationStrategy?: CodeRemediationStrategy | undefined;
568
+ }
436
569
  export interface GitHubIntegrationInput {
437
570
  code: string | undefined;
438
571
  state: string | undefined;
@@ -565,6 +698,8 @@ export interface FindingSummary {
565
698
  agentSpaceId: string | undefined;
566
699
  pentestId?: string | undefined;
567
700
  pentestJobId?: string | undefined;
701
+ codeReviewId?: string | undefined;
702
+ codeReviewJobId?: string | undefined;
568
703
  name?: string | undefined;
569
704
  status?: FindingStatus | undefined;
570
705
  riskType?: string | undefined;
@@ -727,6 +862,37 @@ export interface ListArtifactsOutput {
727
862
  artifactSummaries: ArtifactSummary[] | undefined;
728
863
  nextToken?: string | undefined;
729
864
  }
865
+ export interface ListCodeReviewJobsForCodeReviewInput {
866
+ maxResults?: number | undefined;
867
+ codeReviewId: string | undefined;
868
+ agentSpaceId: string | undefined;
869
+ nextToken?: string | undefined;
870
+ }
871
+ export interface ListCodeReviewJobsForCodeReviewOutput {
872
+ codeReviewJobSummaries?: CodeReviewJobSummary[] | undefined;
873
+ nextToken?: string | undefined;
874
+ }
875
+ export interface ListCodeReviewJobTasksInput {
876
+ agentSpaceId: string | undefined;
877
+ maxResults?: number | undefined;
878
+ codeReviewJobId?: string | undefined;
879
+ stepName?: StepName | undefined;
880
+ categoryName?: string | undefined;
881
+ nextToken?: string | undefined;
882
+ }
883
+ export interface ListCodeReviewJobTasksOutput {
884
+ codeReviewJobTaskSummaries?: CodeReviewJobTaskSummary[] | undefined;
885
+ nextToken?: string | undefined;
886
+ }
887
+ export interface ListCodeReviewsInput {
888
+ maxResults?: number | undefined;
889
+ nextToken?: string | undefined;
890
+ agentSpaceId: string | undefined;
891
+ }
892
+ export interface ListCodeReviewsOutput {
893
+ codeReviewSummaries?: CodeReviewSummary[] | undefined;
894
+ nextToken?: string | undefined;
895
+ }
730
896
  export interface ListDiscoveredEndpointsInput {
731
897
  maxResults?: number | undefined;
732
898
  pentestJobId: string | undefined;
@@ -740,7 +906,8 @@ export interface ListDiscoveredEndpointsOutput {
740
906
  }
741
907
  export interface ListFindingsInput {
742
908
  maxResults?: number | undefined;
743
- pentestJobId: string | undefined;
909
+ pentestJobId?: string | undefined;
910
+ codeReviewJobId?: string | undefined;
744
911
  agentSpaceId: string | undefined;
745
912
  nextToken?: string | undefined;
746
913
  riskType?: string | undefined;
@@ -886,10 +1053,24 @@ export interface ListTargetDomainsOutput {
886
1053
  }
887
1054
  export interface StartCodeRemediationInput {
888
1055
  agentSpaceId: string | undefined;
889
- pentestJobId: string | undefined;
1056
+ pentestJobId?: string | undefined;
1057
+ codeReviewJobId?: string | undefined;
890
1058
  findingIds: string[] | undefined;
891
1059
  }
892
1060
  export interface StartCodeRemediationOutput {}
1061
+ export interface StartCodeReviewJobInput {
1062
+ agentSpaceId: string | undefined;
1063
+ codeReviewId: string | undefined;
1064
+ }
1065
+ export interface StartCodeReviewJobOutput {
1066
+ title?: string | undefined;
1067
+ status?: JobStatus | undefined;
1068
+ createdAt?: Date | undefined;
1069
+ updatedAt?: Date | undefined;
1070
+ codeReviewId: string | undefined;
1071
+ codeReviewJobId: string | undefined;
1072
+ agentSpaceId?: string | undefined;
1073
+ }
893
1074
  export interface StartPentestJobInput {
894
1075
  agentSpaceId: string | undefined;
895
1076
  pentestId: string | undefined;
@@ -903,6 +1084,11 @@ export interface StartPentestJobOutput {
903
1084
  pentestJobId?: string | undefined;
904
1085
  agentSpaceId?: string | undefined;
905
1086
  }
1087
+ export interface StopCodeReviewJobInput {
1088
+ agentSpaceId: string | undefined;
1089
+ codeReviewJobId: string | undefined;
1090
+ }
1091
+ export interface StopCodeReviewJobOutput {}
906
1092
  export interface StopPentestJobInput {
907
1093
  agentSpaceId: string | undefined;
908
1094
  pentestJobId: string | undefined;
@@ -931,6 +1117,26 @@ export interface UntagResourceInput {
931
1117
  tagKeys: string[] | undefined;
932
1118
  }
933
1119
  export interface UntagResourceOutput {}
1120
+ export interface UpdateCodeReviewInput {
1121
+ codeReviewId: string | undefined;
1122
+ agentSpaceId: string | undefined;
1123
+ title?: string | undefined;
1124
+ assets?: Assets | undefined;
1125
+ serviceRole?: string | undefined;
1126
+ logConfig?: CloudWatchLog | undefined;
1127
+ codeRemediationStrategy?: CodeRemediationStrategy | undefined;
1128
+ }
1129
+ export interface UpdateCodeReviewOutput {
1130
+ codeReviewId: string | undefined;
1131
+ title?: string | undefined;
1132
+ createdAt?: Date | undefined;
1133
+ updatedAt?: Date | undefined;
1134
+ assets?: Assets | undefined;
1135
+ serviceRole?: string | undefined;
1136
+ logConfig?: CloudWatchLog | undefined;
1137
+ agentSpaceId?: string | undefined;
1138
+ codeRemediationStrategy?: CodeRemediationStrategy | undefined;
1139
+ }
934
1140
  export interface UpdateFindingInput {
935
1141
  findingId: string | undefined;
936
1142
  agentSpaceId: string | undefined;
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import {
3
+ ListCodeReviewJobTasksCommandInput,
4
+ ListCodeReviewJobTasksCommandOutput,
5
+ } from "../commands/ListCodeReviewJobTasksCommand";
6
+ import { SecurityAgentPaginationConfiguration } from "./Interfaces";
7
+ export declare const paginateListCodeReviewJobTasks: (
8
+ config: SecurityAgentPaginationConfiguration,
9
+ input: ListCodeReviewJobTasksCommandInput,
10
+ ...rest: any[]
11
+ ) => Paginator<ListCodeReviewJobTasksCommandOutput>;
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import {
3
+ ListCodeReviewJobsForCodeReviewCommandInput,
4
+ ListCodeReviewJobsForCodeReviewCommandOutput,
5
+ } from "../commands/ListCodeReviewJobsForCodeReviewCommand";
6
+ import { SecurityAgentPaginationConfiguration } from "./Interfaces";
7
+ export declare const paginateListCodeReviewJobsForCodeReview: (
8
+ config: SecurityAgentPaginationConfiguration,
9
+ input: ListCodeReviewJobsForCodeReviewCommandInput,
10
+ ...rest: any[]
11
+ ) => Paginator<ListCodeReviewJobsForCodeReviewCommandOutput>;
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import {
3
+ ListCodeReviewsCommandInput,
4
+ ListCodeReviewsCommandOutput,
5
+ } from "../commands/ListCodeReviewsCommand";
6
+ import { SecurityAgentPaginationConfiguration } from "./Interfaces";
7
+ export declare const paginateListCodeReviews: (
8
+ config: SecurityAgentPaginationConfiguration,
9
+ input: ListCodeReviewsCommandInput,
10
+ ...rest: any[]
11
+ ) => Paginator<ListCodeReviewsCommandOutput>;
@@ -2,6 +2,9 @@ export * from "./Interfaces";
2
2
  export * from "./ListAgentSpacesPaginator";
3
3
  export * from "./ListApplicationsPaginator";
4
4
  export * from "./ListArtifactsPaginator";
5
+ export * from "./ListCodeReviewJobsForCodeReviewPaginator";
6
+ export * from "./ListCodeReviewJobTasksPaginator";
7
+ export * from "./ListCodeReviewsPaginator";
5
8
  export * from "./ListDiscoveredEndpointsPaginator";
6
9
  export * from "./ListFindingsPaginator";
7
10
  export * from "./ListIntegratedResourcesPaginator";
@@ -3,7 +3,7 @@ import { SecurityAgentClientConfig } from "./SecurityAgentClient";
3
3
  export declare const getRuntimeConfig: (config: SecurityAgentClientConfig) => {
4
4
  runtime: string;
5
5
  defaultsMode: import("@smithy/types").Provider<
6
- import("@smithy/smithy-client").ResolvedDefaultsMode
6
+ import("@smithy/core/client").ResolvedDefaultsMode
7
7
  >;
8
8
  bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
9
9
  credentialDefaultProvider:
@@ -17,7 +17,7 @@ export declare const getRuntimeConfig: (config: SecurityAgentClientConfig) => {
17
17
  maxAttempts: number | import("@smithy/types").Provider<number>;
18
18
  region: string | import("@smithy/types").Provider<any>;
19
19
  requestHandler:
20
- | import("@smithy/protocol-http").HttpHandler<any>
20
+ | import("@smithy/core/protocols").HttpHandler<any>
21
21
  | RequestHandler;
22
22
  retryMode: string | import("@smithy/types").Provider<string>;
23
23
  sha256: import("@smithy/types").HashConstructor;
@@ -3,7 +3,7 @@ import { SecurityAgentClientConfig } from "./SecurityAgentClient";
3
3
  export declare const getRuntimeConfig: (config: SecurityAgentClientConfig) => {
4
4
  runtime: string;
5
5
  defaultsMode: import("@smithy/types").Provider<
6
- import("@smithy/smithy-client").ResolvedDefaultsMode
6
+ import("@smithy/core/client").ResolvedDefaultsMode
7
7
  >;
8
8
  authSchemePreference: string[] | import("@smithy/types").Provider<string[]>;
9
9
  bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
@@ -19,7 +19,7 @@ export declare const getRuntimeConfig: (config: SecurityAgentClientConfig) => {
19
19
  region: string | import("@smithy/types").Provider<string>;
20
20
  requestHandler:
21
21
  | RequestHandler
22
- | import("@smithy/protocol-http").HttpHandler<any>;
22
+ | import("@smithy/core/protocols").HttpHandler<any>;
23
23
  retryMode: string | import("@smithy/types").Provider<string>;
24
24
  sha256: import("@smithy/types").HashConstructor;
25
25
  streamCollector: import("@smithy/types").StreamCollector;
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: SecurityAgentClientConfig) => {
6
6
  | import("@smithy/types").NodeHttpHandlerOptions
7
7
  | import("@smithy/types").FetchHttpHandlerOptions
8
8
  | Record<string, unknown>
9
- | import("@smithy/protocol-http").HttpHandler<any>
9
+ | import("@smithy/core/protocols").HttpHandler<any>
10
10
  | import("@smithy/fetch-http-handler").FetchHttpHandler;
11
11
  cacheMiddleware?: boolean;
12
12
  protocol:
@@ -46,9 +46,9 @@ export declare const getRuntimeConfig: (config: SecurityAgentClientConfig) => {
46
46
  logger: import("@smithy/types").Logger;
47
47
  extensions: import("./runtimeExtensions").RuntimeExtension[];
48
48
  defaultsMode:
49
- | import("@smithy/smithy-client").DefaultsMode
49
+ | import("@smithy/core/client").DefaultsMode
50
50
  | import("@smithy/types").Provider<
51
- import("@smithy/smithy-client").DefaultsMode
51
+ import("@smithy/core/client").DefaultsMode
52
52
  >;
53
53
  customUserAgent?: string | import("@smithy/types").UserAgent;
54
54
  userAgentAppId?:
@@ -25,12 +25,20 @@ export declare var ArtifactSummary$: StaticStructureSchema;
25
25
  export declare var Assets$: StaticStructureSchema;
26
26
  export declare var Authentication$: StaticStructureSchema;
27
27
  export declare var AWSResources$: StaticStructureSchema;
28
+ export declare var BatchDeleteCodeReviewsInput$: StaticStructureSchema;
29
+ export declare var BatchDeleteCodeReviewsOutput$: StaticStructureSchema;
28
30
  export declare var BatchDeletePentestsInput$: StaticStructureSchema;
29
31
  export declare var BatchDeletePentestsOutput$: StaticStructureSchema;
30
32
  export declare var BatchGetAgentSpacesInput$: StaticStructureSchema;
31
33
  export declare var BatchGetAgentSpacesOutput$: StaticStructureSchema;
32
34
  export declare var BatchGetArtifactMetadataInput$: StaticStructureSchema;
33
35
  export declare var BatchGetArtifactMetadataOutput$: StaticStructureSchema;
36
+ export declare var BatchGetCodeReviewJobsInput$: StaticStructureSchema;
37
+ export declare var BatchGetCodeReviewJobsOutput$: StaticStructureSchema;
38
+ export declare var BatchGetCodeReviewJobTasksInput$: StaticStructureSchema;
39
+ export declare var BatchGetCodeReviewJobTasksOutput$: StaticStructureSchema;
40
+ export declare var BatchGetCodeReviewsInput$: StaticStructureSchema;
41
+ export declare var BatchGetCodeReviewsOutput$: StaticStructureSchema;
34
42
  export declare var BatchGetFindingsInput$: StaticStructureSchema;
35
43
  export declare var BatchGetFindingsOutput$: StaticStructureSchema;
36
44
  export declare var BatchGetPentestJobsInput$: StaticStructureSchema;
@@ -43,13 +51,22 @@ export declare var BatchGetTargetDomainsInput$: StaticStructureSchema;
43
51
  export declare var BatchGetTargetDomainsOutput$: StaticStructureSchema;
44
52
  export declare var Category$: StaticStructureSchema;
45
53
  export declare var CloudWatchLog$: StaticStructureSchema;
54
+ export declare var CodeLocation$: StaticStructureSchema;
46
55
  export declare var CodeRemediationTask$: StaticStructureSchema;
47
56
  export declare var CodeRemediationTaskDetails$: StaticStructureSchema;
57
+ export declare var CodeReview$: StaticStructureSchema;
58
+ export declare var CodeReviewJob$: StaticStructureSchema;
59
+ export declare var CodeReviewJobSummary$: StaticStructureSchema;
60
+ export declare var CodeReviewJobTask$: StaticStructureSchema;
61
+ export declare var CodeReviewJobTaskSummary$: StaticStructureSchema;
48
62
  export declare var CodeReviewSettings$: StaticStructureSchema;
63
+ export declare var CodeReviewSummary$: StaticStructureSchema;
49
64
  export declare var CreateAgentSpaceInput$: StaticStructureSchema;
50
65
  export declare var CreateAgentSpaceOutput$: StaticStructureSchema;
51
66
  export declare var CreateApplicationRequest$: StaticStructureSchema;
52
67
  export declare var CreateApplicationResponse$: StaticStructureSchema;
68
+ export declare var CreateCodeReviewInput$: StaticStructureSchema;
69
+ export declare var CreateCodeReviewOutput$: StaticStructureSchema;
53
70
  export declare var CreateIntegrationInput$: StaticStructureSchema;
54
71
  export declare var CreateIntegrationOutput$: StaticStructureSchema;
55
72
  export declare var CreateMembershipRequest$: StaticStructureSchema;
@@ -64,6 +81,7 @@ export declare var DeleteAgentSpaceOutput$: StaticStructureSchema;
64
81
  export declare var DeleteApplicationRequest$: StaticStructureSchema;
65
82
  export declare var DeleteArtifactInput$: StaticStructureSchema;
66
83
  export declare var DeleteArtifactOutput$: StaticStructureSchema;
84
+ export declare var DeleteCodeReviewFailure$: StaticStructureSchema;
67
85
  export declare var DeleteIntegrationInput$: StaticStructureSchema;
68
86
  export declare var DeleteIntegrationOutput$: StaticStructureSchema;
69
87
  export declare var DeleteMembershipRequest$: StaticStructureSchema;
@@ -103,6 +121,12 @@ export declare var ListApplicationsRequest$: StaticStructureSchema;
103
121
  export declare var ListApplicationsResponse$: StaticStructureSchema;
104
122
  export declare var ListArtifactsInput$: StaticStructureSchema;
105
123
  export declare var ListArtifactsOutput$: StaticStructureSchema;
124
+ export declare var ListCodeReviewJobsForCodeReviewInput$: StaticStructureSchema;
125
+ export declare var ListCodeReviewJobsForCodeReviewOutput$: StaticStructureSchema;
126
+ export declare var ListCodeReviewJobTasksInput$: StaticStructureSchema;
127
+ export declare var ListCodeReviewJobTasksOutput$: StaticStructureSchema;
128
+ export declare var ListCodeReviewsInput$: StaticStructureSchema;
129
+ export declare var ListCodeReviewsOutput$: StaticStructureSchema;
106
130
  export declare var ListDiscoveredEndpointsInput$: StaticStructureSchema;
107
131
  export declare var ListDiscoveredEndpointsOutput$: StaticStructureSchema;
108
132
  export declare var ListFindingsInput$: StaticStructureSchema;
@@ -134,9 +158,13 @@ export declare var PentestSummary$: StaticStructureSchema;
134
158
  export declare var SourceCodeRepository$: StaticStructureSchema;
135
159
  export declare var StartCodeRemediationInput$: StaticStructureSchema;
136
160
  export declare var StartCodeRemediationOutput$: StaticStructureSchema;
161
+ export declare var StartCodeReviewJobInput$: StaticStructureSchema;
162
+ export declare var StartCodeReviewJobOutput$: StaticStructureSchema;
137
163
  export declare var StartPentestJobInput$: StaticStructureSchema;
138
164
  export declare var StartPentestJobOutput$: StaticStructureSchema;
139
165
  export declare var Step$: StaticStructureSchema;
166
+ export declare var StopCodeReviewJobInput$: StaticStructureSchema;
167
+ export declare var StopCodeReviewJobOutput$: StaticStructureSchema;
140
168
  export declare var StopPentestJobInput$: StaticStructureSchema;
141
169
  export declare var StopPentestJobOutput$: StaticStructureSchema;
142
170
  export declare var TagResourceInput$: StaticStructureSchema;
@@ -151,6 +179,8 @@ export declare var UpdateAgentSpaceInput$: StaticStructureSchema;
151
179
  export declare var UpdateAgentSpaceOutput$: StaticStructureSchema;
152
180
  export declare var UpdateApplicationRequest$: StaticStructureSchema;
153
181
  export declare var UpdateApplicationResponse$: StaticStructureSchema;
182
+ export declare var UpdateCodeReviewInput$: StaticStructureSchema;
183
+ export declare var UpdateCodeReviewOutput$: StaticStructureSchema;
154
184
  export declare var UpdateFindingInput$: StaticStructureSchema;
155
185
  export declare var UpdateFindingOutput$: StaticStructureSchema;
156
186
  export declare var UpdateIntegratedResourcesInput$: StaticStructureSchema;
@@ -174,9 +204,13 @@ export declare var MembershipConfig$: StaticUnionSchema;
174
204
  export declare var ProviderInput$: StaticUnionSchema;
175
205
  export declare var ProviderResourceCapabilities$: StaticUnionSchema;
176
206
  export declare var AddArtifact$: StaticOperationSchema;
207
+ export declare var BatchDeleteCodeReviews$: StaticOperationSchema;
177
208
  export declare var BatchDeletePentests$: StaticOperationSchema;
178
209
  export declare var BatchGetAgentSpaces$: StaticOperationSchema;
179
210
  export declare var BatchGetArtifactMetadata$: StaticOperationSchema;
211
+ export declare var BatchGetCodeReviewJobs$: StaticOperationSchema;
212
+ export declare var BatchGetCodeReviewJobTasks$: StaticOperationSchema;
213
+ export declare var BatchGetCodeReviews$: StaticOperationSchema;
180
214
  export declare var BatchGetFindings$: StaticOperationSchema;
181
215
  export declare var BatchGetPentestJobs$: StaticOperationSchema;
182
216
  export declare var BatchGetPentestJobTasks$: StaticOperationSchema;
@@ -184,6 +218,7 @@ export declare var BatchGetPentests$: StaticOperationSchema;
184
218
  export declare var BatchGetTargetDomains$: StaticOperationSchema;
185
219
  export declare var CreateAgentSpace$: StaticOperationSchema;
186
220
  export declare var CreateApplication$: StaticOperationSchema;
221
+ export declare var CreateCodeReview$: StaticOperationSchema;
187
222
  export declare var CreateIntegration$: StaticOperationSchema;
188
223
  export declare var CreateMembership$: StaticOperationSchema;
189
224
  export declare var CreatePentest$: StaticOperationSchema;
@@ -201,6 +236,9 @@ export declare var InitiateProviderRegistration$: StaticOperationSchema;
201
236
  export declare var ListAgentSpaces$: StaticOperationSchema;
202
237
  export declare var ListApplications$: StaticOperationSchema;
203
238
  export declare var ListArtifacts$: StaticOperationSchema;
239
+ export declare var ListCodeReviewJobsForCodeReview$: StaticOperationSchema;
240
+ export declare var ListCodeReviewJobTasks$: StaticOperationSchema;
241
+ export declare var ListCodeReviews$: StaticOperationSchema;
204
242
  export declare var ListDiscoveredEndpoints$: StaticOperationSchema;
205
243
  export declare var ListFindings$: StaticOperationSchema;
206
244
  export declare var ListIntegratedResources$: StaticOperationSchema;
@@ -212,12 +250,15 @@ export declare var ListPentests$: StaticOperationSchema;
212
250
  export declare var ListTagsForResource$: StaticOperationSchema;
213
251
  export declare var ListTargetDomains$: StaticOperationSchema;
214
252
  export declare var StartCodeRemediation$: StaticOperationSchema;
253
+ export declare var StartCodeReviewJob$: StaticOperationSchema;
215
254
  export declare var StartPentestJob$: StaticOperationSchema;
255
+ export declare var StopCodeReviewJob$: StaticOperationSchema;
216
256
  export declare var StopPentestJob$: StaticOperationSchema;
217
257
  export declare var TagResource$: StaticOperationSchema;
218
258
  export declare var UntagResource$: StaticOperationSchema;
219
259
  export declare var UpdateAgentSpace$: StaticOperationSchema;
220
260
  export declare var UpdateApplication$: StaticOperationSchema;
261
+ export declare var UpdateCodeReview$: StaticOperationSchema;
221
262
  export declare var UpdateFinding$: StaticOperationSchema;
222
263
  export declare var UpdateIntegratedResources$: StaticOperationSchema;
223
264
  export declare var UpdatePentest$: StaticOperationSchema;