@aws-sdk/client-devops-agent 3.1020.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/LICENSE +201 -0
  2. package/README.md +526 -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 +1045 -0
  7. package/dist-cjs/models/DevOpsAgentServiceException.js +12 -0
  8. package/dist-cjs/models/errors.js +140 -0
  9. package/dist-cjs/runtimeConfig.browser.js +40 -0
  10. package/dist-cjs/runtimeConfig.js +56 -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 +1891 -0
  14. package/dist-es/DevOpsAgent.js +119 -0
  15. package/dist-es/DevOpsAgentClient.js +52 -0
  16. package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
  17. package/dist-es/auth/httpAuthSchemeProvider.js +40 -0
  18. package/dist-es/commands/AllowVendedLogDeliveryForResourceCommand.js +16 -0
  19. package/dist-es/commands/AssociateServiceCommand.js +16 -0
  20. package/dist-es/commands/CreateAgentSpaceCommand.js +16 -0
  21. package/dist-es/commands/CreateBacklogTaskCommand.js +16 -0
  22. package/dist-es/commands/CreateChatCommand.js +16 -0
  23. package/dist-es/commands/CreatePrivateConnectionCommand.js +16 -0
  24. package/dist-es/commands/DeleteAgentSpaceCommand.js +16 -0
  25. package/dist-es/commands/DeletePrivateConnectionCommand.js +16 -0
  26. package/dist-es/commands/DeregisterServiceCommand.js +16 -0
  27. package/dist-es/commands/DescribePrivateConnectionCommand.js +16 -0
  28. package/dist-es/commands/DescribeSupportLevelCommand.js +16 -0
  29. package/dist-es/commands/DisableOperatorAppCommand.js +16 -0
  30. package/dist-es/commands/DisassociateServiceCommand.js +16 -0
  31. package/dist-es/commands/EnableOperatorAppCommand.js +16 -0
  32. package/dist-es/commands/EndChatForCaseCommand.js +16 -0
  33. package/dist-es/commands/GetAccountUsageCommand.js +16 -0
  34. package/dist-es/commands/GetAgentSpaceCommand.js +16 -0
  35. package/dist-es/commands/GetAssociationCommand.js +16 -0
  36. package/dist-es/commands/GetBacklogTaskCommand.js +16 -0
  37. package/dist-es/commands/GetOperatorAppCommand.js +16 -0
  38. package/dist-es/commands/GetRecommendationCommand.js +16 -0
  39. package/dist-es/commands/GetServiceCommand.js +16 -0
  40. package/dist-es/commands/InitiateChatForCaseCommand.js +16 -0
  41. package/dist-es/commands/ListAgentSpacesCommand.js +16 -0
  42. package/dist-es/commands/ListAssociationsCommand.js +16 -0
  43. package/dist-es/commands/ListBacklogTasksCommand.js +16 -0
  44. package/dist-es/commands/ListChatsCommand.js +16 -0
  45. package/dist-es/commands/ListExecutionsCommand.js +16 -0
  46. package/dist-es/commands/ListGoalsCommand.js +16 -0
  47. package/dist-es/commands/ListJournalRecordsCommand.js +16 -0
  48. package/dist-es/commands/ListPendingMessagesCommand.js +16 -0
  49. package/dist-es/commands/ListPrivateConnectionsCommand.js +16 -0
  50. package/dist-es/commands/ListRecommendationsCommand.js +16 -0
  51. package/dist-es/commands/ListServicesCommand.js +16 -0
  52. package/dist-es/commands/ListTagsForResourceCommand.js +16 -0
  53. package/dist-es/commands/ListWebhooksCommand.js +16 -0
  54. package/dist-es/commands/RegisterServiceCommand.js +16 -0
  55. package/dist-es/commands/SendMessageCommand.js +20 -0
  56. package/dist-es/commands/TagResourceCommand.js +16 -0
  57. package/dist-es/commands/UntagResourceCommand.js +16 -0
  58. package/dist-es/commands/UpdateAgentSpaceCommand.js +16 -0
  59. package/dist-es/commands/UpdateAssociationCommand.js +16 -0
  60. package/dist-es/commands/UpdateBacklogTaskCommand.js +16 -0
  61. package/dist-es/commands/UpdateGoalCommand.js +16 -0
  62. package/dist-es/commands/UpdateOperatorAppIdpConfigCommand.js +16 -0
  63. package/dist-es/commands/UpdatePrivateConnectionCertificateCommand.js +16 -0
  64. package/dist-es/commands/UpdateRecommendationCommand.js +16 -0
  65. package/dist-es/commands/ValidateAwsAssociationsCommand.js +16 -0
  66. package/dist-es/commands/index.js +48 -0
  67. package/dist-es/endpoint/EndpointParameters.js +11 -0
  68. package/dist-es/endpoint/endpointResolver.js +14 -0
  69. package/dist-es/endpoint/ruleset.js +4 -0
  70. package/dist-es/extensionConfiguration.js +1 -0
  71. package/dist-es/index.js +9 -0
  72. package/dist-es/models/DevOpsAgentServiceException.js +8 -0
  73. package/dist-es/models/enums.js +164 -0
  74. package/dist-es/models/errors.js +127 -0
  75. package/dist-es/models/models_0.js +1 -0
  76. package/dist-es/pagination/Interfaces.js +1 -0
  77. package/dist-es/pagination/ListAgentSpacesPaginator.js +4 -0
  78. package/dist-es/pagination/ListAssociationsPaginator.js +4 -0
  79. package/dist-es/pagination/ListBacklogTasksPaginator.js +4 -0
  80. package/dist-es/pagination/ListExecutionsPaginator.js +4 -0
  81. package/dist-es/pagination/ListGoalsPaginator.js +4 -0
  82. package/dist-es/pagination/ListJournalRecordsPaginator.js +4 -0
  83. package/dist-es/pagination/ListServicesPaginator.js +4 -0
  84. package/dist-es/pagination/index.js +8 -0
  85. package/dist-es/runtimeConfig.browser.js +35 -0
  86. package/dist-es/runtimeConfig.js +51 -0
  87. package/dist-es/runtimeConfig.native.js +11 -0
  88. package/dist-es/runtimeConfig.shared.js +39 -0
  89. package/dist-es/runtimeExtensions.js +9 -0
  90. package/dist-es/schemas/schemas_0.js +1883 -0
  91. package/dist-types/DevOpsAgent.d.ts +409 -0
  92. package/dist-types/DevOpsAgentClient.d.ts +250 -0
  93. package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
  94. package/dist-types/auth/httpAuthSchemeProvider.d.ts +75 -0
  95. package/dist-types/commands/AllowVendedLogDeliveryForResourceCommand.d.ts +100 -0
  96. package/dist-types/commands/AssociateServiceCommand.d.ts +300 -0
  97. package/dist-types/commands/CreateAgentSpaceCommand.d.ts +121 -0
  98. package/dist-types/commands/CreateBacklogTaskCommand.d.ts +139 -0
  99. package/dist-types/commands/CreateChatCommand.d.ts +106 -0
  100. package/dist-types/commands/CreatePrivateConnectionCommand.d.ts +138 -0
  101. package/dist-types/commands/DeleteAgentSpaceCommand.d.ts +101 -0
  102. package/dist-types/commands/DeletePrivateConnectionCommand.d.ts +104 -0
  103. package/dist-types/commands/DeregisterServiceCommand.d.ts +101 -0
  104. package/dist-types/commands/DescribePrivateConnectionCommand.d.ts +113 -0
  105. package/dist-types/commands/DescribeSupportLevelCommand.d.ts +112 -0
  106. package/dist-types/commands/DisableOperatorAppCommand.d.ts +105 -0
  107. package/dist-types/commands/DisassociateServiceCommand.d.ts +102 -0
  108. package/dist-types/commands/EnableOperatorAppCommand.d.ts +133 -0
  109. package/dist-types/commands/EndChatForCaseCommand.d.ts +109 -0
  110. package/dist-types/commands/GetAccountUsageCommand.d.ts +114 -0
  111. package/dist-types/commands/GetAgentSpaceCommand.d.ts +114 -0
  112. package/dist-types/commands/GetAssociationCommand.d.ts +202 -0
  113. package/dist-types/commands/GetBacklogTaskCommand.d.ts +128 -0
  114. package/dist-types/commands/GetOperatorAppCommand.d.ts +122 -0
  115. package/dist-types/commands/GetRecommendationCommand.d.ts +122 -0
  116. package/dist-types/commands/GetServiceCommand.d.ts +188 -0
  117. package/dist-types/commands/InitiateChatForCaseCommand.d.ts +109 -0
  118. package/dist-types/commands/ListAgentSpacesCommand.d.ts +115 -0
  119. package/dist-types/commands/ListAssociationsCommand.d.ts +207 -0
  120. package/dist-types/commands/ListBacklogTasksCommand.d.ts +148 -0
  121. package/dist-types/commands/ListChatsCommand.d.ts +114 -0
  122. package/dist-types/commands/ListExecutionsCommand.d.ts +119 -0
  123. package/dist-types/commands/ListGoalsCommand.d.ts +130 -0
  124. package/dist-types/commands/ListJournalRecordsCommand.d.ts +122 -0
  125. package/dist-types/commands/ListPendingMessagesCommand.d.ts +125 -0
  126. package/dist-types/commands/ListPrivateConnectionsCommand.d.ts +112 -0
  127. package/dist-types/commands/ListRecommendationsCommand.d.ts +129 -0
  128. package/dist-types/commands/ListServicesCommand.d.ts +190 -0
  129. package/dist-types/commands/ListTagsForResourceCommand.d.ts +105 -0
  130. package/dist-types/commands/ListWebhooksCommand.d.ts +110 -0
  131. package/dist-types/commands/RegisterServiceCommand.d.ts +347 -0
  132. package/dist-types/commands/SendMessageCommand.d.ts +166 -0
  133. package/dist-types/commands/TagResourceCommand.d.ts +104 -0
  134. package/dist-types/commands/UntagResourceCommand.d.ts +104 -0
  135. package/dist-types/commands/UpdateAgentSpaceCommand.d.ts +114 -0
  136. package/dist-types/commands/UpdateAssociationCommand.d.ts +300 -0
  137. package/dist-types/commands/UpdateBacklogTaskCommand.d.ts +130 -0
  138. package/dist-types/commands/UpdateGoalCommand.d.ts +128 -0
  139. package/dist-types/commands/UpdateOperatorAppIdpConfigCommand.d.ts +112 -0
  140. package/dist-types/commands/UpdatePrivateConnectionCertificateCommand.d.ts +111 -0
  141. package/dist-types/commands/UpdateRecommendationCommand.d.ts +124 -0
  142. package/dist-types/commands/ValidateAwsAssociationsCommand.d.ts +101 -0
  143. package/dist-types/commands/index.d.ts +48 -0
  144. package/dist-types/endpoint/EndpointParameters.d.ts +44 -0
  145. package/dist-types/endpoint/endpointResolver.d.ts +8 -0
  146. package/dist-types/endpoint/ruleset.d.ts +2 -0
  147. package/dist-types/extensionConfiguration.d.ts +9 -0
  148. package/dist-types/index.d.ts +27 -0
  149. package/dist-types/models/DevOpsAgentServiceException.d.ts +14 -0
  150. package/dist-types/models/enums.d.ts +631 -0
  151. package/dist-types/models/errors.d.ts +138 -0
  152. package/dist-types/models/models_0.d.ts +5708 -0
  153. package/dist-types/pagination/Interfaces.d.ts +8 -0
  154. package/dist-types/pagination/ListAgentSpacesPaginator.d.ts +7 -0
  155. package/dist-types/pagination/ListAssociationsPaginator.d.ts +7 -0
  156. package/dist-types/pagination/ListBacklogTasksPaginator.d.ts +7 -0
  157. package/dist-types/pagination/ListExecutionsPaginator.d.ts +7 -0
  158. package/dist-types/pagination/ListGoalsPaginator.d.ts +7 -0
  159. package/dist-types/pagination/ListJournalRecordsPaginator.d.ts +7 -0
  160. package/dist-types/pagination/ListServicesPaginator.d.ts +7 -0
  161. package/dist-types/pagination/index.d.ts +8 -0
  162. package/dist-types/runtimeConfig.browser.d.ts +56 -0
  163. package/dist-types/runtimeConfig.d.ts +56 -0
  164. package/dist-types/runtimeConfig.native.d.ts +55 -0
  165. package/dist-types/runtimeConfig.shared.d.ts +27 -0
  166. package/dist-types/runtimeExtensions.d.ts +17 -0
  167. package/dist-types/schemas/schemas_0.d.ts +271 -0
  168. package/dist-types/ts3.4/DevOpsAgent.d.ts +892 -0
  169. package/dist-types/ts3.4/DevOpsAgentClient.d.ts +414 -0
  170. package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
  171. package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +47 -0
  172. package/dist-types/ts3.4/commands/AllowVendedLogDeliveryForResourceCommand.d.ts +51 -0
  173. package/dist-types/ts3.4/commands/AssociateServiceCommand.d.ts +50 -0
  174. package/dist-types/ts3.4/commands/CreateAgentSpaceCommand.d.ts +50 -0
  175. package/dist-types/ts3.4/commands/CreateBacklogTaskCommand.d.ts +51 -0
  176. package/dist-types/ts3.4/commands/CreateChatCommand.d.ts +47 -0
  177. package/dist-types/ts3.4/commands/CreatePrivateConnectionCommand.d.ts +51 -0
  178. package/dist-types/ts3.4/commands/DeleteAgentSpaceCommand.d.ts +50 -0
  179. package/dist-types/ts3.4/commands/DeletePrivateConnectionCommand.d.ts +51 -0
  180. package/dist-types/ts3.4/commands/DeregisterServiceCommand.d.ts +50 -0
  181. package/dist-types/ts3.4/commands/DescribePrivateConnectionCommand.d.ts +51 -0
  182. package/dist-types/ts3.4/commands/DescribeSupportLevelCommand.d.ts +51 -0
  183. package/dist-types/ts3.4/commands/DisableOperatorAppCommand.d.ts +46 -0
  184. package/dist-types/ts3.4/commands/DisassociateServiceCommand.d.ts +51 -0
  185. package/dist-types/ts3.4/commands/EnableOperatorAppCommand.d.ts +50 -0
  186. package/dist-types/ts3.4/commands/EndChatForCaseCommand.d.ts +50 -0
  187. package/dist-types/ts3.4/commands/GetAccountUsageCommand.d.ts +50 -0
  188. package/dist-types/ts3.4/commands/GetAgentSpaceCommand.d.ts +47 -0
  189. package/dist-types/ts3.4/commands/GetAssociationCommand.d.ts +47 -0
  190. package/dist-types/ts3.4/commands/GetBacklogTaskCommand.d.ts +50 -0
  191. package/dist-types/ts3.4/commands/GetOperatorAppCommand.d.ts +47 -0
  192. package/dist-types/ts3.4/commands/GetRecommendationCommand.d.ts +51 -0
  193. package/dist-types/ts3.4/commands/GetServiceCommand.d.ts +47 -0
  194. package/dist-types/ts3.4/commands/InitiateChatForCaseCommand.d.ts +51 -0
  195. package/dist-types/ts3.4/commands/ListAgentSpacesCommand.d.ts +50 -0
  196. package/dist-types/ts3.4/commands/ListAssociationsCommand.d.ts +50 -0
  197. package/dist-types/ts3.4/commands/ListBacklogTasksCommand.d.ts +50 -0
  198. package/dist-types/ts3.4/commands/ListChatsCommand.d.ts +47 -0
  199. package/dist-types/ts3.4/commands/ListExecutionsCommand.d.ts +50 -0
  200. package/dist-types/ts3.4/commands/ListGoalsCommand.d.ts +47 -0
  201. package/dist-types/ts3.4/commands/ListJournalRecordsCommand.d.ts +51 -0
  202. package/dist-types/ts3.4/commands/ListPendingMessagesCommand.d.ts +51 -0
  203. package/dist-types/ts3.4/commands/ListPrivateConnectionsCommand.d.ts +51 -0
  204. package/dist-types/ts3.4/commands/ListRecommendationsCommand.d.ts +51 -0
  205. package/dist-types/ts3.4/commands/ListServicesCommand.d.ts +47 -0
  206. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +51 -0
  207. package/dist-types/ts3.4/commands/ListWebhooksCommand.d.ts +47 -0
  208. package/dist-types/ts3.4/commands/RegisterServiceCommand.d.ts +50 -0
  209. package/dist-types/ts3.4/commands/SendMessageCommand.d.ts +47 -0
  210. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +47 -0
  211. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +50 -0
  212. package/dist-types/ts3.4/commands/UpdateAgentSpaceCommand.d.ts +50 -0
  213. package/dist-types/ts3.4/commands/UpdateAssociationCommand.d.ts +50 -0
  214. package/dist-types/ts3.4/commands/UpdateBacklogTaskCommand.d.ts +51 -0
  215. package/dist-types/ts3.4/commands/UpdateGoalCommand.d.ts +47 -0
  216. package/dist-types/ts3.4/commands/UpdateOperatorAppIdpConfigCommand.d.ts +51 -0
  217. package/dist-types/ts3.4/commands/UpdatePrivateConnectionCertificateCommand.d.ts +51 -0
  218. package/dist-types/ts3.4/commands/UpdateRecommendationCommand.d.ts +51 -0
  219. package/dist-types/ts3.4/commands/ValidateAwsAssociationsCommand.d.ts +51 -0
  220. package/dist-types/ts3.4/commands/index.d.ts +48 -0
  221. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +45 -0
  222. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
  223. package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
  224. package/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
  225. package/dist-types/ts3.4/index.d.ts +12 -0
  226. package/dist-types/ts3.4/models/DevOpsAgentServiceException.d.ts +9 -0
  227. package/dist-types/ts3.4/models/enums.d.ts +207 -0
  228. package/dist-types/ts3.4/models/errors.d.ts +75 -0
  229. package/dist-types/ts3.4/models/models_0.d.ts +2202 -0
  230. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  231. package/dist-types/ts3.4/pagination/ListAgentSpacesPaginator.d.ts +11 -0
  232. package/dist-types/ts3.4/pagination/ListAssociationsPaginator.d.ts +11 -0
  233. package/dist-types/ts3.4/pagination/ListBacklogTasksPaginator.d.ts +11 -0
  234. package/dist-types/ts3.4/pagination/ListExecutionsPaginator.d.ts +11 -0
  235. package/dist-types/ts3.4/pagination/ListGoalsPaginator.d.ts +11 -0
  236. package/dist-types/ts3.4/pagination/ListJournalRecordsPaginator.d.ts +11 -0
  237. package/dist-types/ts3.4/pagination/ListServicesPaginator.d.ts +11 -0
  238. package/dist-types/ts3.4/pagination/index.d.ts +8 -0
  239. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +101 -0
  240. package/dist-types/ts3.4/runtimeConfig.d.ts +96 -0
  241. package/dist-types/ts3.4/runtimeConfig.native.d.ts +105 -0
  242. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +30 -0
  243. package/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
  244. package/dist-types/ts3.4/schemas/schemas_0.d.ts +271 -0
  245. package/package.json +103 -0
@@ -0,0 +1,409 @@
1
+ import type { HttpHandlerOptions as __HttpHandlerOptions, PaginationConfiguration, Paginator } from "@smithy/types";
2
+ import { type AllowVendedLogDeliveryForResourceCommandInput, type AllowVendedLogDeliveryForResourceCommandOutput } from "./commands/AllowVendedLogDeliveryForResourceCommand";
3
+ import { type AssociateServiceCommandInput, type AssociateServiceCommandOutput } from "./commands/AssociateServiceCommand";
4
+ import { type CreateAgentSpaceCommandInput, type CreateAgentSpaceCommandOutput } from "./commands/CreateAgentSpaceCommand";
5
+ import { type CreateBacklogTaskCommandInput, type CreateBacklogTaskCommandOutput } from "./commands/CreateBacklogTaskCommand";
6
+ import { type CreateChatCommandInput, type CreateChatCommandOutput } from "./commands/CreateChatCommand";
7
+ import { type CreatePrivateConnectionCommandInput, type CreatePrivateConnectionCommandOutput } from "./commands/CreatePrivateConnectionCommand";
8
+ import { type DeleteAgentSpaceCommandInput, type DeleteAgentSpaceCommandOutput } from "./commands/DeleteAgentSpaceCommand";
9
+ import { type DeletePrivateConnectionCommandInput, type DeletePrivateConnectionCommandOutput } from "./commands/DeletePrivateConnectionCommand";
10
+ import { type DeregisterServiceCommandInput, type DeregisterServiceCommandOutput } from "./commands/DeregisterServiceCommand";
11
+ import { type DescribePrivateConnectionCommandInput, type DescribePrivateConnectionCommandOutput } from "./commands/DescribePrivateConnectionCommand";
12
+ import { type DescribeSupportLevelCommandInput, type DescribeSupportLevelCommandOutput } from "./commands/DescribeSupportLevelCommand";
13
+ import { type DisableOperatorAppCommandInput, type DisableOperatorAppCommandOutput } from "./commands/DisableOperatorAppCommand";
14
+ import { type DisassociateServiceCommandInput, type DisassociateServiceCommandOutput } from "./commands/DisassociateServiceCommand";
15
+ import { type EnableOperatorAppCommandInput, type EnableOperatorAppCommandOutput } from "./commands/EnableOperatorAppCommand";
16
+ import { type EndChatForCaseCommandInput, type EndChatForCaseCommandOutput } from "./commands/EndChatForCaseCommand";
17
+ import { type GetAccountUsageCommandInput, type GetAccountUsageCommandOutput } from "./commands/GetAccountUsageCommand";
18
+ import { type GetAgentSpaceCommandInput, type GetAgentSpaceCommandOutput } from "./commands/GetAgentSpaceCommand";
19
+ import { type GetAssociationCommandInput, type GetAssociationCommandOutput } from "./commands/GetAssociationCommand";
20
+ import { type GetBacklogTaskCommandInput, type GetBacklogTaskCommandOutput } from "./commands/GetBacklogTaskCommand";
21
+ import { type GetOperatorAppCommandInput, type GetOperatorAppCommandOutput } from "./commands/GetOperatorAppCommand";
22
+ import { type GetRecommendationCommandInput, type GetRecommendationCommandOutput } from "./commands/GetRecommendationCommand";
23
+ import { type GetServiceCommandInput, type GetServiceCommandOutput } from "./commands/GetServiceCommand";
24
+ import { type InitiateChatForCaseCommandInput, type InitiateChatForCaseCommandOutput } from "./commands/InitiateChatForCaseCommand";
25
+ import { type ListAgentSpacesCommandInput, type ListAgentSpacesCommandOutput } from "./commands/ListAgentSpacesCommand";
26
+ import { type ListAssociationsCommandInput, type ListAssociationsCommandOutput } from "./commands/ListAssociationsCommand";
27
+ import { type ListBacklogTasksCommandInput, type ListBacklogTasksCommandOutput } from "./commands/ListBacklogTasksCommand";
28
+ import { type ListChatsCommandInput, type ListChatsCommandOutput } from "./commands/ListChatsCommand";
29
+ import { type ListExecutionsCommandInput, type ListExecutionsCommandOutput } from "./commands/ListExecutionsCommand";
30
+ import { type ListGoalsCommandInput, type ListGoalsCommandOutput } from "./commands/ListGoalsCommand";
31
+ import { type ListJournalRecordsCommandInput, type ListJournalRecordsCommandOutput } from "./commands/ListJournalRecordsCommand";
32
+ import { type ListPendingMessagesCommandInput, type ListPendingMessagesCommandOutput } from "./commands/ListPendingMessagesCommand";
33
+ import { type ListPrivateConnectionsCommandInput, type ListPrivateConnectionsCommandOutput } from "./commands/ListPrivateConnectionsCommand";
34
+ import { type ListRecommendationsCommandInput, type ListRecommendationsCommandOutput } from "./commands/ListRecommendationsCommand";
35
+ import { type ListServicesCommandInput, type ListServicesCommandOutput } from "./commands/ListServicesCommand";
36
+ import { type ListTagsForResourceCommandInput, type ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
37
+ import { type ListWebhooksCommandInput, type ListWebhooksCommandOutput } from "./commands/ListWebhooksCommand";
38
+ import { type RegisterServiceCommandInput, type RegisterServiceCommandOutput } from "./commands/RegisterServiceCommand";
39
+ import { type SendMessageCommandInput, type SendMessageCommandOutput } from "./commands/SendMessageCommand";
40
+ import { type TagResourceCommandInput, type TagResourceCommandOutput } from "./commands/TagResourceCommand";
41
+ import { type UntagResourceCommandInput, type UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
42
+ import { type UpdateAgentSpaceCommandInput, type UpdateAgentSpaceCommandOutput } from "./commands/UpdateAgentSpaceCommand";
43
+ import { type UpdateAssociationCommandInput, type UpdateAssociationCommandOutput } from "./commands/UpdateAssociationCommand";
44
+ import { type UpdateBacklogTaskCommandInput, type UpdateBacklogTaskCommandOutput } from "./commands/UpdateBacklogTaskCommand";
45
+ import { type UpdateGoalCommandInput, type UpdateGoalCommandOutput } from "./commands/UpdateGoalCommand";
46
+ import { type UpdateOperatorAppIdpConfigCommandInput, type UpdateOperatorAppIdpConfigCommandOutput } from "./commands/UpdateOperatorAppIdpConfigCommand";
47
+ import { type UpdatePrivateConnectionCertificateCommandInput, type UpdatePrivateConnectionCertificateCommandOutput } from "./commands/UpdatePrivateConnectionCertificateCommand";
48
+ import { type UpdateRecommendationCommandInput, type UpdateRecommendationCommandOutput } from "./commands/UpdateRecommendationCommand";
49
+ import { type ValidateAwsAssociationsCommandInput, type ValidateAwsAssociationsCommandOutput } from "./commands/ValidateAwsAssociationsCommand";
50
+ import { DevOpsAgentClient } from "./DevOpsAgentClient";
51
+ export interface DevOpsAgent {
52
+ /**
53
+ * @see {@link AllowVendedLogDeliveryForResourceCommand}
54
+ */
55
+ allowVendedLogDeliveryForResource(args: AllowVendedLogDeliveryForResourceCommandInput, options?: __HttpHandlerOptions): Promise<AllowVendedLogDeliveryForResourceCommandOutput>;
56
+ allowVendedLogDeliveryForResource(args: AllowVendedLogDeliveryForResourceCommandInput, cb: (err: any, data?: AllowVendedLogDeliveryForResourceCommandOutput) => void): void;
57
+ allowVendedLogDeliveryForResource(args: AllowVendedLogDeliveryForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AllowVendedLogDeliveryForResourceCommandOutput) => void): void;
58
+ /**
59
+ * @see {@link AssociateServiceCommand}
60
+ */
61
+ associateService(args: AssociateServiceCommandInput, options?: __HttpHandlerOptions): Promise<AssociateServiceCommandOutput>;
62
+ associateService(args: AssociateServiceCommandInput, cb: (err: any, data?: AssociateServiceCommandOutput) => void): void;
63
+ associateService(args: AssociateServiceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateServiceCommandOutput) => void): void;
64
+ /**
65
+ * @see {@link CreateAgentSpaceCommand}
66
+ */
67
+ createAgentSpace(args: CreateAgentSpaceCommandInput, options?: __HttpHandlerOptions): Promise<CreateAgentSpaceCommandOutput>;
68
+ createAgentSpace(args: CreateAgentSpaceCommandInput, cb: (err: any, data?: CreateAgentSpaceCommandOutput) => void): void;
69
+ createAgentSpace(args: CreateAgentSpaceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateAgentSpaceCommandOutput) => void): void;
70
+ /**
71
+ * @see {@link CreateBacklogTaskCommand}
72
+ */
73
+ createBacklogTask(args: CreateBacklogTaskCommandInput, options?: __HttpHandlerOptions): Promise<CreateBacklogTaskCommandOutput>;
74
+ createBacklogTask(args: CreateBacklogTaskCommandInput, cb: (err: any, data?: CreateBacklogTaskCommandOutput) => void): void;
75
+ createBacklogTask(args: CreateBacklogTaskCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateBacklogTaskCommandOutput) => void): void;
76
+ /**
77
+ * @see {@link CreateChatCommand}
78
+ */
79
+ createChat(args: CreateChatCommandInput, options?: __HttpHandlerOptions): Promise<CreateChatCommandOutput>;
80
+ createChat(args: CreateChatCommandInput, cb: (err: any, data?: CreateChatCommandOutput) => void): void;
81
+ createChat(args: CreateChatCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateChatCommandOutput) => void): void;
82
+ /**
83
+ * @see {@link CreatePrivateConnectionCommand}
84
+ */
85
+ createPrivateConnection(args: CreatePrivateConnectionCommandInput, options?: __HttpHandlerOptions): Promise<CreatePrivateConnectionCommandOutput>;
86
+ createPrivateConnection(args: CreatePrivateConnectionCommandInput, cb: (err: any, data?: CreatePrivateConnectionCommandOutput) => void): void;
87
+ createPrivateConnection(args: CreatePrivateConnectionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreatePrivateConnectionCommandOutput) => void): void;
88
+ /**
89
+ * @see {@link DeleteAgentSpaceCommand}
90
+ */
91
+ deleteAgentSpace(args: DeleteAgentSpaceCommandInput, options?: __HttpHandlerOptions): Promise<DeleteAgentSpaceCommandOutput>;
92
+ deleteAgentSpace(args: DeleteAgentSpaceCommandInput, cb: (err: any, data?: DeleteAgentSpaceCommandOutput) => void): void;
93
+ deleteAgentSpace(args: DeleteAgentSpaceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteAgentSpaceCommandOutput) => void): void;
94
+ /**
95
+ * @see {@link DeletePrivateConnectionCommand}
96
+ */
97
+ deletePrivateConnection(args: DeletePrivateConnectionCommandInput, options?: __HttpHandlerOptions): Promise<DeletePrivateConnectionCommandOutput>;
98
+ deletePrivateConnection(args: DeletePrivateConnectionCommandInput, cb: (err: any, data?: DeletePrivateConnectionCommandOutput) => void): void;
99
+ deletePrivateConnection(args: DeletePrivateConnectionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeletePrivateConnectionCommandOutput) => void): void;
100
+ /**
101
+ * @see {@link DeregisterServiceCommand}
102
+ */
103
+ deregisterService(args: DeregisterServiceCommandInput, options?: __HttpHandlerOptions): Promise<DeregisterServiceCommandOutput>;
104
+ deregisterService(args: DeregisterServiceCommandInput, cb: (err: any, data?: DeregisterServiceCommandOutput) => void): void;
105
+ deregisterService(args: DeregisterServiceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeregisterServiceCommandOutput) => void): void;
106
+ /**
107
+ * @see {@link DescribePrivateConnectionCommand}
108
+ */
109
+ describePrivateConnection(args: DescribePrivateConnectionCommandInput, options?: __HttpHandlerOptions): Promise<DescribePrivateConnectionCommandOutput>;
110
+ describePrivateConnection(args: DescribePrivateConnectionCommandInput, cb: (err: any, data?: DescribePrivateConnectionCommandOutput) => void): void;
111
+ describePrivateConnection(args: DescribePrivateConnectionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribePrivateConnectionCommandOutput) => void): void;
112
+ /**
113
+ * @see {@link DescribeSupportLevelCommand}
114
+ */
115
+ describeSupportLevel(args: DescribeSupportLevelCommandInput, options?: __HttpHandlerOptions): Promise<DescribeSupportLevelCommandOutput>;
116
+ describeSupportLevel(args: DescribeSupportLevelCommandInput, cb: (err: any, data?: DescribeSupportLevelCommandOutput) => void): void;
117
+ describeSupportLevel(args: DescribeSupportLevelCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeSupportLevelCommandOutput) => void): void;
118
+ /**
119
+ * @see {@link DisableOperatorAppCommand}
120
+ */
121
+ disableOperatorApp(args: DisableOperatorAppCommandInput, options?: __HttpHandlerOptions): Promise<DisableOperatorAppCommandOutput>;
122
+ disableOperatorApp(args: DisableOperatorAppCommandInput, cb: (err: any, data?: DisableOperatorAppCommandOutput) => void): void;
123
+ disableOperatorApp(args: DisableOperatorAppCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisableOperatorAppCommandOutput) => void): void;
124
+ /**
125
+ * @see {@link DisassociateServiceCommand}
126
+ */
127
+ disassociateService(args: DisassociateServiceCommandInput, options?: __HttpHandlerOptions): Promise<DisassociateServiceCommandOutput>;
128
+ disassociateService(args: DisassociateServiceCommandInput, cb: (err: any, data?: DisassociateServiceCommandOutput) => void): void;
129
+ disassociateService(args: DisassociateServiceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateServiceCommandOutput) => void): void;
130
+ /**
131
+ * @see {@link EnableOperatorAppCommand}
132
+ */
133
+ enableOperatorApp(args: EnableOperatorAppCommandInput, options?: __HttpHandlerOptions): Promise<EnableOperatorAppCommandOutput>;
134
+ enableOperatorApp(args: EnableOperatorAppCommandInput, cb: (err: any, data?: EnableOperatorAppCommandOutput) => void): void;
135
+ enableOperatorApp(args: EnableOperatorAppCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: EnableOperatorAppCommandOutput) => void): void;
136
+ /**
137
+ * @see {@link EndChatForCaseCommand}
138
+ */
139
+ endChatForCase(args: EndChatForCaseCommandInput, options?: __HttpHandlerOptions): Promise<EndChatForCaseCommandOutput>;
140
+ endChatForCase(args: EndChatForCaseCommandInput, cb: (err: any, data?: EndChatForCaseCommandOutput) => void): void;
141
+ endChatForCase(args: EndChatForCaseCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: EndChatForCaseCommandOutput) => void): void;
142
+ /**
143
+ * @see {@link GetAccountUsageCommand}
144
+ */
145
+ getAccountUsage(): Promise<GetAccountUsageCommandOutput>;
146
+ getAccountUsage(args: GetAccountUsageCommandInput, options?: __HttpHandlerOptions): Promise<GetAccountUsageCommandOutput>;
147
+ getAccountUsage(args: GetAccountUsageCommandInput, cb: (err: any, data?: GetAccountUsageCommandOutput) => void): void;
148
+ getAccountUsage(args: GetAccountUsageCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetAccountUsageCommandOutput) => void): void;
149
+ /**
150
+ * @see {@link GetAgentSpaceCommand}
151
+ */
152
+ getAgentSpace(args: GetAgentSpaceCommandInput, options?: __HttpHandlerOptions): Promise<GetAgentSpaceCommandOutput>;
153
+ getAgentSpace(args: GetAgentSpaceCommandInput, cb: (err: any, data?: GetAgentSpaceCommandOutput) => void): void;
154
+ getAgentSpace(args: GetAgentSpaceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetAgentSpaceCommandOutput) => void): void;
155
+ /**
156
+ * @see {@link GetAssociationCommand}
157
+ */
158
+ getAssociation(args: GetAssociationCommandInput, options?: __HttpHandlerOptions): Promise<GetAssociationCommandOutput>;
159
+ getAssociation(args: GetAssociationCommandInput, cb: (err: any, data?: GetAssociationCommandOutput) => void): void;
160
+ getAssociation(args: GetAssociationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetAssociationCommandOutput) => void): void;
161
+ /**
162
+ * @see {@link GetBacklogTaskCommand}
163
+ */
164
+ getBacklogTask(args: GetBacklogTaskCommandInput, options?: __HttpHandlerOptions): Promise<GetBacklogTaskCommandOutput>;
165
+ getBacklogTask(args: GetBacklogTaskCommandInput, cb: (err: any, data?: GetBacklogTaskCommandOutput) => void): void;
166
+ getBacklogTask(args: GetBacklogTaskCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetBacklogTaskCommandOutput) => void): void;
167
+ /**
168
+ * @see {@link GetOperatorAppCommand}
169
+ */
170
+ getOperatorApp(args: GetOperatorAppCommandInput, options?: __HttpHandlerOptions): Promise<GetOperatorAppCommandOutput>;
171
+ getOperatorApp(args: GetOperatorAppCommandInput, cb: (err: any, data?: GetOperatorAppCommandOutput) => void): void;
172
+ getOperatorApp(args: GetOperatorAppCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetOperatorAppCommandOutput) => void): void;
173
+ /**
174
+ * @see {@link GetRecommendationCommand}
175
+ */
176
+ getRecommendation(args: GetRecommendationCommandInput, options?: __HttpHandlerOptions): Promise<GetRecommendationCommandOutput>;
177
+ getRecommendation(args: GetRecommendationCommandInput, cb: (err: any, data?: GetRecommendationCommandOutput) => void): void;
178
+ getRecommendation(args: GetRecommendationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetRecommendationCommandOutput) => void): void;
179
+ /**
180
+ * @see {@link GetServiceCommand}
181
+ */
182
+ getService(args: GetServiceCommandInput, options?: __HttpHandlerOptions): Promise<GetServiceCommandOutput>;
183
+ getService(args: GetServiceCommandInput, cb: (err: any, data?: GetServiceCommandOutput) => void): void;
184
+ getService(args: GetServiceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetServiceCommandOutput) => void): void;
185
+ /**
186
+ * @see {@link InitiateChatForCaseCommand}
187
+ */
188
+ initiateChatForCase(args: InitiateChatForCaseCommandInput, options?: __HttpHandlerOptions): Promise<InitiateChatForCaseCommandOutput>;
189
+ initiateChatForCase(args: InitiateChatForCaseCommandInput, cb: (err: any, data?: InitiateChatForCaseCommandOutput) => void): void;
190
+ initiateChatForCase(args: InitiateChatForCaseCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: InitiateChatForCaseCommandOutput) => void): void;
191
+ /**
192
+ * @see {@link ListAgentSpacesCommand}
193
+ */
194
+ listAgentSpaces(): Promise<ListAgentSpacesCommandOutput>;
195
+ listAgentSpaces(args: ListAgentSpacesCommandInput, options?: __HttpHandlerOptions): Promise<ListAgentSpacesCommandOutput>;
196
+ listAgentSpaces(args: ListAgentSpacesCommandInput, cb: (err: any, data?: ListAgentSpacesCommandOutput) => void): void;
197
+ listAgentSpaces(args: ListAgentSpacesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListAgentSpacesCommandOutput) => void): void;
198
+ /**
199
+ * @see {@link ListAssociationsCommand}
200
+ */
201
+ listAssociations(args: ListAssociationsCommandInput, options?: __HttpHandlerOptions): Promise<ListAssociationsCommandOutput>;
202
+ listAssociations(args: ListAssociationsCommandInput, cb: (err: any, data?: ListAssociationsCommandOutput) => void): void;
203
+ listAssociations(args: ListAssociationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListAssociationsCommandOutput) => void): void;
204
+ /**
205
+ * @see {@link ListBacklogTasksCommand}
206
+ */
207
+ listBacklogTasks(args: ListBacklogTasksCommandInput, options?: __HttpHandlerOptions): Promise<ListBacklogTasksCommandOutput>;
208
+ listBacklogTasks(args: ListBacklogTasksCommandInput, cb: (err: any, data?: ListBacklogTasksCommandOutput) => void): void;
209
+ listBacklogTasks(args: ListBacklogTasksCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListBacklogTasksCommandOutput) => void): void;
210
+ /**
211
+ * @see {@link ListChatsCommand}
212
+ */
213
+ listChats(args: ListChatsCommandInput, options?: __HttpHandlerOptions): Promise<ListChatsCommandOutput>;
214
+ listChats(args: ListChatsCommandInput, cb: (err: any, data?: ListChatsCommandOutput) => void): void;
215
+ listChats(args: ListChatsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListChatsCommandOutput) => void): void;
216
+ /**
217
+ * @see {@link ListExecutionsCommand}
218
+ */
219
+ listExecutions(args: ListExecutionsCommandInput, options?: __HttpHandlerOptions): Promise<ListExecutionsCommandOutput>;
220
+ listExecutions(args: ListExecutionsCommandInput, cb: (err: any, data?: ListExecutionsCommandOutput) => void): void;
221
+ listExecutions(args: ListExecutionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListExecutionsCommandOutput) => void): void;
222
+ /**
223
+ * @see {@link ListGoalsCommand}
224
+ */
225
+ listGoals(args: ListGoalsCommandInput, options?: __HttpHandlerOptions): Promise<ListGoalsCommandOutput>;
226
+ listGoals(args: ListGoalsCommandInput, cb: (err: any, data?: ListGoalsCommandOutput) => void): void;
227
+ listGoals(args: ListGoalsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListGoalsCommandOutput) => void): void;
228
+ /**
229
+ * @see {@link ListJournalRecordsCommand}
230
+ */
231
+ listJournalRecords(args: ListJournalRecordsCommandInput, options?: __HttpHandlerOptions): Promise<ListJournalRecordsCommandOutput>;
232
+ listJournalRecords(args: ListJournalRecordsCommandInput, cb: (err: any, data?: ListJournalRecordsCommandOutput) => void): void;
233
+ listJournalRecords(args: ListJournalRecordsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListJournalRecordsCommandOutput) => void): void;
234
+ /**
235
+ * @see {@link ListPendingMessagesCommand}
236
+ */
237
+ listPendingMessages(args: ListPendingMessagesCommandInput, options?: __HttpHandlerOptions): Promise<ListPendingMessagesCommandOutput>;
238
+ listPendingMessages(args: ListPendingMessagesCommandInput, cb: (err: any, data?: ListPendingMessagesCommandOutput) => void): void;
239
+ listPendingMessages(args: ListPendingMessagesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListPendingMessagesCommandOutput) => void): void;
240
+ /**
241
+ * @see {@link ListPrivateConnectionsCommand}
242
+ */
243
+ listPrivateConnections(): Promise<ListPrivateConnectionsCommandOutput>;
244
+ listPrivateConnections(args: ListPrivateConnectionsCommandInput, options?: __HttpHandlerOptions): Promise<ListPrivateConnectionsCommandOutput>;
245
+ listPrivateConnections(args: ListPrivateConnectionsCommandInput, cb: (err: any, data?: ListPrivateConnectionsCommandOutput) => void): void;
246
+ listPrivateConnections(args: ListPrivateConnectionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListPrivateConnectionsCommandOutput) => void): void;
247
+ /**
248
+ * @see {@link ListRecommendationsCommand}
249
+ */
250
+ listRecommendations(args: ListRecommendationsCommandInput, options?: __HttpHandlerOptions): Promise<ListRecommendationsCommandOutput>;
251
+ listRecommendations(args: ListRecommendationsCommandInput, cb: (err: any, data?: ListRecommendationsCommandOutput) => void): void;
252
+ listRecommendations(args: ListRecommendationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListRecommendationsCommandOutput) => void): void;
253
+ /**
254
+ * @see {@link ListServicesCommand}
255
+ */
256
+ listServices(): Promise<ListServicesCommandOutput>;
257
+ listServices(args: ListServicesCommandInput, options?: __HttpHandlerOptions): Promise<ListServicesCommandOutput>;
258
+ listServices(args: ListServicesCommandInput, cb: (err: any, data?: ListServicesCommandOutput) => void): void;
259
+ listServices(args: ListServicesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListServicesCommandOutput) => void): void;
260
+ /**
261
+ * @see {@link ListTagsForResourceCommand}
262
+ */
263
+ listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
264
+ listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
265
+ listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
266
+ /**
267
+ * @see {@link ListWebhooksCommand}
268
+ */
269
+ listWebhooks(args: ListWebhooksCommandInput, options?: __HttpHandlerOptions): Promise<ListWebhooksCommandOutput>;
270
+ listWebhooks(args: ListWebhooksCommandInput, cb: (err: any, data?: ListWebhooksCommandOutput) => void): void;
271
+ listWebhooks(args: ListWebhooksCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListWebhooksCommandOutput) => void): void;
272
+ /**
273
+ * @see {@link RegisterServiceCommand}
274
+ */
275
+ registerService(args: RegisterServiceCommandInput, options?: __HttpHandlerOptions): Promise<RegisterServiceCommandOutput>;
276
+ registerService(args: RegisterServiceCommandInput, cb: (err: any, data?: RegisterServiceCommandOutput) => void): void;
277
+ registerService(args: RegisterServiceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RegisterServiceCommandOutput) => void): void;
278
+ /**
279
+ * @see {@link SendMessageCommand}
280
+ */
281
+ sendMessage(args: SendMessageCommandInput, options?: __HttpHandlerOptions): Promise<SendMessageCommandOutput>;
282
+ sendMessage(args: SendMessageCommandInput, cb: (err: any, data?: SendMessageCommandOutput) => void): void;
283
+ sendMessage(args: SendMessageCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SendMessageCommandOutput) => void): void;
284
+ /**
285
+ * @see {@link TagResourceCommand}
286
+ */
287
+ tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
288
+ tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
289
+ tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
290
+ /**
291
+ * @see {@link UntagResourceCommand}
292
+ */
293
+ untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
294
+ untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
295
+ untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
296
+ /**
297
+ * @see {@link UpdateAgentSpaceCommand}
298
+ */
299
+ updateAgentSpace(args: UpdateAgentSpaceCommandInput, options?: __HttpHandlerOptions): Promise<UpdateAgentSpaceCommandOutput>;
300
+ updateAgentSpace(args: UpdateAgentSpaceCommandInput, cb: (err: any, data?: UpdateAgentSpaceCommandOutput) => void): void;
301
+ updateAgentSpace(args: UpdateAgentSpaceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateAgentSpaceCommandOutput) => void): void;
302
+ /**
303
+ * @see {@link UpdateAssociationCommand}
304
+ */
305
+ updateAssociation(args: UpdateAssociationCommandInput, options?: __HttpHandlerOptions): Promise<UpdateAssociationCommandOutput>;
306
+ updateAssociation(args: UpdateAssociationCommandInput, cb: (err: any, data?: UpdateAssociationCommandOutput) => void): void;
307
+ updateAssociation(args: UpdateAssociationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateAssociationCommandOutput) => void): void;
308
+ /**
309
+ * @see {@link UpdateBacklogTaskCommand}
310
+ */
311
+ updateBacklogTask(args: UpdateBacklogTaskCommandInput, options?: __HttpHandlerOptions): Promise<UpdateBacklogTaskCommandOutput>;
312
+ updateBacklogTask(args: UpdateBacklogTaskCommandInput, cb: (err: any, data?: UpdateBacklogTaskCommandOutput) => void): void;
313
+ updateBacklogTask(args: UpdateBacklogTaskCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateBacklogTaskCommandOutput) => void): void;
314
+ /**
315
+ * @see {@link UpdateGoalCommand}
316
+ */
317
+ updateGoal(args: UpdateGoalCommandInput, options?: __HttpHandlerOptions): Promise<UpdateGoalCommandOutput>;
318
+ updateGoal(args: UpdateGoalCommandInput, cb: (err: any, data?: UpdateGoalCommandOutput) => void): void;
319
+ updateGoal(args: UpdateGoalCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateGoalCommandOutput) => void): void;
320
+ /**
321
+ * @see {@link UpdateOperatorAppIdpConfigCommand}
322
+ */
323
+ updateOperatorAppIdpConfig(args: UpdateOperatorAppIdpConfigCommandInput, options?: __HttpHandlerOptions): Promise<UpdateOperatorAppIdpConfigCommandOutput>;
324
+ updateOperatorAppIdpConfig(args: UpdateOperatorAppIdpConfigCommandInput, cb: (err: any, data?: UpdateOperatorAppIdpConfigCommandOutput) => void): void;
325
+ updateOperatorAppIdpConfig(args: UpdateOperatorAppIdpConfigCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateOperatorAppIdpConfigCommandOutput) => void): void;
326
+ /**
327
+ * @see {@link UpdatePrivateConnectionCertificateCommand}
328
+ */
329
+ updatePrivateConnectionCertificate(args: UpdatePrivateConnectionCertificateCommandInput, options?: __HttpHandlerOptions): Promise<UpdatePrivateConnectionCertificateCommandOutput>;
330
+ updatePrivateConnectionCertificate(args: UpdatePrivateConnectionCertificateCommandInput, cb: (err: any, data?: UpdatePrivateConnectionCertificateCommandOutput) => void): void;
331
+ updatePrivateConnectionCertificate(args: UpdatePrivateConnectionCertificateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdatePrivateConnectionCertificateCommandOutput) => void): void;
332
+ /**
333
+ * @see {@link UpdateRecommendationCommand}
334
+ */
335
+ updateRecommendation(args: UpdateRecommendationCommandInput, options?: __HttpHandlerOptions): Promise<UpdateRecommendationCommandOutput>;
336
+ updateRecommendation(args: UpdateRecommendationCommandInput, cb: (err: any, data?: UpdateRecommendationCommandOutput) => void): void;
337
+ updateRecommendation(args: UpdateRecommendationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateRecommendationCommandOutput) => void): void;
338
+ /**
339
+ * @see {@link ValidateAwsAssociationsCommand}
340
+ */
341
+ validateAwsAssociations(args: ValidateAwsAssociationsCommandInput, options?: __HttpHandlerOptions): Promise<ValidateAwsAssociationsCommandOutput>;
342
+ validateAwsAssociations(args: ValidateAwsAssociationsCommandInput, cb: (err: any, data?: ValidateAwsAssociationsCommandOutput) => void): void;
343
+ validateAwsAssociations(args: ValidateAwsAssociationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ValidateAwsAssociationsCommandOutput) => void): void;
344
+ /**
345
+ * @see {@link ListAgentSpacesCommand}
346
+ * @param args - command input.
347
+ * @param paginationConfig - optional pagination config.
348
+ * @returns AsyncIterable of {@link ListAgentSpacesCommandOutput}.
349
+ */
350
+ paginateListAgentSpaces(args?: ListAgentSpacesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListAgentSpacesCommandOutput>;
351
+ /**
352
+ * @see {@link ListAssociationsCommand}
353
+ * @param args - command input.
354
+ * @param paginationConfig - optional pagination config.
355
+ * @returns AsyncIterable of {@link ListAssociationsCommandOutput}.
356
+ */
357
+ paginateListAssociations(args: ListAssociationsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListAssociationsCommandOutput>;
358
+ /**
359
+ * @see {@link ListBacklogTasksCommand}
360
+ * @param args - command input.
361
+ * @param paginationConfig - optional pagination config.
362
+ * @returns AsyncIterable of {@link ListBacklogTasksCommandOutput}.
363
+ */
364
+ paginateListBacklogTasks(args: ListBacklogTasksCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListBacklogTasksCommandOutput>;
365
+ /**
366
+ * @see {@link ListExecutionsCommand}
367
+ * @param args - command input.
368
+ * @param paginationConfig - optional pagination config.
369
+ * @returns AsyncIterable of {@link ListExecutionsCommandOutput}.
370
+ */
371
+ paginateListExecutions(args: ListExecutionsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListExecutionsCommandOutput>;
372
+ /**
373
+ * @see {@link ListGoalsCommand}
374
+ * @param args - command input.
375
+ * @param paginationConfig - optional pagination config.
376
+ * @returns AsyncIterable of {@link ListGoalsCommandOutput}.
377
+ */
378
+ paginateListGoals(args: ListGoalsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListGoalsCommandOutput>;
379
+ /**
380
+ * @see {@link ListJournalRecordsCommand}
381
+ * @param args - command input.
382
+ * @param paginationConfig - optional pagination config.
383
+ * @returns AsyncIterable of {@link ListJournalRecordsCommandOutput}.
384
+ */
385
+ paginateListJournalRecords(args: ListJournalRecordsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListJournalRecordsCommandOutput>;
386
+ /**
387
+ * @see {@link ListServicesCommand}
388
+ * @param args - command input.
389
+ * @param paginationConfig - optional pagination config.
390
+ * @returns AsyncIterable of {@link ListServicesCommandOutput}.
391
+ */
392
+ paginateListServices(args?: ListServicesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListServicesCommandOutput>;
393
+ }
394
+ /**
395
+ * AWS DevOps Agent is a frontier agent that resolves and proactively prevents incidents, continuously improving
396
+ * reliability and performance. AWS DevOps Agent investigates incidents and identifies operational improvements as an
397
+ * experienced DevOps engineer.
398
+ *
399
+ * The agent works by:
400
+ *
401
+ * * Learning your resources and their relationships.
402
+ * * Working with your observability tools, runbooks, code repositories, and CI/CD pipelines.
403
+ * * Correlating telemetry, code, and deployment data to understand relationships between your application resources.
404
+ * * Supporting applications in multicloud and hybrid environments.
405
+ *
406
+ * @public
407
+ */
408
+ export declare class DevOpsAgent extends DevOpsAgentClient implements DevOpsAgent {
409
+ }