@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
@@ -6,25 +6,19 @@ import {
6
6
  UserAgentInputConfig,
7
7
  UserAgentResolvedConfig,
8
8
  } from "@aws-sdk/middleware-user-agent";
9
- import {
10
- RegionInputConfig,
11
- RegionResolvedConfig,
12
- } from "@smithy/config-resolver";
13
- import {
14
- EndpointInputConfig,
15
- EndpointResolvedConfig,
16
- } from "@smithy/middleware-endpoint";
17
- import {
18
- RetryInputConfig,
19
- RetryResolvedConfig,
20
- } from "@smithy/middleware-retry";
21
- import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
22
9
  import {
23
10
  DefaultsMode as __DefaultsMode,
24
11
  SmithyConfiguration as __SmithyConfiguration,
25
12
  SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
26
13
  Client as __Client,
27
- } from "@smithy/smithy-client";
14
+ } from "@smithy/core/client";
15
+ import { RegionInputConfig, RegionResolvedConfig } from "@smithy/core/config";
16
+ import {
17
+ EndpointInputConfig,
18
+ EndpointResolvedConfig,
19
+ } from "@smithy/core/endpoints";
20
+ import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/core/protocols";
21
+ import { RetryInputConfig, RetryResolvedConfig } from "@smithy/core/retry";
28
22
  import {
29
23
  AwsCredentialIdentityProvider,
30
24
  BodyLengthCalculator as __BodyLengthCalculator,
@@ -48,6 +42,10 @@ import {
48
42
  AddArtifactCommandInput,
49
43
  AddArtifactCommandOutput,
50
44
  } from "./commands/AddArtifactCommand";
45
+ import {
46
+ BatchDeleteCodeReviewsCommandInput,
47
+ BatchDeleteCodeReviewsCommandOutput,
48
+ } from "./commands/BatchDeleteCodeReviewsCommand";
51
49
  import {
52
50
  BatchDeletePentestsCommandInput,
53
51
  BatchDeletePentestsCommandOutput,
@@ -60,6 +58,18 @@ import {
60
58
  BatchGetArtifactMetadataCommandInput,
61
59
  BatchGetArtifactMetadataCommandOutput,
62
60
  } from "./commands/BatchGetArtifactMetadataCommand";
61
+ import {
62
+ BatchGetCodeReviewJobsCommandInput,
63
+ BatchGetCodeReviewJobsCommandOutput,
64
+ } from "./commands/BatchGetCodeReviewJobsCommand";
65
+ import {
66
+ BatchGetCodeReviewJobTasksCommandInput,
67
+ BatchGetCodeReviewJobTasksCommandOutput,
68
+ } from "./commands/BatchGetCodeReviewJobTasksCommand";
69
+ import {
70
+ BatchGetCodeReviewsCommandInput,
71
+ BatchGetCodeReviewsCommandOutput,
72
+ } from "./commands/BatchGetCodeReviewsCommand";
63
73
  import {
64
74
  BatchGetFindingsCommandInput,
65
75
  BatchGetFindingsCommandOutput,
@@ -88,6 +98,10 @@ import {
88
98
  CreateApplicationCommandInput,
89
99
  CreateApplicationCommandOutput,
90
100
  } from "./commands/CreateApplicationCommand";
101
+ import {
102
+ CreateCodeReviewCommandInput,
103
+ CreateCodeReviewCommandOutput,
104
+ } from "./commands/CreateCodeReviewCommand";
91
105
  import {
92
106
  CreateIntegrationCommandInput,
93
107
  CreateIntegrationCommandOutput,
@@ -156,6 +170,18 @@ import {
156
170
  ListArtifactsCommandInput,
157
171
  ListArtifactsCommandOutput,
158
172
  } from "./commands/ListArtifactsCommand";
173
+ import {
174
+ ListCodeReviewJobsForCodeReviewCommandInput,
175
+ ListCodeReviewJobsForCodeReviewCommandOutput,
176
+ } from "./commands/ListCodeReviewJobsForCodeReviewCommand";
177
+ import {
178
+ ListCodeReviewJobTasksCommandInput,
179
+ ListCodeReviewJobTasksCommandOutput,
180
+ } from "./commands/ListCodeReviewJobTasksCommand";
181
+ import {
182
+ ListCodeReviewsCommandInput,
183
+ ListCodeReviewsCommandOutput,
184
+ } from "./commands/ListCodeReviewsCommand";
159
185
  import {
160
186
  ListDiscoveredEndpointsCommandInput,
161
187
  ListDiscoveredEndpointsCommandOutput,
@@ -200,10 +226,18 @@ import {
200
226
  StartCodeRemediationCommandInput,
201
227
  StartCodeRemediationCommandOutput,
202
228
  } from "./commands/StartCodeRemediationCommand";
229
+ import {
230
+ StartCodeReviewJobCommandInput,
231
+ StartCodeReviewJobCommandOutput,
232
+ } from "./commands/StartCodeReviewJobCommand";
203
233
  import {
204
234
  StartPentestJobCommandInput,
205
235
  StartPentestJobCommandOutput,
206
236
  } from "./commands/StartPentestJobCommand";
237
+ import {
238
+ StopCodeReviewJobCommandInput,
239
+ StopCodeReviewJobCommandOutput,
240
+ } from "./commands/StopCodeReviewJobCommand";
207
241
  import {
208
242
  StopPentestJobCommandInput,
209
243
  StopPentestJobCommandOutput,
@@ -224,6 +258,10 @@ import {
224
258
  UpdateApplicationCommandInput,
225
259
  UpdateApplicationCommandOutput,
226
260
  } from "./commands/UpdateApplicationCommand";
261
+ import {
262
+ UpdateCodeReviewCommandInput,
263
+ UpdateCodeReviewCommandOutput,
264
+ } from "./commands/UpdateCodeReviewCommand";
227
265
  import {
228
266
  UpdateFindingCommandInput,
229
267
  UpdateFindingCommandOutput,
@@ -253,9 +291,13 @@ import { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions";
253
291
  export { __Client };
254
292
  export type ServiceInputTypes =
255
293
  | AddArtifactCommandInput
294
+ | BatchDeleteCodeReviewsCommandInput
256
295
  | BatchDeletePentestsCommandInput
257
296
  | BatchGetAgentSpacesCommandInput
258
297
  | BatchGetArtifactMetadataCommandInput
298
+ | BatchGetCodeReviewJobTasksCommandInput
299
+ | BatchGetCodeReviewJobsCommandInput
300
+ | BatchGetCodeReviewsCommandInput
259
301
  | BatchGetFindingsCommandInput
260
302
  | BatchGetPentestJobTasksCommandInput
261
303
  | BatchGetPentestJobsCommandInput
@@ -263,6 +305,7 @@ export type ServiceInputTypes =
263
305
  | BatchGetTargetDomainsCommandInput
264
306
  | CreateAgentSpaceCommandInput
265
307
  | CreateApplicationCommandInput
308
+ | CreateCodeReviewCommandInput
266
309
  | CreateIntegrationCommandInput
267
310
  | CreateMembershipCommandInput
268
311
  | CreatePentestCommandInput
@@ -280,6 +323,9 @@ export type ServiceInputTypes =
280
323
  | ListAgentSpacesCommandInput
281
324
  | ListApplicationsCommandInput
282
325
  | ListArtifactsCommandInput
326
+ | ListCodeReviewJobTasksCommandInput
327
+ | ListCodeReviewJobsForCodeReviewCommandInput
328
+ | ListCodeReviewsCommandInput
283
329
  | ListDiscoveredEndpointsCommandInput
284
330
  | ListFindingsCommandInput
285
331
  | ListIntegratedResourcesCommandInput
@@ -291,12 +337,15 @@ export type ServiceInputTypes =
291
337
  | ListTagsForResourceCommandInput
292
338
  | ListTargetDomainsCommandInput
293
339
  | StartCodeRemediationCommandInput
340
+ | StartCodeReviewJobCommandInput
294
341
  | StartPentestJobCommandInput
342
+ | StopCodeReviewJobCommandInput
295
343
  | StopPentestJobCommandInput
296
344
  | TagResourceCommandInput
297
345
  | UntagResourceCommandInput
298
346
  | UpdateAgentSpaceCommandInput
299
347
  | UpdateApplicationCommandInput
348
+ | UpdateCodeReviewCommandInput
300
349
  | UpdateFindingCommandInput
301
350
  | UpdateIntegratedResourcesCommandInput
302
351
  | UpdatePentestCommandInput
@@ -304,9 +353,13 @@ export type ServiceInputTypes =
304
353
  | VerifyTargetDomainCommandInput;
305
354
  export type ServiceOutputTypes =
306
355
  | AddArtifactCommandOutput
356
+ | BatchDeleteCodeReviewsCommandOutput
307
357
  | BatchDeletePentestsCommandOutput
308
358
  | BatchGetAgentSpacesCommandOutput
309
359
  | BatchGetArtifactMetadataCommandOutput
360
+ | BatchGetCodeReviewJobTasksCommandOutput
361
+ | BatchGetCodeReviewJobsCommandOutput
362
+ | BatchGetCodeReviewsCommandOutput
310
363
  | BatchGetFindingsCommandOutput
311
364
  | BatchGetPentestJobTasksCommandOutput
312
365
  | BatchGetPentestJobsCommandOutput
@@ -314,6 +367,7 @@ export type ServiceOutputTypes =
314
367
  | BatchGetTargetDomainsCommandOutput
315
368
  | CreateAgentSpaceCommandOutput
316
369
  | CreateApplicationCommandOutput
370
+ | CreateCodeReviewCommandOutput
317
371
  | CreateIntegrationCommandOutput
318
372
  | CreateMembershipCommandOutput
319
373
  | CreatePentestCommandOutput
@@ -331,6 +385,9 @@ export type ServiceOutputTypes =
331
385
  | ListAgentSpacesCommandOutput
332
386
  | ListApplicationsCommandOutput
333
387
  | ListArtifactsCommandOutput
388
+ | ListCodeReviewJobTasksCommandOutput
389
+ | ListCodeReviewJobsForCodeReviewCommandOutput
390
+ | ListCodeReviewsCommandOutput
334
391
  | ListDiscoveredEndpointsCommandOutput
335
392
  | ListFindingsCommandOutput
336
393
  | ListIntegratedResourcesCommandOutput
@@ -342,12 +399,15 @@ export type ServiceOutputTypes =
342
399
  | ListTagsForResourceCommandOutput
343
400
  | ListTargetDomainsCommandOutput
344
401
  | StartCodeRemediationCommandOutput
402
+ | StartCodeReviewJobCommandOutput
345
403
  | StartPentestJobCommandOutput
404
+ | StopCodeReviewJobCommandOutput
346
405
  | StopPentestJobCommandOutput
347
406
  | TagResourceCommandOutput
348
407
  | UntagResourceCommandOutput
349
408
  | UpdateAgentSpaceCommandOutput
350
409
  | UpdateApplicationCommandOutput
410
+ | UpdateCodeReviewCommandOutput
351
411
  | UpdateFindingCommandOutput
352
412
  | UpdateIntegratedResourcesCommandOutput
353
413
  | UpdatePentestCommandOutput
@@ -1,4 +1,4 @@
1
- import { Command as $Command } from "@smithy/smithy-client";
1
+ import { Command as $Command } from "@smithy/core/client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import { AddArtifactInput, AddArtifactOutput } from "../models/models_0";
4
4
  import {
@@ -15,7 +15,7 @@ export interface AddArtifactCommandOutput
15
15
  declare const AddArtifactCommand_base: {
16
16
  new (
17
17
  input: AddArtifactCommandInput
18
- ): import("@smithy/smithy-client").CommandImpl<
18
+ ): import("@smithy/core/client").CommandImpl<
19
19
  AddArtifactCommandInput,
20
20
  AddArtifactCommandOutput,
21
21
  SecurityAgentClientResolvedConfig,
@@ -24,14 +24,16 @@ declare const AddArtifactCommand_base: {
24
24
  >;
25
25
  new (
26
26
  input: AddArtifactCommandInput
27
- ): import("@smithy/smithy-client").CommandImpl<
27
+ ): import("@smithy/core/client").CommandImpl<
28
28
  AddArtifactCommandInput,
29
29
  AddArtifactCommandOutput,
30
30
  SecurityAgentClientResolvedConfig,
31
31
  ServiceInputTypes,
32
32
  ServiceOutputTypes
33
33
  >;
34
- getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
34
+ getEndpointParameterInstructions(): {
35
+ [x: string]: unknown;
36
+ };
35
37
  };
36
38
  export declare class AddArtifactCommand extends AddArtifactCommand_base {
37
39
  protected static __types: {
@@ -0,0 +1,53 @@
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ BatchDeleteCodeReviewsInput,
5
+ BatchDeleteCodeReviewsOutput,
6
+ } from "../models/models_0";
7
+ import {
8
+ SecurityAgentClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../SecurityAgentClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface BatchDeleteCodeReviewsCommandInput
15
+ extends BatchDeleteCodeReviewsInput {}
16
+ export interface BatchDeleteCodeReviewsCommandOutput
17
+ extends BatchDeleteCodeReviewsOutput,
18
+ __MetadataBearer {}
19
+ declare const BatchDeleteCodeReviewsCommand_base: {
20
+ new (
21
+ input: BatchDeleteCodeReviewsCommandInput
22
+ ): import("@smithy/core/client").CommandImpl<
23
+ BatchDeleteCodeReviewsCommandInput,
24
+ BatchDeleteCodeReviewsCommandOutput,
25
+ SecurityAgentClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: BatchDeleteCodeReviewsCommandInput
31
+ ): import("@smithy/core/client").CommandImpl<
32
+ BatchDeleteCodeReviewsCommandInput,
33
+ BatchDeleteCodeReviewsCommandOutput,
34
+ SecurityAgentClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): {
39
+ [x: string]: unknown;
40
+ };
41
+ };
42
+ export declare class BatchDeleteCodeReviewsCommand extends BatchDeleteCodeReviewsCommand_base {
43
+ protected static __types: {
44
+ api: {
45
+ input: BatchDeleteCodeReviewsInput;
46
+ output: BatchDeleteCodeReviewsOutput;
47
+ };
48
+ sdk: {
49
+ input: BatchDeleteCodeReviewsCommandInput;
50
+ output: BatchDeleteCodeReviewsCommandOutput;
51
+ };
52
+ };
53
+ }
@@ -1,4 +1,4 @@
1
- import { Command as $Command } from "@smithy/smithy-client";
1
+ import { Command as $Command } from "@smithy/core/client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import {
4
4
  BatchDeletePentestsInput,
@@ -19,7 +19,7 @@ export interface BatchDeletePentestsCommandOutput
19
19
  declare const BatchDeletePentestsCommand_base: {
20
20
  new (
21
21
  input: BatchDeletePentestsCommandInput
22
- ): import("@smithy/smithy-client").CommandImpl<
22
+ ): import("@smithy/core/client").CommandImpl<
23
23
  BatchDeletePentestsCommandInput,
24
24
  BatchDeletePentestsCommandOutput,
25
25
  SecurityAgentClientResolvedConfig,
@@ -28,14 +28,16 @@ declare const BatchDeletePentestsCommand_base: {
28
28
  >;
29
29
  new (
30
30
  input: BatchDeletePentestsCommandInput
31
- ): import("@smithy/smithy-client").CommandImpl<
31
+ ): import("@smithy/core/client").CommandImpl<
32
32
  BatchDeletePentestsCommandInput,
33
33
  BatchDeletePentestsCommandOutput,
34
34
  SecurityAgentClientResolvedConfig,
35
35
  ServiceInputTypes,
36
36
  ServiceOutputTypes
37
37
  >;
38
- getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ getEndpointParameterInstructions(): {
39
+ [x: string]: unknown;
40
+ };
39
41
  };
40
42
  export declare class BatchDeletePentestsCommand extends BatchDeletePentestsCommand_base {
41
43
  protected static __types: {
@@ -1,4 +1,4 @@
1
- import { Command as $Command } from "@smithy/smithy-client";
1
+ import { Command as $Command } from "@smithy/core/client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import {
4
4
  BatchGetAgentSpacesInput,
@@ -19,7 +19,7 @@ export interface BatchGetAgentSpacesCommandOutput
19
19
  declare const BatchGetAgentSpacesCommand_base: {
20
20
  new (
21
21
  input: BatchGetAgentSpacesCommandInput
22
- ): import("@smithy/smithy-client").CommandImpl<
22
+ ): import("@smithy/core/client").CommandImpl<
23
23
  BatchGetAgentSpacesCommandInput,
24
24
  BatchGetAgentSpacesCommandOutput,
25
25
  SecurityAgentClientResolvedConfig,
@@ -28,14 +28,16 @@ declare const BatchGetAgentSpacesCommand_base: {
28
28
  >;
29
29
  new (
30
30
  input: BatchGetAgentSpacesCommandInput
31
- ): import("@smithy/smithy-client").CommandImpl<
31
+ ): import("@smithy/core/client").CommandImpl<
32
32
  BatchGetAgentSpacesCommandInput,
33
33
  BatchGetAgentSpacesCommandOutput,
34
34
  SecurityAgentClientResolvedConfig,
35
35
  ServiceInputTypes,
36
36
  ServiceOutputTypes
37
37
  >;
38
- getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ getEndpointParameterInstructions(): {
39
+ [x: string]: unknown;
40
+ };
39
41
  };
40
42
  export declare class BatchGetAgentSpacesCommand extends BatchGetAgentSpacesCommand_base {
41
43
  protected static __types: {
@@ -1,4 +1,4 @@
1
- import { Command as $Command } from "@smithy/smithy-client";
1
+ import { Command as $Command } from "@smithy/core/client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import {
4
4
  BatchGetArtifactMetadataInput,
@@ -19,7 +19,7 @@ export interface BatchGetArtifactMetadataCommandOutput
19
19
  declare const BatchGetArtifactMetadataCommand_base: {
20
20
  new (
21
21
  input: BatchGetArtifactMetadataCommandInput
22
- ): import("@smithy/smithy-client").CommandImpl<
22
+ ): import("@smithy/core/client").CommandImpl<
23
23
  BatchGetArtifactMetadataCommandInput,
24
24
  BatchGetArtifactMetadataCommandOutput,
25
25
  SecurityAgentClientResolvedConfig,
@@ -28,14 +28,16 @@ declare const BatchGetArtifactMetadataCommand_base: {
28
28
  >;
29
29
  new (
30
30
  input: BatchGetArtifactMetadataCommandInput
31
- ): import("@smithy/smithy-client").CommandImpl<
31
+ ): import("@smithy/core/client").CommandImpl<
32
32
  BatchGetArtifactMetadataCommandInput,
33
33
  BatchGetArtifactMetadataCommandOutput,
34
34
  SecurityAgentClientResolvedConfig,
35
35
  ServiceInputTypes,
36
36
  ServiceOutputTypes
37
37
  >;
38
- getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ getEndpointParameterInstructions(): {
39
+ [x: string]: unknown;
40
+ };
39
41
  };
40
42
  export declare class BatchGetArtifactMetadataCommand extends BatchGetArtifactMetadataCommand_base {
41
43
  protected static __types: {
@@ -0,0 +1,53 @@
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ BatchGetCodeReviewJobTasksInput,
5
+ BatchGetCodeReviewJobTasksOutput,
6
+ } from "../models/models_0";
7
+ import {
8
+ SecurityAgentClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../SecurityAgentClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface BatchGetCodeReviewJobTasksCommandInput
15
+ extends BatchGetCodeReviewJobTasksInput {}
16
+ export interface BatchGetCodeReviewJobTasksCommandOutput
17
+ extends BatchGetCodeReviewJobTasksOutput,
18
+ __MetadataBearer {}
19
+ declare const BatchGetCodeReviewJobTasksCommand_base: {
20
+ new (
21
+ input: BatchGetCodeReviewJobTasksCommandInput
22
+ ): import("@smithy/core/client").CommandImpl<
23
+ BatchGetCodeReviewJobTasksCommandInput,
24
+ BatchGetCodeReviewJobTasksCommandOutput,
25
+ SecurityAgentClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: BatchGetCodeReviewJobTasksCommandInput
31
+ ): import("@smithy/core/client").CommandImpl<
32
+ BatchGetCodeReviewJobTasksCommandInput,
33
+ BatchGetCodeReviewJobTasksCommandOutput,
34
+ SecurityAgentClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): {
39
+ [x: string]: unknown;
40
+ };
41
+ };
42
+ export declare class BatchGetCodeReviewJobTasksCommand extends BatchGetCodeReviewJobTasksCommand_base {
43
+ protected static __types: {
44
+ api: {
45
+ input: BatchGetCodeReviewJobTasksInput;
46
+ output: BatchGetCodeReviewJobTasksOutput;
47
+ };
48
+ sdk: {
49
+ input: BatchGetCodeReviewJobTasksCommandInput;
50
+ output: BatchGetCodeReviewJobTasksCommandOutput;
51
+ };
52
+ };
53
+ }
@@ -0,0 +1,53 @@
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ BatchGetCodeReviewJobsInput,
5
+ BatchGetCodeReviewJobsOutput,
6
+ } from "../models/models_0";
7
+ import {
8
+ SecurityAgentClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../SecurityAgentClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface BatchGetCodeReviewJobsCommandInput
15
+ extends BatchGetCodeReviewJobsInput {}
16
+ export interface BatchGetCodeReviewJobsCommandOutput
17
+ extends BatchGetCodeReviewJobsOutput,
18
+ __MetadataBearer {}
19
+ declare const BatchGetCodeReviewJobsCommand_base: {
20
+ new (
21
+ input: BatchGetCodeReviewJobsCommandInput
22
+ ): import("@smithy/core/client").CommandImpl<
23
+ BatchGetCodeReviewJobsCommandInput,
24
+ BatchGetCodeReviewJobsCommandOutput,
25
+ SecurityAgentClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: BatchGetCodeReviewJobsCommandInput
31
+ ): import("@smithy/core/client").CommandImpl<
32
+ BatchGetCodeReviewJobsCommandInput,
33
+ BatchGetCodeReviewJobsCommandOutput,
34
+ SecurityAgentClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): {
39
+ [x: string]: unknown;
40
+ };
41
+ };
42
+ export declare class BatchGetCodeReviewJobsCommand extends BatchGetCodeReviewJobsCommand_base {
43
+ protected static __types: {
44
+ api: {
45
+ input: BatchGetCodeReviewJobsInput;
46
+ output: BatchGetCodeReviewJobsOutput;
47
+ };
48
+ sdk: {
49
+ input: BatchGetCodeReviewJobsCommandInput;
50
+ output: BatchGetCodeReviewJobsCommandOutput;
51
+ };
52
+ };
53
+ }
@@ -0,0 +1,53 @@
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ BatchGetCodeReviewsInput,
5
+ BatchGetCodeReviewsOutput,
6
+ } from "../models/models_0";
7
+ import {
8
+ SecurityAgentClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../SecurityAgentClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface BatchGetCodeReviewsCommandInput
15
+ extends BatchGetCodeReviewsInput {}
16
+ export interface BatchGetCodeReviewsCommandOutput
17
+ extends BatchGetCodeReviewsOutput,
18
+ __MetadataBearer {}
19
+ declare const BatchGetCodeReviewsCommand_base: {
20
+ new (
21
+ input: BatchGetCodeReviewsCommandInput
22
+ ): import("@smithy/core/client").CommandImpl<
23
+ BatchGetCodeReviewsCommandInput,
24
+ BatchGetCodeReviewsCommandOutput,
25
+ SecurityAgentClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: BatchGetCodeReviewsCommandInput
31
+ ): import("@smithy/core/client").CommandImpl<
32
+ BatchGetCodeReviewsCommandInput,
33
+ BatchGetCodeReviewsCommandOutput,
34
+ SecurityAgentClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): {
39
+ [x: string]: unknown;
40
+ };
41
+ };
42
+ export declare class BatchGetCodeReviewsCommand extends BatchGetCodeReviewsCommand_base {
43
+ protected static __types: {
44
+ api: {
45
+ input: BatchGetCodeReviewsInput;
46
+ output: BatchGetCodeReviewsOutput;
47
+ };
48
+ sdk: {
49
+ input: BatchGetCodeReviewsCommandInput;
50
+ output: BatchGetCodeReviewsCommandOutput;
51
+ };
52
+ };
53
+ }
@@ -1,4 +1,4 @@
1
- import { Command as $Command } from "@smithy/smithy-client";
1
+ import { Command as $Command } from "@smithy/core/client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import {
4
4
  BatchGetFindingsInput,
@@ -18,7 +18,7 @@ export interface BatchGetFindingsCommandOutput
18
18
  declare const BatchGetFindingsCommand_base: {
19
19
  new (
20
20
  input: BatchGetFindingsCommandInput
21
- ): import("@smithy/smithy-client").CommandImpl<
21
+ ): import("@smithy/core/client").CommandImpl<
22
22
  BatchGetFindingsCommandInput,
23
23
  BatchGetFindingsCommandOutput,
24
24
  SecurityAgentClientResolvedConfig,
@@ -27,14 +27,16 @@ declare const BatchGetFindingsCommand_base: {
27
27
  >;
28
28
  new (
29
29
  input: BatchGetFindingsCommandInput
30
- ): import("@smithy/smithy-client").CommandImpl<
30
+ ): import("@smithy/core/client").CommandImpl<
31
31
  BatchGetFindingsCommandInput,
32
32
  BatchGetFindingsCommandOutput,
33
33
  SecurityAgentClientResolvedConfig,
34
34
  ServiceInputTypes,
35
35
  ServiceOutputTypes
36
36
  >;
37
- getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
37
+ getEndpointParameterInstructions(): {
38
+ [x: string]: unknown;
39
+ };
38
40
  };
39
41
  export declare class BatchGetFindingsCommand extends BatchGetFindingsCommand_base {
40
42
  protected static __types: {
@@ -1,4 +1,4 @@
1
- import { Command as $Command } from "@smithy/smithy-client";
1
+ import { Command as $Command } from "@smithy/core/client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import {
4
4
  BatchGetPentestJobTasksInput,
@@ -19,7 +19,7 @@ export interface BatchGetPentestJobTasksCommandOutput
19
19
  declare const BatchGetPentestJobTasksCommand_base: {
20
20
  new (
21
21
  input: BatchGetPentestJobTasksCommandInput
22
- ): import("@smithy/smithy-client").CommandImpl<
22
+ ): import("@smithy/core/client").CommandImpl<
23
23
  BatchGetPentestJobTasksCommandInput,
24
24
  BatchGetPentestJobTasksCommandOutput,
25
25
  SecurityAgentClientResolvedConfig,
@@ -28,14 +28,16 @@ declare const BatchGetPentestJobTasksCommand_base: {
28
28
  >;
29
29
  new (
30
30
  input: BatchGetPentestJobTasksCommandInput
31
- ): import("@smithy/smithy-client").CommandImpl<
31
+ ): import("@smithy/core/client").CommandImpl<
32
32
  BatchGetPentestJobTasksCommandInput,
33
33
  BatchGetPentestJobTasksCommandOutput,
34
34
  SecurityAgentClientResolvedConfig,
35
35
  ServiceInputTypes,
36
36
  ServiceOutputTypes
37
37
  >;
38
- getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ getEndpointParameterInstructions(): {
39
+ [x: string]: unknown;
40
+ };
39
41
  };
40
42
  export declare class BatchGetPentestJobTasksCommand extends BatchGetPentestJobTasksCommand_base {
41
43
  protected static __types: {
@@ -1,4 +1,4 @@
1
- import { Command as $Command } from "@smithy/smithy-client";
1
+ import { Command as $Command } from "@smithy/core/client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import {
4
4
  BatchGetPentestJobsInput,
@@ -19,7 +19,7 @@ export interface BatchGetPentestJobsCommandOutput
19
19
  declare const BatchGetPentestJobsCommand_base: {
20
20
  new (
21
21
  input: BatchGetPentestJobsCommandInput
22
- ): import("@smithy/smithy-client").CommandImpl<
22
+ ): import("@smithy/core/client").CommandImpl<
23
23
  BatchGetPentestJobsCommandInput,
24
24
  BatchGetPentestJobsCommandOutput,
25
25
  SecurityAgentClientResolvedConfig,
@@ -28,14 +28,16 @@ declare const BatchGetPentestJobsCommand_base: {
28
28
  >;
29
29
  new (
30
30
  input: BatchGetPentestJobsCommandInput
31
- ): import("@smithy/smithy-client").CommandImpl<
31
+ ): import("@smithy/core/client").CommandImpl<
32
32
  BatchGetPentestJobsCommandInput,
33
33
  BatchGetPentestJobsCommandOutput,
34
34
  SecurityAgentClientResolvedConfig,
35
35
  ServiceInputTypes,
36
36
  ServiceOutputTypes
37
37
  >;
38
- getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ getEndpointParameterInstructions(): {
39
+ [x: string]: unknown;
40
+ };
39
41
  };
40
42
  export declare class BatchGetPentestJobsCommand extends BatchGetPentestJobsCommand_base {
41
43
  protected static __types: {