@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
@@ -0,0 +1,7 @@
1
+ import type { Paginator } from "@smithy/types";
2
+ import { ListCodeReviewJobTasksCommandInput, ListCodeReviewJobTasksCommandOutput } from "../commands/ListCodeReviewJobTasksCommand";
3
+ import type { SecurityAgentPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListCodeReviewJobTasks: (config: SecurityAgentPaginationConfiguration, input: ListCodeReviewJobTasksCommandInput, ...rest: any[]) => Paginator<ListCodeReviewJobTasksCommandOutput>;
@@ -0,0 +1,7 @@
1
+ import type { Paginator } from "@smithy/types";
2
+ import { ListCodeReviewJobsForCodeReviewCommandInput, ListCodeReviewJobsForCodeReviewCommandOutput } from "../commands/ListCodeReviewJobsForCodeReviewCommand";
3
+ import type { SecurityAgentPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListCodeReviewJobsForCodeReview: (config: SecurityAgentPaginationConfiguration, input: ListCodeReviewJobsForCodeReviewCommandInput, ...rest: any[]) => Paginator<ListCodeReviewJobsForCodeReviewCommandOutput>;
@@ -0,0 +1,7 @@
1
+ import type { Paginator } from "@smithy/types";
2
+ import { ListCodeReviewsCommandInput, ListCodeReviewsCommandOutput } from "../commands/ListCodeReviewsCommand";
3
+ import type { SecurityAgentPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListCodeReviews: (config: SecurityAgentPaginationConfiguration, input: ListCodeReviewsCommandInput, ...rest: any[]) => 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";
@@ -5,13 +5,13 @@ import type { SecurityAgentClientConfig } from "./SecurityAgentClient";
5
5
  */
6
6
  export declare const getRuntimeConfig: (config: SecurityAgentClientConfig) => {
7
7
  runtime: string;
8
- defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
8
+ defaultsMode: import("@smithy/types").Provider<import("@smithy/core/client").ResolvedDefaultsMode>;
9
9
  bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
10
10
  credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
11
11
  defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
12
12
  maxAttempts: number | import("@smithy/types").Provider<number>;
13
13
  region: string | import("@smithy/types").Provider<any>;
14
- requestHandler: import("@smithy/protocol-http").HttpHandler<any> | RequestHandler;
14
+ requestHandler: import("@smithy/core/protocols").HttpHandler<any> | RequestHandler;
15
15
  retryMode: string | import("@smithy/types").Provider<string>;
16
16
  sha256: import("@smithy/types").HashConstructor;
17
17
  streamCollector: import("@smithy/types").StreamCollector;
@@ -5,14 +5,14 @@ import type { SecurityAgentClientConfig } from "./SecurityAgentClient";
5
5
  */
6
6
  export declare const getRuntimeConfig: (config: SecurityAgentClientConfig) => {
7
7
  runtime: string;
8
- defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
8
+ defaultsMode: import("@smithy/types").Provider<import("@smithy/core/client").ResolvedDefaultsMode>;
9
9
  authSchemePreference: string[] | import("@smithy/types").Provider<string[]>;
10
10
  bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
11
11
  credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit) => import("@aws-sdk/credential-provider-node/dist-types/runtime/memoize-chain").MemoizedRuntimeConfigAwsCredentialIdentityProvider);
12
12
  defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-node").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
13
13
  maxAttempts: number | import("@smithy/types").Provider<number>;
14
14
  region: string | import("@smithy/types").Provider<string>;
15
- requestHandler: RequestHandler | import("@smithy/protocol-http").HttpHandler<any>;
15
+ requestHandler: RequestHandler | import("@smithy/core/protocols").HttpHandler<any>;
16
16
  retryMode: string | import("@smithy/types").Provider<string>;
17
17
  sha256: import("@smithy/types").HashConstructor;
18
18
  streamCollector: import("@smithy/types").StreamCollector;
@@ -5,7 +5,7 @@ import type { SecurityAgentClientConfig } from "./SecurityAgentClient";
5
5
  export declare const getRuntimeConfig: (config: SecurityAgentClientConfig) => {
6
6
  runtime: string;
7
7
  sha256: import("@smithy/types").HashConstructor;
8
- requestHandler: import("@smithy/types").NodeHttpHandlerOptions | import("@smithy/types").FetchHttpHandlerOptions | Record<string, unknown> | import("@smithy/protocol-http").HttpHandler<any> | import("@smithy/fetch-http-handler").FetchHttpHandler;
8
+ requestHandler: import("@smithy/types").NodeHttpHandlerOptions | import("@smithy/types").FetchHttpHandlerOptions | Record<string, unknown> | import("@smithy/core/protocols").HttpHandler<any> | import("@smithy/fetch-http-handler").FetchHttpHandler;
9
9
  cacheMiddleware?: boolean;
10
10
  protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
11
11
  protocolSettings: {
@@ -32,7 +32,7 @@ export declare const getRuntimeConfig: (config: SecurityAgentClientConfig) => {
32
32
  retryMode: string | import("@smithy/types").Provider<string>;
33
33
  logger: import("@smithy/types").Logger;
34
34
  extensions: import("./runtimeExtensions").RuntimeExtension[];
35
- defaultsMode: import("@smithy/smithy-client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/smithy-client").DefaultsMode>;
35
+ defaultsMode: import("@smithy/core/client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/core/client").DefaultsMode>;
36
36
  customUserAgent?: string | import("@smithy/types").UserAgent;
37
37
  userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
38
38
  retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
@@ -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;
@@ -7,6 +7,10 @@ import {
7
7
  AddArtifactCommandInput,
8
8
  AddArtifactCommandOutput,
9
9
  } from "./commands/AddArtifactCommand";
10
+ import {
11
+ BatchDeleteCodeReviewsCommandInput,
12
+ BatchDeleteCodeReviewsCommandOutput,
13
+ } from "./commands/BatchDeleteCodeReviewsCommand";
10
14
  import {
11
15
  BatchDeletePentestsCommandInput,
12
16
  BatchDeletePentestsCommandOutput,
@@ -19,6 +23,18 @@ import {
19
23
  BatchGetArtifactMetadataCommandInput,
20
24
  BatchGetArtifactMetadataCommandOutput,
21
25
  } from "./commands/BatchGetArtifactMetadataCommand";
26
+ import {
27
+ BatchGetCodeReviewJobsCommandInput,
28
+ BatchGetCodeReviewJobsCommandOutput,
29
+ } from "./commands/BatchGetCodeReviewJobsCommand";
30
+ import {
31
+ BatchGetCodeReviewJobTasksCommandInput,
32
+ BatchGetCodeReviewJobTasksCommandOutput,
33
+ } from "./commands/BatchGetCodeReviewJobTasksCommand";
34
+ import {
35
+ BatchGetCodeReviewsCommandInput,
36
+ BatchGetCodeReviewsCommandOutput,
37
+ } from "./commands/BatchGetCodeReviewsCommand";
22
38
  import {
23
39
  BatchGetFindingsCommandInput,
24
40
  BatchGetFindingsCommandOutput,
@@ -47,6 +63,10 @@ import {
47
63
  CreateApplicationCommandInput,
48
64
  CreateApplicationCommandOutput,
49
65
  } from "./commands/CreateApplicationCommand";
66
+ import {
67
+ CreateCodeReviewCommandInput,
68
+ CreateCodeReviewCommandOutput,
69
+ } from "./commands/CreateCodeReviewCommand";
50
70
  import {
51
71
  CreateIntegrationCommandInput,
52
72
  CreateIntegrationCommandOutput,
@@ -115,6 +135,18 @@ import {
115
135
  ListArtifactsCommandInput,
116
136
  ListArtifactsCommandOutput,
117
137
  } from "./commands/ListArtifactsCommand";
138
+ import {
139
+ ListCodeReviewJobsForCodeReviewCommandInput,
140
+ ListCodeReviewJobsForCodeReviewCommandOutput,
141
+ } from "./commands/ListCodeReviewJobsForCodeReviewCommand";
142
+ import {
143
+ ListCodeReviewJobTasksCommandInput,
144
+ ListCodeReviewJobTasksCommandOutput,
145
+ } from "./commands/ListCodeReviewJobTasksCommand";
146
+ import {
147
+ ListCodeReviewsCommandInput,
148
+ ListCodeReviewsCommandOutput,
149
+ } from "./commands/ListCodeReviewsCommand";
118
150
  import {
119
151
  ListDiscoveredEndpointsCommandInput,
120
152
  ListDiscoveredEndpointsCommandOutput,
@@ -159,10 +191,18 @@ import {
159
191
  StartCodeRemediationCommandInput,
160
192
  StartCodeRemediationCommandOutput,
161
193
  } from "./commands/StartCodeRemediationCommand";
194
+ import {
195
+ StartCodeReviewJobCommandInput,
196
+ StartCodeReviewJobCommandOutput,
197
+ } from "./commands/StartCodeReviewJobCommand";
162
198
  import {
163
199
  StartPentestJobCommandInput,
164
200
  StartPentestJobCommandOutput,
165
201
  } from "./commands/StartPentestJobCommand";
202
+ import {
203
+ StopCodeReviewJobCommandInput,
204
+ StopCodeReviewJobCommandOutput,
205
+ } from "./commands/StopCodeReviewJobCommand";
166
206
  import {
167
207
  StopPentestJobCommandInput,
168
208
  StopPentestJobCommandOutput,
@@ -183,6 +223,10 @@ import {
183
223
  UpdateApplicationCommandInput,
184
224
  UpdateApplicationCommandOutput,
185
225
  } from "./commands/UpdateApplicationCommand";
226
+ import {
227
+ UpdateCodeReviewCommandInput,
228
+ UpdateCodeReviewCommandOutput,
229
+ } from "./commands/UpdateCodeReviewCommand";
186
230
  import {
187
231
  UpdateFindingCommandInput,
188
232
  UpdateFindingCommandOutput,
@@ -218,6 +262,19 @@ export interface SecurityAgent {
218
262
  options: __HttpHandlerOptions,
219
263
  cb: (err: any, data?: AddArtifactCommandOutput) => void
220
264
  ): void;
265
+ batchDeleteCodeReviews(
266
+ args: BatchDeleteCodeReviewsCommandInput,
267
+ options?: __HttpHandlerOptions
268
+ ): Promise<BatchDeleteCodeReviewsCommandOutput>;
269
+ batchDeleteCodeReviews(
270
+ args: BatchDeleteCodeReviewsCommandInput,
271
+ cb: (err: any, data?: BatchDeleteCodeReviewsCommandOutput) => void
272
+ ): void;
273
+ batchDeleteCodeReviews(
274
+ args: BatchDeleteCodeReviewsCommandInput,
275
+ options: __HttpHandlerOptions,
276
+ cb: (err: any, data?: BatchDeleteCodeReviewsCommandOutput) => void
277
+ ): void;
221
278
  batchDeletePentests(
222
279
  args: BatchDeletePentestsCommandInput,
223
280
  options?: __HttpHandlerOptions
@@ -257,6 +314,45 @@ export interface SecurityAgent {
257
314
  options: __HttpHandlerOptions,
258
315
  cb: (err: any, data?: BatchGetArtifactMetadataCommandOutput) => void
259
316
  ): void;
317
+ batchGetCodeReviewJobs(
318
+ args: BatchGetCodeReviewJobsCommandInput,
319
+ options?: __HttpHandlerOptions
320
+ ): Promise<BatchGetCodeReviewJobsCommandOutput>;
321
+ batchGetCodeReviewJobs(
322
+ args: BatchGetCodeReviewJobsCommandInput,
323
+ cb: (err: any, data?: BatchGetCodeReviewJobsCommandOutput) => void
324
+ ): void;
325
+ batchGetCodeReviewJobs(
326
+ args: BatchGetCodeReviewJobsCommandInput,
327
+ options: __HttpHandlerOptions,
328
+ cb: (err: any, data?: BatchGetCodeReviewJobsCommandOutput) => void
329
+ ): void;
330
+ batchGetCodeReviewJobTasks(
331
+ args: BatchGetCodeReviewJobTasksCommandInput,
332
+ options?: __HttpHandlerOptions
333
+ ): Promise<BatchGetCodeReviewJobTasksCommandOutput>;
334
+ batchGetCodeReviewJobTasks(
335
+ args: BatchGetCodeReviewJobTasksCommandInput,
336
+ cb: (err: any, data?: BatchGetCodeReviewJobTasksCommandOutput) => void
337
+ ): void;
338
+ batchGetCodeReviewJobTasks(
339
+ args: BatchGetCodeReviewJobTasksCommandInput,
340
+ options: __HttpHandlerOptions,
341
+ cb: (err: any, data?: BatchGetCodeReviewJobTasksCommandOutput) => void
342
+ ): void;
343
+ batchGetCodeReviews(
344
+ args: BatchGetCodeReviewsCommandInput,
345
+ options?: __HttpHandlerOptions
346
+ ): Promise<BatchGetCodeReviewsCommandOutput>;
347
+ batchGetCodeReviews(
348
+ args: BatchGetCodeReviewsCommandInput,
349
+ cb: (err: any, data?: BatchGetCodeReviewsCommandOutput) => void
350
+ ): void;
351
+ batchGetCodeReviews(
352
+ args: BatchGetCodeReviewsCommandInput,
353
+ options: __HttpHandlerOptions,
354
+ cb: (err: any, data?: BatchGetCodeReviewsCommandOutput) => void
355
+ ): void;
260
356
  batchGetFindings(
261
357
  args: BatchGetFindingsCommandInput,
262
358
  options?: __HttpHandlerOptions
@@ -349,6 +445,19 @@ export interface SecurityAgent {
349
445
  options: __HttpHandlerOptions,
350
446
  cb: (err: any, data?: CreateApplicationCommandOutput) => void
351
447
  ): void;
448
+ createCodeReview(
449
+ args: CreateCodeReviewCommandInput,
450
+ options?: __HttpHandlerOptions
451
+ ): Promise<CreateCodeReviewCommandOutput>;
452
+ createCodeReview(
453
+ args: CreateCodeReviewCommandInput,
454
+ cb: (err: any, data?: CreateCodeReviewCommandOutput) => void
455
+ ): void;
456
+ createCodeReview(
457
+ args: CreateCodeReviewCommandInput,
458
+ options: __HttpHandlerOptions,
459
+ cb: (err: any, data?: CreateCodeReviewCommandOutput) => void
460
+ ): void;
352
461
  createIntegration(
353
462
  args: CreateIntegrationCommandInput,
354
463
  options?: __HttpHandlerOptions
@@ -572,6 +681,45 @@ export interface SecurityAgent {
572
681
  options: __HttpHandlerOptions,
573
682
  cb: (err: any, data?: ListArtifactsCommandOutput) => void
574
683
  ): void;
684
+ listCodeReviewJobsForCodeReview(
685
+ args: ListCodeReviewJobsForCodeReviewCommandInput,
686
+ options?: __HttpHandlerOptions
687
+ ): Promise<ListCodeReviewJobsForCodeReviewCommandOutput>;
688
+ listCodeReviewJobsForCodeReview(
689
+ args: ListCodeReviewJobsForCodeReviewCommandInput,
690
+ cb: (err: any, data?: ListCodeReviewJobsForCodeReviewCommandOutput) => void
691
+ ): void;
692
+ listCodeReviewJobsForCodeReview(
693
+ args: ListCodeReviewJobsForCodeReviewCommandInput,
694
+ options: __HttpHandlerOptions,
695
+ cb: (err: any, data?: ListCodeReviewJobsForCodeReviewCommandOutput) => void
696
+ ): void;
697
+ listCodeReviewJobTasks(
698
+ args: ListCodeReviewJobTasksCommandInput,
699
+ options?: __HttpHandlerOptions
700
+ ): Promise<ListCodeReviewJobTasksCommandOutput>;
701
+ listCodeReviewJobTasks(
702
+ args: ListCodeReviewJobTasksCommandInput,
703
+ cb: (err: any, data?: ListCodeReviewJobTasksCommandOutput) => void
704
+ ): void;
705
+ listCodeReviewJobTasks(
706
+ args: ListCodeReviewJobTasksCommandInput,
707
+ options: __HttpHandlerOptions,
708
+ cb: (err: any, data?: ListCodeReviewJobTasksCommandOutput) => void
709
+ ): void;
710
+ listCodeReviews(
711
+ args: ListCodeReviewsCommandInput,
712
+ options?: __HttpHandlerOptions
713
+ ): Promise<ListCodeReviewsCommandOutput>;
714
+ listCodeReviews(
715
+ args: ListCodeReviewsCommandInput,
716
+ cb: (err: any, data?: ListCodeReviewsCommandOutput) => void
717
+ ): void;
718
+ listCodeReviews(
719
+ args: ListCodeReviewsCommandInput,
720
+ options: __HttpHandlerOptions,
721
+ cb: (err: any, data?: ListCodeReviewsCommandOutput) => void
722
+ ): void;
575
723
  listDiscoveredEndpoints(
576
724
  args: ListDiscoveredEndpointsCommandInput,
577
725
  options?: __HttpHandlerOptions
@@ -717,6 +865,19 @@ export interface SecurityAgent {
717
865
  options: __HttpHandlerOptions,
718
866
  cb: (err: any, data?: StartCodeRemediationCommandOutput) => void
719
867
  ): void;
868
+ startCodeReviewJob(
869
+ args: StartCodeReviewJobCommandInput,
870
+ options?: __HttpHandlerOptions
871
+ ): Promise<StartCodeReviewJobCommandOutput>;
872
+ startCodeReviewJob(
873
+ args: StartCodeReviewJobCommandInput,
874
+ cb: (err: any, data?: StartCodeReviewJobCommandOutput) => void
875
+ ): void;
876
+ startCodeReviewJob(
877
+ args: StartCodeReviewJobCommandInput,
878
+ options: __HttpHandlerOptions,
879
+ cb: (err: any, data?: StartCodeReviewJobCommandOutput) => void
880
+ ): void;
720
881
  startPentestJob(
721
882
  args: StartPentestJobCommandInput,
722
883
  options?: __HttpHandlerOptions
@@ -730,6 +891,19 @@ export interface SecurityAgent {
730
891
  options: __HttpHandlerOptions,
731
892
  cb: (err: any, data?: StartPentestJobCommandOutput) => void
732
893
  ): void;
894
+ stopCodeReviewJob(
895
+ args: StopCodeReviewJobCommandInput,
896
+ options?: __HttpHandlerOptions
897
+ ): Promise<StopCodeReviewJobCommandOutput>;
898
+ stopCodeReviewJob(
899
+ args: StopCodeReviewJobCommandInput,
900
+ cb: (err: any, data?: StopCodeReviewJobCommandOutput) => void
901
+ ): void;
902
+ stopCodeReviewJob(
903
+ args: StopCodeReviewJobCommandInput,
904
+ options: __HttpHandlerOptions,
905
+ cb: (err: any, data?: StopCodeReviewJobCommandOutput) => void
906
+ ): void;
733
907
  stopPentestJob(
734
908
  args: StopPentestJobCommandInput,
735
909
  options?: __HttpHandlerOptions
@@ -795,6 +969,19 @@ export interface SecurityAgent {
795
969
  options: __HttpHandlerOptions,
796
970
  cb: (err: any, data?: UpdateApplicationCommandOutput) => void
797
971
  ): void;
972
+ updateCodeReview(
973
+ args: UpdateCodeReviewCommandInput,
974
+ options?: __HttpHandlerOptions
975
+ ): Promise<UpdateCodeReviewCommandOutput>;
976
+ updateCodeReview(
977
+ args: UpdateCodeReviewCommandInput,
978
+ cb: (err: any, data?: UpdateCodeReviewCommandOutput) => void
979
+ ): void;
980
+ updateCodeReview(
981
+ args: UpdateCodeReviewCommandInput,
982
+ options: __HttpHandlerOptions,
983
+ cb: (err: any, data?: UpdateCodeReviewCommandOutput) => void
984
+ ): void;
798
985
  updateFinding(
799
986
  args: UpdateFindingCommandInput,
800
987
  options?: __HttpHandlerOptions
@@ -881,6 +1068,27 @@ export interface SecurityAgent {
881
1068
  Exclude<keyof PaginationConfiguration, "client">
882
1069
  >
883
1070
  ): Paginator<ListArtifactsCommandOutput>;
1071
+ paginateListCodeReviewJobsForCodeReview(
1072
+ args: ListCodeReviewJobsForCodeReviewCommandInput,
1073
+ paginationConfig?: Pick<
1074
+ PaginationConfiguration,
1075
+ Exclude<keyof PaginationConfiguration, "client">
1076
+ >
1077
+ ): Paginator<ListCodeReviewJobsForCodeReviewCommandOutput>;
1078
+ paginateListCodeReviewJobTasks(
1079
+ args: ListCodeReviewJobTasksCommandInput,
1080
+ paginationConfig?: Pick<
1081
+ PaginationConfiguration,
1082
+ Exclude<keyof PaginationConfiguration, "client">
1083
+ >
1084
+ ): Paginator<ListCodeReviewJobTasksCommandOutput>;
1085
+ paginateListCodeReviews(
1086
+ args: ListCodeReviewsCommandInput,
1087
+ paginationConfig?: Pick<
1088
+ PaginationConfiguration,
1089
+ Exclude<keyof PaginationConfiguration, "client">
1090
+ >
1091
+ ): Paginator<ListCodeReviewsCommandOutput>;
884
1092
  paginateListDiscoveredEndpoints(
885
1093
  args: ListDiscoveredEndpointsCommandInput,
886
1094
  paginationConfig?: Pick<