@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,250 @@
1
+ import { type HostHeaderInputConfig, type HostHeaderResolvedConfig } from "@aws-sdk/middleware-host-header";
2
+ import { type UserAgentInputConfig, type UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
3
+ import { type RegionInputConfig, type RegionResolvedConfig } from "@smithy/config-resolver";
4
+ import { type EventStreamSerdeInputConfig, type EventStreamSerdeResolvedConfig } from "@smithy/eventstream-serde-config-resolver";
5
+ import { type EndpointInputConfig, type EndpointResolvedConfig } from "@smithy/middleware-endpoint";
6
+ import { type RetryInputConfig, type RetryResolvedConfig } from "@smithy/middleware-retry";
7
+ import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
8
+ import { type DefaultsMode as __DefaultsMode, type SmithyConfiguration as __SmithyConfiguration, type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client } from "@smithy/smithy-client";
9
+ import type { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, Decoder as __Decoder, Encoder as __Encoder, EventStreamSerdeProvider as __EventStreamSerdeProvider, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
10
+ import { type HttpAuthSchemeInputConfig, type HttpAuthSchemeResolvedConfig } from "./auth/httpAuthSchemeProvider";
11
+ import type { AllowVendedLogDeliveryForResourceCommandInput, AllowVendedLogDeliveryForResourceCommandOutput } from "./commands/AllowVendedLogDeliveryForResourceCommand";
12
+ import type { AssociateServiceCommandInput, AssociateServiceCommandOutput } from "./commands/AssociateServiceCommand";
13
+ import type { CreateAgentSpaceCommandInput, CreateAgentSpaceCommandOutput } from "./commands/CreateAgentSpaceCommand";
14
+ import type { CreateBacklogTaskCommandInput, CreateBacklogTaskCommandOutput } from "./commands/CreateBacklogTaskCommand";
15
+ import type { CreateChatCommandInput, CreateChatCommandOutput } from "./commands/CreateChatCommand";
16
+ import type { CreatePrivateConnectionCommandInput, CreatePrivateConnectionCommandOutput } from "./commands/CreatePrivateConnectionCommand";
17
+ import type { DeleteAgentSpaceCommandInput, DeleteAgentSpaceCommandOutput } from "./commands/DeleteAgentSpaceCommand";
18
+ import type { DeletePrivateConnectionCommandInput, DeletePrivateConnectionCommandOutput } from "./commands/DeletePrivateConnectionCommand";
19
+ import type { DeregisterServiceCommandInput, DeregisterServiceCommandOutput } from "./commands/DeregisterServiceCommand";
20
+ import type { DescribePrivateConnectionCommandInput, DescribePrivateConnectionCommandOutput } from "./commands/DescribePrivateConnectionCommand";
21
+ import type { DescribeSupportLevelCommandInput, DescribeSupportLevelCommandOutput } from "./commands/DescribeSupportLevelCommand";
22
+ import type { DisableOperatorAppCommandInput, DisableOperatorAppCommandOutput } from "./commands/DisableOperatorAppCommand";
23
+ import type { DisassociateServiceCommandInput, DisassociateServiceCommandOutput } from "./commands/DisassociateServiceCommand";
24
+ import type { EnableOperatorAppCommandInput, EnableOperatorAppCommandOutput } from "./commands/EnableOperatorAppCommand";
25
+ import type { EndChatForCaseCommandInput, EndChatForCaseCommandOutput } from "./commands/EndChatForCaseCommand";
26
+ import type { GetAccountUsageCommandInput, GetAccountUsageCommandOutput } from "./commands/GetAccountUsageCommand";
27
+ import type { GetAgentSpaceCommandInput, GetAgentSpaceCommandOutput } from "./commands/GetAgentSpaceCommand";
28
+ import type { GetAssociationCommandInput, GetAssociationCommandOutput } from "./commands/GetAssociationCommand";
29
+ import type { GetBacklogTaskCommandInput, GetBacklogTaskCommandOutput } from "./commands/GetBacklogTaskCommand";
30
+ import type { GetOperatorAppCommandInput, GetOperatorAppCommandOutput } from "./commands/GetOperatorAppCommand";
31
+ import type { GetRecommendationCommandInput, GetRecommendationCommandOutput } from "./commands/GetRecommendationCommand";
32
+ import type { GetServiceCommandInput, GetServiceCommandOutput } from "./commands/GetServiceCommand";
33
+ import type { InitiateChatForCaseCommandInput, InitiateChatForCaseCommandOutput } from "./commands/InitiateChatForCaseCommand";
34
+ import type { ListAgentSpacesCommandInput, ListAgentSpacesCommandOutput } from "./commands/ListAgentSpacesCommand";
35
+ import type { ListAssociationsCommandInput, ListAssociationsCommandOutput } from "./commands/ListAssociationsCommand";
36
+ import type { ListBacklogTasksCommandInput, ListBacklogTasksCommandOutput } from "./commands/ListBacklogTasksCommand";
37
+ import type { ListChatsCommandInput, ListChatsCommandOutput } from "./commands/ListChatsCommand";
38
+ import type { ListExecutionsCommandInput, ListExecutionsCommandOutput } from "./commands/ListExecutionsCommand";
39
+ import type { ListGoalsCommandInput, ListGoalsCommandOutput } from "./commands/ListGoalsCommand";
40
+ import type { ListJournalRecordsCommandInput, ListJournalRecordsCommandOutput } from "./commands/ListJournalRecordsCommand";
41
+ import type { ListPendingMessagesCommandInput, ListPendingMessagesCommandOutput } from "./commands/ListPendingMessagesCommand";
42
+ import type { ListPrivateConnectionsCommandInput, ListPrivateConnectionsCommandOutput } from "./commands/ListPrivateConnectionsCommand";
43
+ import type { ListRecommendationsCommandInput, ListRecommendationsCommandOutput } from "./commands/ListRecommendationsCommand";
44
+ import type { ListServicesCommandInput, ListServicesCommandOutput } from "./commands/ListServicesCommand";
45
+ import type { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
46
+ import type { ListWebhooksCommandInput, ListWebhooksCommandOutput } from "./commands/ListWebhooksCommand";
47
+ import type { RegisterServiceCommandInput, RegisterServiceCommandOutput } from "./commands/RegisterServiceCommand";
48
+ import type { SendMessageCommandInput, SendMessageCommandOutput } from "./commands/SendMessageCommand";
49
+ import type { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
50
+ import type { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
51
+ import type { UpdateAgentSpaceCommandInput, UpdateAgentSpaceCommandOutput } from "./commands/UpdateAgentSpaceCommand";
52
+ import type { UpdateAssociationCommandInput, UpdateAssociationCommandOutput } from "./commands/UpdateAssociationCommand";
53
+ import type { UpdateBacklogTaskCommandInput, UpdateBacklogTaskCommandOutput } from "./commands/UpdateBacklogTaskCommand";
54
+ import type { UpdateGoalCommandInput, UpdateGoalCommandOutput } from "./commands/UpdateGoalCommand";
55
+ import type { UpdateOperatorAppIdpConfigCommandInput, UpdateOperatorAppIdpConfigCommandOutput } from "./commands/UpdateOperatorAppIdpConfigCommand";
56
+ import type { UpdatePrivateConnectionCertificateCommandInput, UpdatePrivateConnectionCertificateCommandOutput } from "./commands/UpdatePrivateConnectionCertificateCommand";
57
+ import type { UpdateRecommendationCommandInput, UpdateRecommendationCommandOutput } from "./commands/UpdateRecommendationCommand";
58
+ import type { ValidateAwsAssociationsCommandInput, ValidateAwsAssociationsCommandOutput } from "./commands/ValidateAwsAssociationsCommand";
59
+ import { type ClientInputEndpointParameters, type ClientResolvedEndpointParameters, type EndpointParameters } from "./endpoint/EndpointParameters";
60
+ import { type RuntimeExtension, type RuntimeExtensionsConfig } from "./runtimeExtensions";
61
+ export { __Client };
62
+ /**
63
+ * @public
64
+ */
65
+ export type ServiceInputTypes = AllowVendedLogDeliveryForResourceCommandInput | AssociateServiceCommandInput | CreateAgentSpaceCommandInput | CreateBacklogTaskCommandInput | CreateChatCommandInput | CreatePrivateConnectionCommandInput | DeleteAgentSpaceCommandInput | DeletePrivateConnectionCommandInput | DeregisterServiceCommandInput | DescribePrivateConnectionCommandInput | DescribeSupportLevelCommandInput | DisableOperatorAppCommandInput | DisassociateServiceCommandInput | EnableOperatorAppCommandInput | EndChatForCaseCommandInput | GetAccountUsageCommandInput | GetAgentSpaceCommandInput | GetAssociationCommandInput | GetBacklogTaskCommandInput | GetOperatorAppCommandInput | GetRecommendationCommandInput | GetServiceCommandInput | InitiateChatForCaseCommandInput | ListAgentSpacesCommandInput | ListAssociationsCommandInput | ListBacklogTasksCommandInput | ListChatsCommandInput | ListExecutionsCommandInput | ListGoalsCommandInput | ListJournalRecordsCommandInput | ListPendingMessagesCommandInput | ListPrivateConnectionsCommandInput | ListRecommendationsCommandInput | ListServicesCommandInput | ListTagsForResourceCommandInput | ListWebhooksCommandInput | RegisterServiceCommandInput | SendMessageCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateAgentSpaceCommandInput | UpdateAssociationCommandInput | UpdateBacklogTaskCommandInput | UpdateGoalCommandInput | UpdateOperatorAppIdpConfigCommandInput | UpdatePrivateConnectionCertificateCommandInput | UpdateRecommendationCommandInput | ValidateAwsAssociationsCommandInput;
66
+ /**
67
+ * @public
68
+ */
69
+ export type ServiceOutputTypes = AllowVendedLogDeliveryForResourceCommandOutput | AssociateServiceCommandOutput | CreateAgentSpaceCommandOutput | CreateBacklogTaskCommandOutput | CreateChatCommandOutput | CreatePrivateConnectionCommandOutput | DeleteAgentSpaceCommandOutput | DeletePrivateConnectionCommandOutput | DeregisterServiceCommandOutput | DescribePrivateConnectionCommandOutput | DescribeSupportLevelCommandOutput | DisableOperatorAppCommandOutput | DisassociateServiceCommandOutput | EnableOperatorAppCommandOutput | EndChatForCaseCommandOutput | GetAccountUsageCommandOutput | GetAgentSpaceCommandOutput | GetAssociationCommandOutput | GetBacklogTaskCommandOutput | GetOperatorAppCommandOutput | GetRecommendationCommandOutput | GetServiceCommandOutput | InitiateChatForCaseCommandOutput | ListAgentSpacesCommandOutput | ListAssociationsCommandOutput | ListBacklogTasksCommandOutput | ListChatsCommandOutput | ListExecutionsCommandOutput | ListGoalsCommandOutput | ListJournalRecordsCommandOutput | ListPendingMessagesCommandOutput | ListPrivateConnectionsCommandOutput | ListRecommendationsCommandOutput | ListServicesCommandOutput | ListTagsForResourceCommandOutput | ListWebhooksCommandOutput | RegisterServiceCommandOutput | SendMessageCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateAgentSpaceCommandOutput | UpdateAssociationCommandOutput | UpdateBacklogTaskCommandOutput | UpdateGoalCommandOutput | UpdateOperatorAppIdpConfigCommandOutput | UpdatePrivateConnectionCertificateCommandOutput | UpdateRecommendationCommandOutput | ValidateAwsAssociationsCommandOutput;
70
+ /**
71
+ * @public
72
+ */
73
+ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
74
+ /**
75
+ * The HTTP handler to use or its constructor options. Fetch in browser and Https in Nodejs.
76
+ */
77
+ requestHandler?: __HttpHandlerUserInput;
78
+ /**
79
+ * A constructor for a class implementing the {@link @smithy/types#ChecksumConstructor} interface
80
+ * that computes the SHA-256 HMAC or checksum of a string or binary buffer.
81
+ * @internal
82
+ */
83
+ sha256?: __ChecksumConstructor | __HashConstructor;
84
+ /**
85
+ * The function that will be used to convert strings into HTTP endpoints.
86
+ * @internal
87
+ */
88
+ urlParser?: __UrlParser;
89
+ /**
90
+ * A function that can calculate the length of a request body.
91
+ * @internal
92
+ */
93
+ bodyLengthChecker?: __BodyLengthCalculator;
94
+ /**
95
+ * A function that converts a stream into an array of bytes.
96
+ * @internal
97
+ */
98
+ streamCollector?: __StreamCollector;
99
+ /**
100
+ * The function that will be used to convert a base64-encoded string to a byte array.
101
+ * @internal
102
+ */
103
+ base64Decoder?: __Decoder;
104
+ /**
105
+ * The function that will be used to convert binary data to a base64-encoded string.
106
+ * @internal
107
+ */
108
+ base64Encoder?: __Encoder;
109
+ /**
110
+ * The function that will be used to convert a UTF8-encoded string to a byte array.
111
+ * @internal
112
+ */
113
+ utf8Decoder?: __Decoder;
114
+ /**
115
+ * The function that will be used to convert binary data to a UTF-8 encoded string.
116
+ * @internal
117
+ */
118
+ utf8Encoder?: __Encoder;
119
+ /**
120
+ * The runtime environment.
121
+ * @internal
122
+ */
123
+ runtime?: string;
124
+ /**
125
+ * Disable dynamically changing the endpoint of the client based on the hostPrefix
126
+ * trait of an operation.
127
+ */
128
+ disableHostPrefix?: boolean;
129
+ /**
130
+ * Unique service identifier.
131
+ * @internal
132
+ */
133
+ serviceId?: string;
134
+ /**
135
+ * Enables IPv6/IPv4 dualstack endpoint.
136
+ */
137
+ useDualstackEndpoint?: boolean | __Provider<boolean>;
138
+ /**
139
+ * Enables FIPS compatible endpoints.
140
+ */
141
+ useFipsEndpoint?: boolean | __Provider<boolean>;
142
+ /**
143
+ * The AWS region to which this client will send requests
144
+ */
145
+ region?: string | __Provider<string>;
146
+ /**
147
+ * Setting a client profile is similar to setting a value for the
148
+ * AWS_PROFILE environment variable. Setting a profile on a client
149
+ * in code only affects the single client instance, unlike AWS_PROFILE.
150
+ *
151
+ * When set, and only for environments where an AWS configuration
152
+ * file exists, fields configurable by this file will be retrieved
153
+ * from the specified profile within that file.
154
+ * Conflicting code configuration and environment variables will
155
+ * still have higher priority.
156
+ *
157
+ * For client credential resolution that involves checking the AWS
158
+ * configuration file, the client's profile (this value) will be
159
+ * used unless a different profile is set in the credential
160
+ * provider options.
161
+ *
162
+ */
163
+ profile?: string;
164
+ /**
165
+ * The provider populating default tracking information to be sent with `user-agent`, `x-amz-user-agent` header
166
+ * @internal
167
+ */
168
+ defaultUserAgentProvider?: __Provider<__UserAgent>;
169
+ /**
170
+ * Default credentials provider; Not available in browser runtime.
171
+ * @deprecated
172
+ * @internal
173
+ */
174
+ credentialDefaultProvider?: (input: any) => AwsCredentialIdentityProvider;
175
+ /**
176
+ * Value for how many times a request will be made at most in case of retry.
177
+ */
178
+ maxAttempts?: number | __Provider<number>;
179
+ /**
180
+ * Specifies which retry algorithm to use.
181
+ * @see https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-smithy-util-retry/Enum/RETRY_MODES/
182
+ *
183
+ */
184
+ retryMode?: string | __Provider<string>;
185
+ /**
186
+ * Optional logger for logging debug/info/warn/error.
187
+ */
188
+ logger?: __Logger;
189
+ /**
190
+ * Optional extensions
191
+ */
192
+ extensions?: RuntimeExtension[];
193
+ /**
194
+ * The function that provides necessary utilities for generating and parsing event stream
195
+ */
196
+ eventStreamSerdeProvider?: __EventStreamSerdeProvider;
197
+ /**
198
+ * The {@link @smithy/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
199
+ */
200
+ defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
201
+ }
202
+ /**
203
+ * @public
204
+ */
205
+ export type DevOpsAgentClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & UserAgentInputConfig & RetryInputConfig & RegionInputConfig & HostHeaderInputConfig & EndpointInputConfig<EndpointParameters> & EventStreamSerdeInputConfig & HttpAuthSchemeInputConfig & ClientInputEndpointParameters;
206
+ /**
207
+ * @public
208
+ *
209
+ * The configuration interface of DevOpsAgentClient class constructor that set the region, credentials and other options.
210
+ */
211
+ export interface DevOpsAgentClientConfig extends DevOpsAgentClientConfigType {
212
+ }
213
+ /**
214
+ * @public
215
+ */
216
+ export type DevOpsAgentClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RuntimeExtensionsConfig & UserAgentResolvedConfig & RetryResolvedConfig & RegionResolvedConfig & HostHeaderResolvedConfig & EndpointResolvedConfig<EndpointParameters> & EventStreamSerdeResolvedConfig & HttpAuthSchemeResolvedConfig & ClientResolvedEndpointParameters;
217
+ /**
218
+ * @public
219
+ *
220
+ * The resolved configuration interface of DevOpsAgentClient class. This is resolved and normalized from the {@link DevOpsAgentClientConfig | constructor configuration interface}.
221
+ */
222
+ export interface DevOpsAgentClientResolvedConfig extends DevOpsAgentClientResolvedConfigType {
223
+ }
224
+ /**
225
+ * AWS DevOps Agent is a frontier agent that resolves and proactively prevents incidents, continuously improving
226
+ * reliability and performance. AWS DevOps Agent investigates incidents and identifies operational improvements as an
227
+ * experienced DevOps engineer.
228
+ *
229
+ * The agent works by:
230
+ *
231
+ * * Learning your resources and their relationships.
232
+ * * Working with your observability tools, runbooks, code repositories, and CI/CD pipelines.
233
+ * * Correlating telemetry, code, and deployment data to understand relationships between your application resources.
234
+ * * Supporting applications in multicloud and hybrid environments.
235
+ *
236
+ * @public
237
+ */
238
+ export declare class DevOpsAgentClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, DevOpsAgentClientResolvedConfig> {
239
+ /**
240
+ * The resolved configuration of DevOpsAgentClient class. This is resolved and normalized from the {@link DevOpsAgentClientConfig | constructor configuration interface}.
241
+ */
242
+ readonly config: DevOpsAgentClientResolvedConfig;
243
+ constructor(...[configuration]: __CheckOptionalClientConfig<DevOpsAgentClientConfig>);
244
+ /**
245
+ * Destroy underlying resources, like sockets. It's usually not necessary to do this.
246
+ * However in Node.js, it's best to explicitly shut down the client's agent when it is no longer needed.
247
+ * Otherwise, sockets might stay open for quite a long time before the server terminates them.
248
+ */
249
+ destroy(): void;
250
+ }
@@ -0,0 +1,29 @@
1
+ import type { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types";
2
+ import type { DevOpsAgentHttpAuthSchemeProvider } from "./httpAuthSchemeProvider";
3
+ /**
4
+ * @internal
5
+ */
6
+ export interface HttpAuthExtensionConfiguration {
7
+ setHttpAuthScheme(httpAuthScheme: HttpAuthScheme): void;
8
+ httpAuthSchemes(): HttpAuthScheme[];
9
+ setHttpAuthSchemeProvider(httpAuthSchemeProvider: DevOpsAgentHttpAuthSchemeProvider): void;
10
+ httpAuthSchemeProvider(): DevOpsAgentHttpAuthSchemeProvider;
11
+ setCredentials(credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider): void;
12
+ credentials(): AwsCredentialIdentity | AwsCredentialIdentityProvider | undefined;
13
+ }
14
+ /**
15
+ * @internal
16
+ */
17
+ export type HttpAuthRuntimeConfig = Partial<{
18
+ httpAuthSchemes: HttpAuthScheme[];
19
+ httpAuthSchemeProvider: DevOpsAgentHttpAuthSchemeProvider;
20
+ credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider;
21
+ }>;
22
+ /**
23
+ * @internal
24
+ */
25
+ export declare const getHttpAuthExtensionConfiguration: (runtimeConfig: HttpAuthRuntimeConfig) => HttpAuthExtensionConfiguration;
26
+ /**
27
+ * @internal
28
+ */
29
+ export declare const resolveHttpAuthRuntimeConfig: (config: HttpAuthExtensionConfiguration) => HttpAuthRuntimeConfig;
@@ -0,0 +1,75 @@
1
+ import { AwsSdkSigV4AuthInputConfig, AwsSdkSigV4AuthResolvedConfig, AwsSdkSigV4PreviouslyResolved } from "@aws-sdk/core/httpAuthSchemes";
2
+ import type { HandlerExecutionContext, HttpAuthScheme, HttpAuthSchemeParameters, HttpAuthSchemeParametersProvider, HttpAuthSchemeProvider, Provider } from "@smithy/types";
3
+ import { type DevOpsAgentClientResolvedConfig } from "../DevOpsAgentClient";
4
+ /**
5
+ * @internal
6
+ */
7
+ export interface DevOpsAgentHttpAuthSchemeParameters extends HttpAuthSchemeParameters {
8
+ region?: string;
9
+ }
10
+ /**
11
+ * @internal
12
+ */
13
+ export interface DevOpsAgentHttpAuthSchemeParametersProvider extends HttpAuthSchemeParametersProvider<DevOpsAgentClientResolvedConfig, HandlerExecutionContext, DevOpsAgentHttpAuthSchemeParameters, object> {
14
+ }
15
+ /**
16
+ * @internal
17
+ */
18
+ export declare const defaultDevOpsAgentHttpAuthSchemeParametersProvider: (config: DevOpsAgentClientResolvedConfig, context: HandlerExecutionContext, input: object) => Promise<DevOpsAgentHttpAuthSchemeParameters>;
19
+ /**
20
+ * @internal
21
+ */
22
+ export interface DevOpsAgentHttpAuthSchemeProvider extends HttpAuthSchemeProvider<DevOpsAgentHttpAuthSchemeParameters> {
23
+ }
24
+ /**
25
+ * @internal
26
+ */
27
+ export declare const defaultDevOpsAgentHttpAuthSchemeProvider: DevOpsAgentHttpAuthSchemeProvider;
28
+ /**
29
+ * @public
30
+ */
31
+ export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
32
+ /**
33
+ * A comma-separated list of case-sensitive auth scheme names.
34
+ * An auth scheme name is a fully qualified auth scheme ID with the namespace prefix trimmed.
35
+ * For example, the auth scheme with ID aws.auth#sigv4 is named sigv4.
36
+ * @public
37
+ */
38
+ authSchemePreference?: string[] | Provider<string[]>;
39
+ /**
40
+ * Configuration of HttpAuthSchemes for a client which provides default identity providers and signers per auth scheme.
41
+ * @internal
42
+ */
43
+ httpAuthSchemes?: HttpAuthScheme[];
44
+ /**
45
+ * Configuration of an HttpAuthSchemeProvider for a client which resolves which HttpAuthScheme to use.
46
+ * @internal
47
+ */
48
+ httpAuthSchemeProvider?: DevOpsAgentHttpAuthSchemeProvider;
49
+ }
50
+ /**
51
+ * @internal
52
+ */
53
+ export interface HttpAuthSchemeResolvedConfig extends AwsSdkSigV4AuthResolvedConfig {
54
+ /**
55
+ * A comma-separated list of case-sensitive auth scheme names.
56
+ * An auth scheme name is a fully qualified auth scheme ID with the namespace prefix trimmed.
57
+ * For example, the auth scheme with ID aws.auth#sigv4 is named sigv4.
58
+ * @public
59
+ */
60
+ readonly authSchemePreference: Provider<string[]>;
61
+ /**
62
+ * Configuration of HttpAuthSchemes for a client which provides default identity providers and signers per auth scheme.
63
+ * @internal
64
+ */
65
+ readonly httpAuthSchemes: HttpAuthScheme[];
66
+ /**
67
+ * Configuration of an HttpAuthSchemeProvider for a client which resolves which HttpAuthScheme to use.
68
+ * @internal
69
+ */
70
+ readonly httpAuthSchemeProvider: DevOpsAgentHttpAuthSchemeProvider;
71
+ }
72
+ /**
73
+ * @internal
74
+ */
75
+ export declare const resolveHttpAuthSchemeConfig: <T>(config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved) => T & HttpAuthSchemeResolvedConfig;
@@ -0,0 +1,100 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import type { DevOpsAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DevOpsAgentClient";
4
+ import type { AllowVendedLogDeliveryForResourceInput, AllowVendedLogDeliveryForResourceOutput } from "../models/models_0";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link AllowVendedLogDeliveryForResourceCommand}.
14
+ */
15
+ export interface AllowVendedLogDeliveryForResourceCommandInput extends AllowVendedLogDeliveryForResourceInput {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link AllowVendedLogDeliveryForResourceCommand}.
21
+ */
22
+ export interface AllowVendedLogDeliveryForResourceCommandOutput extends AllowVendedLogDeliveryForResourceOutput, __MetadataBearer {
23
+ }
24
+ declare const AllowVendedLogDeliveryForResourceCommand_base: {
25
+ new (input: AllowVendedLogDeliveryForResourceCommandInput): import("@smithy/smithy-client").CommandImpl<AllowVendedLogDeliveryForResourceCommandInput, AllowVendedLogDeliveryForResourceCommandOutput, DevOpsAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (input: AllowVendedLogDeliveryForResourceCommandInput): import("@smithy/smithy-client").CommandImpl<AllowVendedLogDeliveryForResourceCommandInput, AllowVendedLogDeliveryForResourceCommandOutput, DevOpsAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * Authorize Ingestion Hub subscription operation. Looks to see if the derived accountId from FAS has an AgentSpace.
31
+ * @example
32
+ * Use a bare-bones client and the command you need to make an API call.
33
+ * ```javascript
34
+ * import { DevOpsAgentClient, AllowVendedLogDeliveryForResourceCommand } from "@aws-sdk/client-devops-agent"; // ES Modules import
35
+ * // const { DevOpsAgentClient, AllowVendedLogDeliveryForResourceCommand } = require("@aws-sdk/client-devops-agent"); // CommonJS import
36
+ * // import type { DevOpsAgentClientConfig } from "@aws-sdk/client-devops-agent";
37
+ * const config = {}; // type is DevOpsAgentClientConfig
38
+ * const client = new DevOpsAgentClient(config);
39
+ * const input = { // AllowVendedLogDeliveryForResourceInput
40
+ * resourceArnBeingAuthorized: "STRING_VALUE", // required
41
+ * deliverySourceArn: "STRING_VALUE", // required
42
+ * logType: "STRING_VALUE",
43
+ * };
44
+ * const command = new AllowVendedLogDeliveryForResourceCommand(input);
45
+ * const response = await client.send(command);
46
+ * // { // AllowVendedLogDeliveryForResourceOutput
47
+ * // message: "STRING_VALUE",
48
+ * // };
49
+ *
50
+ * ```
51
+ *
52
+ * @param AllowVendedLogDeliveryForResourceCommandInput - {@link AllowVendedLogDeliveryForResourceCommandInput}
53
+ * @returns {@link AllowVendedLogDeliveryForResourceCommandOutput}
54
+ * @see {@link AllowVendedLogDeliveryForResourceCommandInput} for command's `input` shape.
55
+ * @see {@link AllowVendedLogDeliveryForResourceCommandOutput} for command's `response` shape.
56
+ * @see {@link DevOpsAgentClientResolvedConfig | config} for DevOpsAgentClient's `config` shape.
57
+ *
58
+ * @throws {@link AccessDeniedException} (client fault)
59
+ * Access to the requested resource is denied due to insufficient permissions.
60
+ *
61
+ * @throws {@link ConflictException} (client fault)
62
+ * The request conflicts with the current state of the resource.
63
+ *
64
+ * @throws {@link ContentSizeExceededException} (client fault)
65
+ * This exception is thrown when the content size exceeds the allowed limit.
66
+ *
67
+ * @throws {@link InternalServerException} (server fault)
68
+ * This exception is thrown when an unexpected error occurs in the processing of a request.
69
+ *
70
+ * @throws {@link InvalidParameterException} (client fault)
71
+ * One or more parameters provided in the request are invalid.
72
+ *
73
+ * @throws {@link ResourceNotFoundException} (client fault)
74
+ * The requested resource could not be found.
75
+ *
76
+ * @throws {@link ServiceQuotaExceededException} (client fault)
77
+ * The request would exceed the service quota limit.
78
+ *
79
+ * @throws {@link ThrottlingException} (client fault)
80
+ * The request was throttled due to too many requests. Please slow down and try again.
81
+ *
82
+ * @throws {@link DevOpsAgentServiceException}
83
+ * <p>Base exception class for all service exceptions from DevOpsAgent service.</p>
84
+ *
85
+ *
86
+ * @public
87
+ */
88
+ export declare class AllowVendedLogDeliveryForResourceCommand extends AllowVendedLogDeliveryForResourceCommand_base {
89
+ /** @internal type navigation helper, not in runtime. */
90
+ protected static __types: {
91
+ api: {
92
+ input: AllowVendedLogDeliveryForResourceInput;
93
+ output: AllowVendedLogDeliveryForResourceOutput;
94
+ };
95
+ sdk: {
96
+ input: AllowVendedLogDeliveryForResourceCommandInput;
97
+ output: AllowVendedLogDeliveryForResourceCommandOutput;
98
+ };
99
+ };
100
+ }