@aws-sdk/client-securityagent 3.1021.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (266) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +531 -0
  3. package/dist-cjs/auth/httpAuthSchemeProvider.js +46 -0
  4. package/dist-cjs/endpoint/endpointResolver.js +18 -0
  5. package/dist-cjs/endpoint/ruleset.js +7 -0
  6. package/dist-cjs/index.js +1084 -0
  7. package/dist-cjs/models/SecurityAgentServiceException.js +12 -0
  8. package/dist-cjs/models/errors.js +88 -0
  9. package/dist-cjs/runtimeConfig.browser.js +38 -0
  10. package/dist-cjs/runtimeConfig.js +54 -0
  11. package/dist-cjs/runtimeConfig.native.js +15 -0
  12. package/dist-cjs/runtimeConfig.shared.js +43 -0
  13. package/dist-cjs/schemas/schemas_0.js +1570 -0
  14. package/dist-es/SecurityAgent.js +133 -0
  15. package/dist-es/SecurityAgentClient.js +50 -0
  16. package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
  17. package/dist-es/auth/httpAuthSchemeProvider.js +40 -0
  18. package/dist-es/commands/AddArtifactCommand.js +16 -0
  19. package/dist-es/commands/BatchDeletePentestsCommand.js +16 -0
  20. package/dist-es/commands/BatchGetAgentSpacesCommand.js +16 -0
  21. package/dist-es/commands/BatchGetArtifactMetadataCommand.js +16 -0
  22. package/dist-es/commands/BatchGetFindingsCommand.js +16 -0
  23. package/dist-es/commands/BatchGetPentestJobTasksCommand.js +16 -0
  24. package/dist-es/commands/BatchGetPentestJobsCommand.js +16 -0
  25. package/dist-es/commands/BatchGetPentestsCommand.js +16 -0
  26. package/dist-es/commands/BatchGetTargetDomainsCommand.js +16 -0
  27. package/dist-es/commands/CreateAgentSpaceCommand.js +16 -0
  28. package/dist-es/commands/CreateApplicationCommand.js +16 -0
  29. package/dist-es/commands/CreateIntegrationCommand.js +16 -0
  30. package/dist-es/commands/CreateMembershipCommand.js +16 -0
  31. package/dist-es/commands/CreatePentestCommand.js +16 -0
  32. package/dist-es/commands/CreateTargetDomainCommand.js +16 -0
  33. package/dist-es/commands/DeleteAgentSpaceCommand.js +16 -0
  34. package/dist-es/commands/DeleteApplicationCommand.js +16 -0
  35. package/dist-es/commands/DeleteArtifactCommand.js +16 -0
  36. package/dist-es/commands/DeleteIntegrationCommand.js +16 -0
  37. package/dist-es/commands/DeleteMembershipCommand.js +16 -0
  38. package/dist-es/commands/DeleteTargetDomainCommand.js +16 -0
  39. package/dist-es/commands/GetApplicationCommand.js +16 -0
  40. package/dist-es/commands/GetArtifactCommand.js +16 -0
  41. package/dist-es/commands/GetIntegrationCommand.js +16 -0
  42. package/dist-es/commands/InitiateProviderRegistrationCommand.js +16 -0
  43. package/dist-es/commands/ListAgentSpacesCommand.js +16 -0
  44. package/dist-es/commands/ListApplicationsCommand.js +16 -0
  45. package/dist-es/commands/ListArtifactsCommand.js +16 -0
  46. package/dist-es/commands/ListDiscoveredEndpointsCommand.js +16 -0
  47. package/dist-es/commands/ListFindingsCommand.js +16 -0
  48. package/dist-es/commands/ListIntegratedResourcesCommand.js +16 -0
  49. package/dist-es/commands/ListIntegrationsCommand.js +16 -0
  50. package/dist-es/commands/ListMembershipsCommand.js +16 -0
  51. package/dist-es/commands/ListPentestJobTasksCommand.js +16 -0
  52. package/dist-es/commands/ListPentestJobsForPentestCommand.js +16 -0
  53. package/dist-es/commands/ListPentestsCommand.js +16 -0
  54. package/dist-es/commands/ListTagsForResourceCommand.js +16 -0
  55. package/dist-es/commands/ListTargetDomainsCommand.js +16 -0
  56. package/dist-es/commands/StartCodeRemediationCommand.js +16 -0
  57. package/dist-es/commands/StartPentestJobCommand.js +16 -0
  58. package/dist-es/commands/StopPentestJobCommand.js +16 -0
  59. package/dist-es/commands/TagResourceCommand.js +16 -0
  60. package/dist-es/commands/UntagResourceCommand.js +16 -0
  61. package/dist-es/commands/UpdateAgentSpaceCommand.js +16 -0
  62. package/dist-es/commands/UpdateApplicationCommand.js +16 -0
  63. package/dist-es/commands/UpdateFindingCommand.js +16 -0
  64. package/dist-es/commands/UpdateIntegratedResourcesCommand.js +16 -0
  65. package/dist-es/commands/UpdatePentestCommand.js +16 -0
  66. package/dist-es/commands/UpdateTargetDomainCommand.js +16 -0
  67. package/dist-es/commands/VerifyTargetDomainCommand.js +16 -0
  68. package/dist-es/commands/index.js +50 -0
  69. package/dist-es/endpoint/EndpointParameters.js +11 -0
  70. package/dist-es/endpoint/endpointResolver.js +14 -0
  71. package/dist-es/endpoint/ruleset.js +4 -0
  72. package/dist-es/extensionConfiguration.js +1 -0
  73. package/dist-es/index.js +9 -0
  74. package/dist-es/models/SecurityAgentServiceException.js +8 -0
  75. package/dist-es/models/enums.js +162 -0
  76. package/dist-es/models/errors.js +79 -0
  77. package/dist-es/models/models_0.js +1 -0
  78. package/dist-es/pagination/Interfaces.js +1 -0
  79. package/dist-es/pagination/ListAgentSpacesPaginator.js +4 -0
  80. package/dist-es/pagination/ListApplicationsPaginator.js +4 -0
  81. package/dist-es/pagination/ListArtifactsPaginator.js +4 -0
  82. package/dist-es/pagination/ListDiscoveredEndpointsPaginator.js +4 -0
  83. package/dist-es/pagination/ListFindingsPaginator.js +4 -0
  84. package/dist-es/pagination/ListIntegratedResourcesPaginator.js +4 -0
  85. package/dist-es/pagination/ListIntegrationsPaginator.js +4 -0
  86. package/dist-es/pagination/ListMembershipsPaginator.js +4 -0
  87. package/dist-es/pagination/ListPentestJobTasksPaginator.js +4 -0
  88. package/dist-es/pagination/ListPentestJobsForPentestPaginator.js +4 -0
  89. package/dist-es/pagination/ListPentestsPaginator.js +4 -0
  90. package/dist-es/pagination/ListTargetDomainsPaginator.js +4 -0
  91. package/dist-es/pagination/index.js +13 -0
  92. package/dist-es/runtimeConfig.browser.js +33 -0
  93. package/dist-es/runtimeConfig.js +49 -0
  94. package/dist-es/runtimeConfig.native.js +11 -0
  95. package/dist-es/runtimeConfig.shared.js +39 -0
  96. package/dist-es/runtimeExtensions.js +9 -0
  97. package/dist-es/schemas/schemas_0.js +1563 -0
  98. package/dist-types/SecurityAgent.d.ts +449 -0
  99. package/dist-types/SecurityAgentClient.d.ts +237 -0
  100. package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
  101. package/dist-types/auth/httpAuthSchemeProvider.d.ts +75 -0
  102. package/dist-types/commands/AddArtifactCommand.d.ts +94 -0
  103. package/dist-types/commands/BatchDeletePentestsCommand.d.ts +161 -0
  104. package/dist-types/commands/BatchGetAgentSpacesCommand.d.ts +123 -0
  105. package/dist-types/commands/BatchGetArtifactMetadataCommand.d.ts +101 -0
  106. package/dist-types/commands/BatchGetFindingsCommand.d.ts +111 -0
  107. package/dist-types/commands/BatchGetPentestJobTasksCommand.d.ts +109 -0
  108. package/dist-types/commands/BatchGetPentestJobsCommand.d.ts +187 -0
  109. package/dist-types/commands/BatchGetPentestsCommand.d.ts +158 -0
  110. package/dist-types/commands/BatchGetTargetDomainsCommand.d.ts +99 -0
  111. package/dist-types/commands/CreateAgentSpaceCommand.d.ts +154 -0
  112. package/dist-types/commands/CreateApplicationCommand.d.ts +79 -0
  113. package/dist-types/commands/CreateIntegrationCommand.d.ts +106 -0
  114. package/dist-types/commands/CreateMembershipCommand.d.ts +80 -0
  115. package/dist-types/commands/CreatePentestCommand.d.ts +194 -0
  116. package/dist-types/commands/CreateTargetDomainCommand.d.ts +94 -0
  117. package/dist-types/commands/DeleteAgentSpaceCommand.d.ts +74 -0
  118. package/dist-types/commands/DeleteApplicationCommand.d.ts +72 -0
  119. package/dist-types/commands/DeleteArtifactCommand.d.ts +90 -0
  120. package/dist-types/commands/DeleteIntegrationCommand.d.ts +92 -0
  121. package/dist-types/commands/DeleteMembershipCommand.d.ts +75 -0
  122. package/dist-types/commands/DeleteTargetDomainCommand.d.ts +74 -0
  123. package/dist-types/commands/GetApplicationCommand.d.ts +82 -0
  124. package/dist-types/commands/GetArtifactCommand.d.ts +99 -0
  125. package/dist-types/commands/GetIntegrationCommand.d.ts +96 -0
  126. package/dist-types/commands/InitiateProviderRegistrationCommand.d.ts +95 -0
  127. package/dist-types/commands/ListAgentSpacesCommand.d.ts +83 -0
  128. package/dist-types/commands/ListApplicationsCommand.d.ts +83 -0
  129. package/dist-types/commands/ListArtifactsCommand.d.ts +100 -0
  130. package/dist-types/commands/ListDiscoveredEndpointsCommand.d.ts +89 -0
  131. package/dist-types/commands/ListFindingsCommand.d.ts +97 -0
  132. package/dist-types/commands/ListIntegratedResourcesCommand.d.ts +114 -0
  133. package/dist-types/commands/ListIntegrationsCommand.d.ts +100 -0
  134. package/dist-types/commands/ListMembershipsCommand.d.ts +101 -0
  135. package/dist-types/commands/ListPentestJobTasksCommand.d.ts +92 -0
  136. package/dist-types/commands/ListPentestJobsForPentestCommand.d.ts +87 -0
  137. package/dist-types/commands/ListPentestsCommand.d.ts +85 -0
  138. package/dist-types/commands/ListTagsForResourceCommand.d.ts +76 -0
  139. package/dist-types/commands/ListTargetDomainsCommand.d.ts +82 -0
  140. package/dist-types/commands/StartCodeRemediationCommand.d.ts +76 -0
  141. package/dist-types/commands/StartPentestJobCommand.d.ts +81 -0
  142. package/dist-types/commands/StopPentestJobCommand.d.ts +73 -0
  143. package/dist-types/commands/TagResourceCommand.d.ts +75 -0
  144. package/dist-types/commands/UntagResourceCommand.d.ts +75 -0
  145. package/dist-types/commands/UpdateAgentSpaceCommand.d.ts +150 -0
  146. package/dist-types/commands/UpdateApplicationCommand.d.ts +76 -0
  147. package/dist-types/commands/UpdateFindingCommand.d.ts +75 -0
  148. package/dist-types/commands/UpdateIntegratedResourcesCommand.d.ts +109 -0
  149. package/dist-types/commands/UpdatePentestCommand.d.ts +195 -0
  150. package/dist-types/commands/UpdateTargetDomainCommand.d.ts +91 -0
  151. package/dist-types/commands/VerifyTargetDomainCommand.d.ts +79 -0
  152. package/dist-types/commands/index.d.ts +50 -0
  153. package/dist-types/endpoint/EndpointParameters.d.ts +44 -0
  154. package/dist-types/endpoint/endpointResolver.d.ts +8 -0
  155. package/dist-types/endpoint/ruleset.d.ts +2 -0
  156. package/dist-types/extensionConfiguration.d.ts +9 -0
  157. package/dist-types/index.d.ts +17 -0
  158. package/dist-types/models/SecurityAgentServiceException.d.ts +14 -0
  159. package/dist-types/models/enums.d.ts +609 -0
  160. package/dist-types/models/errors.d.ts +93 -0
  161. package/dist-types/models/models_0.d.ts +3749 -0
  162. package/dist-types/pagination/Interfaces.d.ts +8 -0
  163. package/dist-types/pagination/ListAgentSpacesPaginator.d.ts +7 -0
  164. package/dist-types/pagination/ListApplicationsPaginator.d.ts +7 -0
  165. package/dist-types/pagination/ListArtifactsPaginator.d.ts +7 -0
  166. package/dist-types/pagination/ListDiscoveredEndpointsPaginator.d.ts +7 -0
  167. package/dist-types/pagination/ListFindingsPaginator.d.ts +7 -0
  168. package/dist-types/pagination/ListIntegratedResourcesPaginator.d.ts +7 -0
  169. package/dist-types/pagination/ListIntegrationsPaginator.d.ts +7 -0
  170. package/dist-types/pagination/ListMembershipsPaginator.d.ts +7 -0
  171. package/dist-types/pagination/ListPentestJobTasksPaginator.d.ts +7 -0
  172. package/dist-types/pagination/ListPentestJobsForPentestPaginator.d.ts +7 -0
  173. package/dist-types/pagination/ListPentestsPaginator.d.ts +7 -0
  174. package/dist-types/pagination/ListTargetDomainsPaginator.d.ts +7 -0
  175. package/dist-types/pagination/index.d.ts +13 -0
  176. package/dist-types/runtimeConfig.browser.d.ts +55 -0
  177. package/dist-types/runtimeConfig.d.ts +55 -0
  178. package/dist-types/runtimeConfig.native.d.ts +54 -0
  179. package/dist-types/runtimeConfig.shared.d.ts +27 -0
  180. package/dist-types/runtimeExtensions.d.ts +17 -0
  181. package/dist-types/schemas/schemas_0.d.ts +225 -0
  182. package/dist-types/ts3.4/SecurityAgent.d.ts +950 -0
  183. package/dist-types/ts3.4/SecurityAgentClient.d.ts +419 -0
  184. package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
  185. package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +47 -0
  186. package/dist-types/ts3.4/commands/AddArtifactCommand.d.ts +47 -0
  187. package/dist-types/ts3.4/commands/BatchDeletePentestsCommand.d.ts +51 -0
  188. package/dist-types/ts3.4/commands/BatchGetAgentSpacesCommand.d.ts +51 -0
  189. package/dist-types/ts3.4/commands/BatchGetArtifactMetadataCommand.d.ts +51 -0
  190. package/dist-types/ts3.4/commands/BatchGetFindingsCommand.d.ts +50 -0
  191. package/dist-types/ts3.4/commands/BatchGetPentestJobTasksCommand.d.ts +51 -0
  192. package/dist-types/ts3.4/commands/BatchGetPentestJobsCommand.d.ts +51 -0
  193. package/dist-types/ts3.4/commands/BatchGetPentestsCommand.d.ts +50 -0
  194. package/dist-types/ts3.4/commands/BatchGetTargetDomainsCommand.d.ts +51 -0
  195. package/dist-types/ts3.4/commands/CreateAgentSpaceCommand.d.ts +50 -0
  196. package/dist-types/ts3.4/commands/CreateApplicationCommand.d.ts +51 -0
  197. package/dist-types/ts3.4/commands/CreateIntegrationCommand.d.ts +50 -0
  198. package/dist-types/ts3.4/commands/CreateMembershipCommand.d.ts +50 -0
  199. package/dist-types/ts3.4/commands/CreatePentestCommand.d.ts +47 -0
  200. package/dist-types/ts3.4/commands/CreateTargetDomainCommand.d.ts +51 -0
  201. package/dist-types/ts3.4/commands/DeleteAgentSpaceCommand.d.ts +50 -0
  202. package/dist-types/ts3.4/commands/DeleteApplicationCommand.d.ts +46 -0
  203. package/dist-types/ts3.4/commands/DeleteArtifactCommand.d.ts +47 -0
  204. package/dist-types/ts3.4/commands/DeleteIntegrationCommand.d.ts +50 -0
  205. package/dist-types/ts3.4/commands/DeleteMembershipCommand.d.ts +50 -0
  206. package/dist-types/ts3.4/commands/DeleteTargetDomainCommand.d.ts +51 -0
  207. package/dist-types/ts3.4/commands/GetApplicationCommand.d.ts +50 -0
  208. package/dist-types/ts3.4/commands/GetArtifactCommand.d.ts +47 -0
  209. package/dist-types/ts3.4/commands/GetIntegrationCommand.d.ts +47 -0
  210. package/dist-types/ts3.4/commands/InitiateProviderRegistrationCommand.d.ts +51 -0
  211. package/dist-types/ts3.4/commands/ListAgentSpacesCommand.d.ts +50 -0
  212. package/dist-types/ts3.4/commands/ListApplicationsCommand.d.ts +50 -0
  213. package/dist-types/ts3.4/commands/ListArtifactsCommand.d.ts +47 -0
  214. package/dist-types/ts3.4/commands/ListDiscoveredEndpointsCommand.d.ts +51 -0
  215. package/dist-types/ts3.4/commands/ListFindingsCommand.d.ts +47 -0
  216. package/dist-types/ts3.4/commands/ListIntegratedResourcesCommand.d.ts +51 -0
  217. package/dist-types/ts3.4/commands/ListIntegrationsCommand.d.ts +50 -0
  218. package/dist-types/ts3.4/commands/ListMembershipsCommand.d.ts +50 -0
  219. package/dist-types/ts3.4/commands/ListPentestJobTasksCommand.d.ts +51 -0
  220. package/dist-types/ts3.4/commands/ListPentestJobsForPentestCommand.d.ts +51 -0
  221. package/dist-types/ts3.4/commands/ListPentestsCommand.d.ts +47 -0
  222. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +51 -0
  223. package/dist-types/ts3.4/commands/ListTargetDomainsCommand.d.ts +50 -0
  224. package/dist-types/ts3.4/commands/StartCodeRemediationCommand.d.ts +51 -0
  225. package/dist-types/ts3.4/commands/StartPentestJobCommand.d.ts +50 -0
  226. package/dist-types/ts3.4/commands/StopPentestJobCommand.d.ts +47 -0
  227. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +47 -0
  228. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +47 -0
  229. package/dist-types/ts3.4/commands/UpdateAgentSpaceCommand.d.ts +50 -0
  230. package/dist-types/ts3.4/commands/UpdateApplicationCommand.d.ts +51 -0
  231. package/dist-types/ts3.4/commands/UpdateFindingCommand.d.ts +47 -0
  232. package/dist-types/ts3.4/commands/UpdateIntegratedResourcesCommand.d.ts +51 -0
  233. package/dist-types/ts3.4/commands/UpdatePentestCommand.d.ts +47 -0
  234. package/dist-types/ts3.4/commands/UpdateTargetDomainCommand.d.ts +51 -0
  235. package/dist-types/ts3.4/commands/VerifyTargetDomainCommand.d.ts +51 -0
  236. package/dist-types/ts3.4/commands/index.d.ts +50 -0
  237. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +45 -0
  238. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
  239. package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
  240. package/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
  241. package/dist-types/ts3.4/index.d.ts +12 -0
  242. package/dist-types/ts3.4/models/SecurityAgentServiceException.d.ts +9 -0
  243. package/dist-types/ts3.4/models/enums.d.ts +200 -0
  244. package/dist-types/ts3.4/models/errors.d.ts +46 -0
  245. package/dist-types/ts3.4/models/models_0.d.ts +977 -0
  246. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  247. package/dist-types/ts3.4/pagination/ListAgentSpacesPaginator.d.ts +11 -0
  248. package/dist-types/ts3.4/pagination/ListApplicationsPaginator.d.ts +11 -0
  249. package/dist-types/ts3.4/pagination/ListArtifactsPaginator.d.ts +11 -0
  250. package/dist-types/ts3.4/pagination/ListDiscoveredEndpointsPaginator.d.ts +11 -0
  251. package/dist-types/ts3.4/pagination/ListFindingsPaginator.d.ts +11 -0
  252. package/dist-types/ts3.4/pagination/ListIntegratedResourcesPaginator.d.ts +11 -0
  253. package/dist-types/ts3.4/pagination/ListIntegrationsPaginator.d.ts +11 -0
  254. package/dist-types/ts3.4/pagination/ListMembershipsPaginator.d.ts +11 -0
  255. package/dist-types/ts3.4/pagination/ListPentestJobTasksPaginator.d.ts +11 -0
  256. package/dist-types/ts3.4/pagination/ListPentestJobsForPentestPaginator.d.ts +11 -0
  257. package/dist-types/ts3.4/pagination/ListPentestsPaginator.d.ts +11 -0
  258. package/dist-types/ts3.4/pagination/ListTargetDomainsPaginator.d.ts +11 -0
  259. package/dist-types/ts3.4/pagination/index.d.ts +13 -0
  260. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +100 -0
  261. package/dist-types/ts3.4/runtimeConfig.d.ts +95 -0
  262. package/dist-types/ts3.4/runtimeConfig.native.d.ts +104 -0
  263. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +30 -0
  264. package/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
  265. package/dist-types/ts3.4/schemas/schemas_0.d.ts +225 -0
  266. package/package.json +100 -0
@@ -0,0 +1,47 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { DeleteArtifactInput, DeleteArtifactOutput } from "../models/models_0";
4
+ import {
5
+ SecurityAgentClientResolvedConfig,
6
+ ServiceInputTypes,
7
+ ServiceOutputTypes,
8
+ } from "../SecurityAgentClient";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface DeleteArtifactCommandInput extends DeleteArtifactInput {}
12
+ export interface DeleteArtifactCommandOutput
13
+ extends DeleteArtifactOutput,
14
+ __MetadataBearer {}
15
+ declare const DeleteArtifactCommand_base: {
16
+ new (
17
+ input: DeleteArtifactCommandInput
18
+ ): import("@smithy/smithy-client").CommandImpl<
19
+ DeleteArtifactCommandInput,
20
+ DeleteArtifactCommandOutput,
21
+ SecurityAgentClientResolvedConfig,
22
+ ServiceInputTypes,
23
+ ServiceOutputTypes
24
+ >;
25
+ new (
26
+ input: DeleteArtifactCommandInput
27
+ ): import("@smithy/smithy-client").CommandImpl<
28
+ DeleteArtifactCommandInput,
29
+ DeleteArtifactCommandOutput,
30
+ SecurityAgentClientResolvedConfig,
31
+ ServiceInputTypes,
32
+ ServiceOutputTypes
33
+ >;
34
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
35
+ };
36
+ export declare class DeleteArtifactCommand extends DeleteArtifactCommand_base {
37
+ protected static __types: {
38
+ api: {
39
+ input: DeleteArtifactInput;
40
+ output: {};
41
+ };
42
+ sdk: {
43
+ input: DeleteArtifactCommandInput;
44
+ output: DeleteArtifactCommandOutput;
45
+ };
46
+ };
47
+ }
@@ -0,0 +1,50 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ DeleteIntegrationInput,
5
+ DeleteIntegrationOutput,
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 DeleteIntegrationCommandInput extends DeleteIntegrationInput {}
15
+ export interface DeleteIntegrationCommandOutput
16
+ extends DeleteIntegrationOutput,
17
+ __MetadataBearer {}
18
+ declare const DeleteIntegrationCommand_base: {
19
+ new (
20
+ input: DeleteIntegrationCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ DeleteIntegrationCommandInput,
23
+ DeleteIntegrationCommandOutput,
24
+ SecurityAgentClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ input: DeleteIntegrationCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ DeleteIntegrationCommandInput,
32
+ DeleteIntegrationCommandOutput,
33
+ SecurityAgentClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class DeleteIntegrationCommand extends DeleteIntegrationCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: DeleteIntegrationInput;
43
+ output: {};
44
+ };
45
+ sdk: {
46
+ input: DeleteIntegrationCommandInput;
47
+ output: DeleteIntegrationCommandOutput;
48
+ };
49
+ };
50
+ }
@@ -0,0 +1,50 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ DeleteMembershipRequest,
5
+ DeleteMembershipResponse,
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 DeleteMembershipCommandInput extends DeleteMembershipRequest {}
15
+ export interface DeleteMembershipCommandOutput
16
+ extends DeleteMembershipResponse,
17
+ __MetadataBearer {}
18
+ declare const DeleteMembershipCommand_base: {
19
+ new (
20
+ input: DeleteMembershipCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ DeleteMembershipCommandInput,
23
+ DeleteMembershipCommandOutput,
24
+ SecurityAgentClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ input: DeleteMembershipCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ DeleteMembershipCommandInput,
32
+ DeleteMembershipCommandOutput,
33
+ SecurityAgentClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class DeleteMembershipCommand extends DeleteMembershipCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: DeleteMembershipRequest;
43
+ output: {};
44
+ };
45
+ sdk: {
46
+ input: DeleteMembershipCommandInput;
47
+ output: DeleteMembershipCommandOutput;
48
+ };
49
+ };
50
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ DeleteTargetDomainInput,
5
+ DeleteTargetDomainOutput,
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 DeleteTargetDomainCommandInput
15
+ extends DeleteTargetDomainInput {}
16
+ export interface DeleteTargetDomainCommandOutput
17
+ extends DeleteTargetDomainOutput,
18
+ __MetadataBearer {}
19
+ declare const DeleteTargetDomainCommand_base: {
20
+ new (
21
+ input: DeleteTargetDomainCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ DeleteTargetDomainCommandInput,
24
+ DeleteTargetDomainCommandOutput,
25
+ SecurityAgentClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: DeleteTargetDomainCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ DeleteTargetDomainCommandInput,
33
+ DeleteTargetDomainCommandOutput,
34
+ SecurityAgentClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class DeleteTargetDomainCommand extends DeleteTargetDomainCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: DeleteTargetDomainInput;
44
+ output: DeleteTargetDomainOutput;
45
+ };
46
+ sdk: {
47
+ input: DeleteTargetDomainCommandInput;
48
+ output: DeleteTargetDomainCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,50 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ GetApplicationRequest,
5
+ GetApplicationResponse,
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 GetApplicationCommandInput extends GetApplicationRequest {}
15
+ export interface GetApplicationCommandOutput
16
+ extends GetApplicationResponse,
17
+ __MetadataBearer {}
18
+ declare const GetApplicationCommand_base: {
19
+ new (
20
+ input: GetApplicationCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ GetApplicationCommandInput,
23
+ GetApplicationCommandOutput,
24
+ SecurityAgentClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ input: GetApplicationCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ GetApplicationCommandInput,
32
+ GetApplicationCommandOutput,
33
+ SecurityAgentClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class GetApplicationCommand extends GetApplicationCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: GetApplicationRequest;
43
+ output: GetApplicationResponse;
44
+ };
45
+ sdk: {
46
+ input: GetApplicationCommandInput;
47
+ output: GetApplicationCommandOutput;
48
+ };
49
+ };
50
+ }
@@ -0,0 +1,47 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { GetArtifactInput, GetArtifactOutput } from "../models/models_0";
4
+ import {
5
+ SecurityAgentClientResolvedConfig,
6
+ ServiceInputTypes,
7
+ ServiceOutputTypes,
8
+ } from "../SecurityAgentClient";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface GetArtifactCommandInput extends GetArtifactInput {}
12
+ export interface GetArtifactCommandOutput
13
+ extends GetArtifactOutput,
14
+ __MetadataBearer {}
15
+ declare const GetArtifactCommand_base: {
16
+ new (
17
+ input: GetArtifactCommandInput
18
+ ): import("@smithy/smithy-client").CommandImpl<
19
+ GetArtifactCommandInput,
20
+ GetArtifactCommandOutput,
21
+ SecurityAgentClientResolvedConfig,
22
+ ServiceInputTypes,
23
+ ServiceOutputTypes
24
+ >;
25
+ new (
26
+ input: GetArtifactCommandInput
27
+ ): import("@smithy/smithy-client").CommandImpl<
28
+ GetArtifactCommandInput,
29
+ GetArtifactCommandOutput,
30
+ SecurityAgentClientResolvedConfig,
31
+ ServiceInputTypes,
32
+ ServiceOutputTypes
33
+ >;
34
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
35
+ };
36
+ export declare class GetArtifactCommand extends GetArtifactCommand_base {
37
+ protected static __types: {
38
+ api: {
39
+ input: GetArtifactInput;
40
+ output: GetArtifactOutput;
41
+ };
42
+ sdk: {
43
+ input: GetArtifactCommandInput;
44
+ output: GetArtifactCommandOutput;
45
+ };
46
+ };
47
+ }
@@ -0,0 +1,47 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { GetIntegrationInput, GetIntegrationOutput } from "../models/models_0";
4
+ import {
5
+ SecurityAgentClientResolvedConfig,
6
+ ServiceInputTypes,
7
+ ServiceOutputTypes,
8
+ } from "../SecurityAgentClient";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface GetIntegrationCommandInput extends GetIntegrationInput {}
12
+ export interface GetIntegrationCommandOutput
13
+ extends GetIntegrationOutput,
14
+ __MetadataBearer {}
15
+ declare const GetIntegrationCommand_base: {
16
+ new (
17
+ input: GetIntegrationCommandInput
18
+ ): import("@smithy/smithy-client").CommandImpl<
19
+ GetIntegrationCommandInput,
20
+ GetIntegrationCommandOutput,
21
+ SecurityAgentClientResolvedConfig,
22
+ ServiceInputTypes,
23
+ ServiceOutputTypes
24
+ >;
25
+ new (
26
+ input: GetIntegrationCommandInput
27
+ ): import("@smithy/smithy-client").CommandImpl<
28
+ GetIntegrationCommandInput,
29
+ GetIntegrationCommandOutput,
30
+ SecurityAgentClientResolvedConfig,
31
+ ServiceInputTypes,
32
+ ServiceOutputTypes
33
+ >;
34
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
35
+ };
36
+ export declare class GetIntegrationCommand extends GetIntegrationCommand_base {
37
+ protected static __types: {
38
+ api: {
39
+ input: GetIntegrationInput;
40
+ output: GetIntegrationOutput;
41
+ };
42
+ sdk: {
43
+ input: GetIntegrationCommandInput;
44
+ output: GetIntegrationCommandOutput;
45
+ };
46
+ };
47
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ InitiateProviderRegistrationInput,
5
+ InitiateProviderRegistrationOutput,
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 InitiateProviderRegistrationCommandInput
15
+ extends InitiateProviderRegistrationInput {}
16
+ export interface InitiateProviderRegistrationCommandOutput
17
+ extends InitiateProviderRegistrationOutput,
18
+ __MetadataBearer {}
19
+ declare const InitiateProviderRegistrationCommand_base: {
20
+ new (
21
+ input: InitiateProviderRegistrationCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ InitiateProviderRegistrationCommandInput,
24
+ InitiateProviderRegistrationCommandOutput,
25
+ SecurityAgentClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: InitiateProviderRegistrationCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ InitiateProviderRegistrationCommandInput,
33
+ InitiateProviderRegistrationCommandOutput,
34
+ SecurityAgentClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class InitiateProviderRegistrationCommand extends InitiateProviderRegistrationCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: InitiateProviderRegistrationInput;
44
+ output: InitiateProviderRegistrationOutput;
45
+ };
46
+ sdk: {
47
+ input: InitiateProviderRegistrationCommandInput;
48
+ output: InitiateProviderRegistrationCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,50 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ ListAgentSpacesInput,
5
+ ListAgentSpacesOutput,
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 ListAgentSpacesCommandInput extends ListAgentSpacesInput {}
15
+ export interface ListAgentSpacesCommandOutput
16
+ extends ListAgentSpacesOutput,
17
+ __MetadataBearer {}
18
+ declare const ListAgentSpacesCommand_base: {
19
+ new (
20
+ input: ListAgentSpacesCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ ListAgentSpacesCommandInput,
23
+ ListAgentSpacesCommandOutput,
24
+ SecurityAgentClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ ...[input]: [] | [ListAgentSpacesCommandInput]
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ ListAgentSpacesCommandInput,
32
+ ListAgentSpacesCommandOutput,
33
+ SecurityAgentClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class ListAgentSpacesCommand extends ListAgentSpacesCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: ListAgentSpacesInput;
43
+ output: ListAgentSpacesOutput;
44
+ };
45
+ sdk: {
46
+ input: ListAgentSpacesCommandInput;
47
+ output: ListAgentSpacesCommandOutput;
48
+ };
49
+ };
50
+ }
@@ -0,0 +1,50 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ ListApplicationsRequest,
5
+ ListApplicationsResponse,
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 ListApplicationsCommandInput extends ListApplicationsRequest {}
15
+ export interface ListApplicationsCommandOutput
16
+ extends ListApplicationsResponse,
17
+ __MetadataBearer {}
18
+ declare const ListApplicationsCommand_base: {
19
+ new (
20
+ input: ListApplicationsCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ ListApplicationsCommandInput,
23
+ ListApplicationsCommandOutput,
24
+ SecurityAgentClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ ...[input]: [] | [ListApplicationsCommandInput]
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ ListApplicationsCommandInput,
32
+ ListApplicationsCommandOutput,
33
+ SecurityAgentClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class ListApplicationsCommand extends ListApplicationsCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: ListApplicationsRequest;
43
+ output: ListApplicationsResponse;
44
+ };
45
+ sdk: {
46
+ input: ListApplicationsCommandInput;
47
+ output: ListApplicationsCommandOutput;
48
+ };
49
+ };
50
+ }
@@ -0,0 +1,47 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { ListArtifactsInput, ListArtifactsOutput } from "../models/models_0";
4
+ import {
5
+ SecurityAgentClientResolvedConfig,
6
+ ServiceInputTypes,
7
+ ServiceOutputTypes,
8
+ } from "../SecurityAgentClient";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface ListArtifactsCommandInput extends ListArtifactsInput {}
12
+ export interface ListArtifactsCommandOutput
13
+ extends ListArtifactsOutput,
14
+ __MetadataBearer {}
15
+ declare const ListArtifactsCommand_base: {
16
+ new (
17
+ input: ListArtifactsCommandInput
18
+ ): import("@smithy/smithy-client").CommandImpl<
19
+ ListArtifactsCommandInput,
20
+ ListArtifactsCommandOutput,
21
+ SecurityAgentClientResolvedConfig,
22
+ ServiceInputTypes,
23
+ ServiceOutputTypes
24
+ >;
25
+ new (
26
+ input: ListArtifactsCommandInput
27
+ ): import("@smithy/smithy-client").CommandImpl<
28
+ ListArtifactsCommandInput,
29
+ ListArtifactsCommandOutput,
30
+ SecurityAgentClientResolvedConfig,
31
+ ServiceInputTypes,
32
+ ServiceOutputTypes
33
+ >;
34
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
35
+ };
36
+ export declare class ListArtifactsCommand extends ListArtifactsCommand_base {
37
+ protected static __types: {
38
+ api: {
39
+ input: ListArtifactsInput;
40
+ output: ListArtifactsOutput;
41
+ };
42
+ sdk: {
43
+ input: ListArtifactsCommandInput;
44
+ output: ListArtifactsCommandOutput;
45
+ };
46
+ };
47
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ ListDiscoveredEndpointsInput,
5
+ ListDiscoveredEndpointsOutput,
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 ListDiscoveredEndpointsCommandInput
15
+ extends ListDiscoveredEndpointsInput {}
16
+ export interface ListDiscoveredEndpointsCommandOutput
17
+ extends ListDiscoveredEndpointsOutput,
18
+ __MetadataBearer {}
19
+ declare const ListDiscoveredEndpointsCommand_base: {
20
+ new (
21
+ input: ListDiscoveredEndpointsCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ ListDiscoveredEndpointsCommandInput,
24
+ ListDiscoveredEndpointsCommandOutput,
25
+ SecurityAgentClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: ListDiscoveredEndpointsCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ ListDiscoveredEndpointsCommandInput,
33
+ ListDiscoveredEndpointsCommandOutput,
34
+ SecurityAgentClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class ListDiscoveredEndpointsCommand extends ListDiscoveredEndpointsCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: ListDiscoveredEndpointsInput;
44
+ output: ListDiscoveredEndpointsOutput;
45
+ };
46
+ sdk: {
47
+ input: ListDiscoveredEndpointsCommandInput;
48
+ output: ListDiscoveredEndpointsCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,47 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { ListFindingsInput, ListFindingsOutput } from "../models/models_0";
4
+ import {
5
+ SecurityAgentClientResolvedConfig,
6
+ ServiceInputTypes,
7
+ ServiceOutputTypes,
8
+ } from "../SecurityAgentClient";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface ListFindingsCommandInput extends ListFindingsInput {}
12
+ export interface ListFindingsCommandOutput
13
+ extends ListFindingsOutput,
14
+ __MetadataBearer {}
15
+ declare const ListFindingsCommand_base: {
16
+ new (
17
+ input: ListFindingsCommandInput
18
+ ): import("@smithy/smithy-client").CommandImpl<
19
+ ListFindingsCommandInput,
20
+ ListFindingsCommandOutput,
21
+ SecurityAgentClientResolvedConfig,
22
+ ServiceInputTypes,
23
+ ServiceOutputTypes
24
+ >;
25
+ new (
26
+ input: ListFindingsCommandInput
27
+ ): import("@smithy/smithy-client").CommandImpl<
28
+ ListFindingsCommandInput,
29
+ ListFindingsCommandOutput,
30
+ SecurityAgentClientResolvedConfig,
31
+ ServiceInputTypes,
32
+ ServiceOutputTypes
33
+ >;
34
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
35
+ };
36
+ export declare class ListFindingsCommand extends ListFindingsCommand_base {
37
+ protected static __types: {
38
+ api: {
39
+ input: ListFindingsInput;
40
+ output: ListFindingsOutput;
41
+ };
42
+ sdk: {
43
+ input: ListFindingsCommandInput;
44
+ output: ListFindingsCommandOutput;
45
+ };
46
+ };
47
+ }