@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,1883 @@
1
+ const _A = "Association";
2
+ const _AC = "AzureConfiguration";
3
+ const _ADE = "AccessDeniedException";
4
+ const _ADOC = "AzureDevOpsConfiguration";
5
+ const _AKV = "ApiKeyValue";
6
+ const _AL = "AssociationsList";
7
+ const _AM = "AssistantMessage";
8
+ const _AMB = "AssistantMessageBlock";
9
+ const _AS = "AgentSpace";
10
+ const _ASD = "AdditionalServiceDetails";
11
+ const _ASI = "AssociateServiceInput";
12
+ const _ASL = "AgentSpaceList";
13
+ const _ASO = "AssociateServiceOutput";
14
+ const _ASRS = "AdditionalServiceRegistrationStep";
15
+ const _ASs = "AssociateService";
16
+ const _AVLDFR = "AllowVendedLogDeliveryForResource";
17
+ const _AVLDFRI = "AllowVendedLogDeliveryForResourceInput";
18
+ const _AVLDFRO = "AllowVendedLogDeliveryForResourceOutput";
19
+ const _AWSC = "AWSConfiguration";
20
+ const _CAS = "CreateAgentSpace";
21
+ const _CASI = "CreateAgentSpaceInput";
22
+ const _CASO = "CreateAgentSpaceOutput";
23
+ const _CBT = "CreateBacklogTask";
24
+ const _CBTR = "CreateBacklogTaskRequest";
25
+ const _CBTRr = "CreateBacklogTaskResponse";
26
+ const _CC = "CreateChat";
27
+ const _CCR = "CreateChatRequest";
28
+ const _CCRr = "CreateChatResponse";
29
+ const _CE = "ConflictException";
30
+ const _CEL = "ChatExecutionList";
31
+ const _CEh = "ChatExecution";
32
+ const _CI = "ClientId";
33
+ const _CPC = "ChatParticipantConnection";
34
+ const _CPCI = "CreatePrivateConnectionInput";
35
+ const _CPCO = "CreatePrivateConnectionOutput";
36
+ const _CPCr = "CreatePrivateConnection";
37
+ const _CS = "ClientSecret";
38
+ const _CSEE = "ContentSizeExceededException";
39
+ const _D = "Description";
40
+ const _DAC = "DatadogAuthorizationConfig";
41
+ const _DAS = "DeleteAgentSpace";
42
+ const _DASI = "DeleteAgentSpaceInput";
43
+ const _DASO = "DeleteAgentSpaceOutput";
44
+ const _DC = "DynatraceConfiguration";
45
+ const _DOA = "DisableOperatorApp";
46
+ const _DOACCC = "DynatraceOAuthClientCredentialsConfig";
47
+ const _DOAI = "DisableOperatorAppInput";
48
+ const _DPC = "DeletePrivateConnection";
49
+ const _DPCI = "DeletePrivateConnectionInput";
50
+ const _DPCIe = "DescribePrivateConnectionInput";
51
+ const _DPCO = "DeletePrivateConnectionOutput";
52
+ const _DPCOe = "DescribePrivateConnectionOutput";
53
+ const _DPCe = "DescribePrivateConnection";
54
+ const _DS = "DeregisterService";
55
+ const _DSAC = "DynatraceServiceAuthorizationConfig";
56
+ const _DSD = "DatadogServiceDetails";
57
+ const _DSDy = "DynatraceServiceDetails";
58
+ const _DSI = "DeregisterServiceInput";
59
+ const _DSIi = "DisassociateServiceInput";
60
+ const _DSL = "DescribeSupportLevel";
61
+ const _DSLR = "DescribeSupportLevelRequest";
62
+ const _DSLRe = "DescribeSupportLevelResponse";
63
+ const _DSO = "DeregisterServiceOutput";
64
+ const _DSOi = "DisassociateServiceOutput";
65
+ const _DSi = "DisassociateService";
66
+ const _E = "Execution";
67
+ const _EA = "EmailAddress";
68
+ const _ECC = "EventChannelConfiguration";
69
+ const _ECD = "EventChannelDetails";
70
+ const _ECFC = "EndChatForCase";
71
+ const _ECFCR = "EndChatForCaseRequest";
72
+ const _ECFCRn = "EndChatForCaseResponse";
73
+ const _EL = "ExecutionList";
74
+ const _EOA = "EnableOperatorApp";
75
+ const _EOAI = "EnableOperatorAppInput";
76
+ const _EOAO = "EnableOperatorAppOutput";
77
+ const _EP = "ExchangeParameters";
78
+ const _EPV = "ExchangeParameterValue";
79
+ const _G = "Goal";
80
+ const _GA = "GetAssociation";
81
+ const _GAI = "GetAssociationInput";
82
+ const _GAO = "GetAssociationOutput";
83
+ const _GAS = "GetAgentSpace";
84
+ const _GASI = "GetAgentSpaceInput";
85
+ const _GASO = "GetAgentSpaceOutput";
86
+ const _GAU = "GetAccountUsage";
87
+ const _GAUI = "GetAccountUsageInput";
88
+ const _GAUO = "GetAccountUsageOutput";
89
+ const _GBT = "GetBacklogTask";
90
+ const _GBTR = "GetBacklogTaskRequest";
91
+ const _GBTRe = "GetBacklogTaskResponse";
92
+ const _GC = "GoalContent";
93
+ const _GHC = "GitHubConfiguration";
94
+ const _GL = "GoalList";
95
+ const _GLC = "GitLabConfiguration";
96
+ const _GLD = "GitLabDetails";
97
+ const _GOA = "GetOperatorApp";
98
+ const _GOAI = "GetOperatorAppInput";
99
+ const _GOAO = "GetOperatorAppOutput";
100
+ const _GR = "GetRecommendation";
101
+ const _GRR = "GetRecommendationRequest";
102
+ const _GRRe = "GetRecommendationResponse";
103
+ const _GS = "GoalSchedule";
104
+ const _GSD = "GrafanaServiceDetails";
105
+ const _GSI = "GetServiceInput";
106
+ const _GSIo = "GoalScheduleInput";
107
+ const _GSO = "GetServiceOutput";
108
+ const _GSe = "GetService";
109
+ const _GW = "GenericWebhook";
110
+ const _IAC = "IamAuthConfiguration";
111
+ const _IACd = "IdcAuthConfiguration";
112
+ const _IACdp = "IdpAuthConfiguration";
113
+ const _ICFC = "InitiateChatForCase";
114
+ const _ICFCR = "InitiateChatForCaseRequest";
115
+ const _ICFCRn = "InitiateChatForCaseResponse";
116
+ const _ICS = "IdpClientSecret";
117
+ const _ICSE = "IdentityCenterServiceException";
118
+ const _IPE = "InvalidParameterException";
119
+ const _ISE = "InternalServerException";
120
+ const _JR = "JournalRecord";
121
+ const _JRL = "JournalRecordList";
122
+ const _LA = "ListAssociations";
123
+ const _LAI = "ListAssociationsInput";
124
+ const _LAO = "ListAssociationsOutput";
125
+ const _LAS = "ListAgentSpaces";
126
+ const _LASI = "ListAgentSpacesInput";
127
+ const _LASO = "ListAgentSpacesOutput";
128
+ const _LBT = "ListBacklogTasks";
129
+ const _LBTR = "ListBacklogTasksRequest";
130
+ const _LBTRi = "ListBacklogTasksResponse";
131
+ const _LC = "ListChats";
132
+ const _LCR = "ListChatsRequest";
133
+ const _LCRi = "ListChatsResponse";
134
+ const _LE = "ListExecutions";
135
+ const _LER = "ListExecutionsRequest";
136
+ const _LERi = "ListExecutionsResponse";
137
+ const _LG = "ListGoals";
138
+ const _LGR = "ListGoalsRequest";
139
+ const _LGRi = "ListGoalsResponse";
140
+ const _LJR = "ListJournalRecords";
141
+ const _LJRR = "ListJournalRecordsRequest";
142
+ const _LJRRi = "ListJournalRecordsResponse";
143
+ const _LPC = "ListPrivateConnections";
144
+ const _LPCI = "ListPrivateConnectionsInput";
145
+ const _LPCO = "ListPrivateConnectionsOutput";
146
+ const _LPM = "ListPendingMessages";
147
+ const _LPMR = "ListPendingMessagesRequest";
148
+ const _LPMRi = "ListPendingMessagesResponse";
149
+ const _LR = "ListRecommendations";
150
+ const _LRR = "ListRecommendationsRequest";
151
+ const _LRRi = "ListRecommendationsResponse";
152
+ const _LS = "ListServices";
153
+ const _LSI = "ListServicesInput";
154
+ const _LSO = "ListServicesOutput";
155
+ const _LTFR = "ListTagsForResource";
156
+ const _LTFRR = "ListTagsForResourceRequest";
157
+ const _LTFRRi = "ListTagsForResourceResponse";
158
+ const _LW = "ListWebhooks";
159
+ const _LWI = "ListWebhooksInput";
160
+ const _LWO = "ListWebhooksOutput";
161
+ const _M = "Message";
162
+ const _MCPSAC = "MCPServerAuthorizationConfig";
163
+ const _MCPSADC = "MCPServerAuthorizationDiscoveryConfig";
164
+ const _MCPSAPIKC = "MCPServerAPIKeyConfig";
165
+ const _MCPSBTC = "MCPServerBearerTokenConfig";
166
+ const _MCPSD = "MCPServerDetails";
167
+ const _MCPSGC = "MCPServerGrafanaConfiguration";
168
+ const _MCPSNRC = "MCPServerNewRelicConfiguration";
169
+ const _MCPSOACCC = "MCPServerOAuthClientCredentialsConfig";
170
+ const _MCPSOALOC = "MCPServerOAuth3LOConfig";
171
+ const _MCPSSVAC = "MCPServerSigV4AuthorizationConfig";
172
+ const _MCPSSVSD = "MCPServerSigV4ServiceDetails";
173
+ const _MSTC = "MSTeamsChannel";
174
+ const _MSTCe = "MSTeamsConfiguration";
175
+ const _MSTTT = "MSTeamsTransmissionTarget";
176
+ const _NRAKC = "NewRelicApiKeyConfig";
177
+ const _NRSAC = "NewRelicServiceAuthorizationConfig";
178
+ const _NRSD = "NewRelicServiceDetails";
179
+ const _OAASD = "OAuthAdditionalStepDetails";
180
+ const _PCM = "PrivateConnectionMode";
181
+ const _PCS = "PrivateConnectionSummary";
182
+ const _PCSL = "PrivateConnectionSummaryList";
183
+ const _PDAC = "PagerDutyAuthorizationConfig";
184
+ const _PDC = "PagerDutyConfiguration";
185
+ const _PDD = "PagerDutyDetails";
186
+ const _PDOACCC = "PagerDutyOAuthClientCredentialsConfig";
187
+ const _PM = "PendingMessage";
188
+ const _PMe = "PendingMessages";
189
+ const _R = "Recommendation";
190
+ const _RADOSD = "RegisteredAzureDevOpsServiceDetails";
191
+ const _RAID = "RegisteredAzureIdentityDetails";
192
+ const _RC = "RecommendationContent";
193
+ const _RGLSD = "RegisteredGitLabServiceDetails";
194
+ const _RGSD = "RegisteredGithubServiceDetails";
195
+ const _RGSDe = "RegisteredGrafanaServerDetails";
196
+ const _RI = "ReferenceInput";
197
+ const _RL = "RecommendationList";
198
+ const _RMCPSD = "RegisteredMCPServerDetails";
199
+ const _RMCPSSVD = "RegisteredMCPServerSigV4Details";
200
+ const _RNFE = "ResourceNotFoundException";
201
+ const _RNRD = "RegisteredNewRelicDetails";
202
+ const _RO = "ReferenceOutput";
203
+ const _RPDD = "RegisteredPagerDutyDetails";
204
+ const _RS = "RegisteredService";
205
+ const _RSI = "RegisterServiceInput";
206
+ const _RSL = "RegisteredServicesList";
207
+ const _RSND = "RegisteredServiceNowDetails";
208
+ const _RSO = "RegisterServiceOutput";
209
+ const _RSSD = "RegisteredSlackServiceDetails";
210
+ const _RSe = "RegisterService";
211
+ const _SAC = "SourceAwsConfiguration";
212
+ const _SC = "SlackChannel";
213
+ const _SCe = "ServiceConfiguration";
214
+ const _SCl = "SlackConfiguration";
215
+ const _SD = "ServiceDetails";
216
+ const _SL = "SupportLevel";
217
+ const _SM = "SendMessage";
218
+ const _SMC = "SendMessageContext";
219
+ const _SMCBD = "SendMessageContentBlockDelta";
220
+ const _SMCBDE = "SendMessageContentBlockDeltaEvent";
221
+ const _SMCBSE = "SendMessageContentBlockStartEvent";
222
+ const _SMCBSEe = "SendMessageContentBlockStopEvent";
223
+ const _SME = "SendMessageEvents";
224
+ const _SMHE = "SendMessageHeartbeatEvent";
225
+ const _SMI = "SelfManagedInput";
226
+ const _SMIe = "ServiceManagedInput";
227
+ const _SMJD = "SendMessageJsonDelta";
228
+ const _SMR = "SendMessageRequest";
229
+ const _SMRCE = "SendMessageResponseCompletedEvent";
230
+ const _SMRCEe = "SendMessageResponseCreatedEvent";
231
+ const _SMRFE = "SendMessageResponseFailedEvent";
232
+ const _SMRIPE = "SendMessageResponseInProgressEvent";
233
+ const _SMRe = "SendMessageResponse";
234
+ const _SMSE = "SendMessageSummaryEvent";
235
+ const _SMTD = "SendMessageTextDelta";
236
+ const _SMUI = "SendMessageUsageInfo";
237
+ const _SNC = "ServiceNowConfiguration";
238
+ const _SNOACCC = "ServiceNowOAuthClientCredentialsConfig";
239
+ const _SNSAC = "ServiceNowServiceAuthorizationConfig";
240
+ const _SNSD = "ServiceNowServiceDetails";
241
+ const _SQEE = "ServiceQuotaExceededException";
242
+ const _STT = "SlackTransmissionTarget";
243
+ const _T = "Task";
244
+ const _TE = "ThrottlingException";
245
+ const _TF = "TaskFilter";
246
+ const _TL = "TaskList";
247
+ const _TR = "TagResource";
248
+ const _TRR = "TagResourceRequest";
249
+ const _TRRa = "TagResourceResponse";
250
+ const _TV = "TokenValue";
251
+ const _UA = "UpdateAssociation";
252
+ const _UAI = "UpdateAssociationInput";
253
+ const _UAO = "UpdateAssociationOutput";
254
+ const _UAS = "UpdateAgentSpace";
255
+ const _UASI = "UpdateAgentSpaceInput";
256
+ const _UASO = "UpdateAgentSpaceOutput";
257
+ const _UBT = "UpdateBacklogTask";
258
+ const _UBTR = "UpdateBacklogTaskRequest";
259
+ const _UBTRp = "UpdateBacklogTaskResponse";
260
+ const _UG = "UpdateGoal";
261
+ const _UGR = "UpdateGoalRequest";
262
+ const _UGRp = "UpdateGoalResponse";
263
+ const _UM = "UsageMetric";
264
+ const _UMB = "UserMessageBlock";
265
+ const _UMs = "UserMessage";
266
+ const _UOAIC = "UpdateOperatorAppIdpConfig";
267
+ const _UOAICI = "UpdateOperatorAppIdpConfigInput";
268
+ const _UOAICO = "UpdateOperatorAppIdpConfigOutput";
269
+ const _UPCC = "UpdatePrivateConnectionCertificate";
270
+ const _UPCCI = "UpdatePrivateConnectionCertificateInput";
271
+ const _UPCCO = "UpdatePrivateConnectionCertificateOutput";
272
+ const _UR = "UserReference";
273
+ const _URR = "UntagResourceRequest";
274
+ const _URRn = "UntagResourceResponse";
275
+ const _URRp = "UpdateRecommendationRequest";
276
+ const _URRpd = "UpdateRecommendationResponse";
277
+ const _URn = "UntagResource";
278
+ const _URp = "UpdateRecommendation";
279
+ const _VAA = "ValidateAwsAssociations";
280
+ const _VAAI = "ValidateAwsAssociationsInput";
281
+ const _VAAO = "ValidateAwsAssociationsOutput";
282
+ const _VE = "ValidationException";
283
+ const _VEF = "ValidationExceptionField";
284
+ const _VEFL = "ValidationExceptionFieldList";
285
+ const _W = "Webhook";
286
+ const _WL = "WebhooksList";
287
+ const _WS = "WebhookSecret";
288
+ const _a = "association";
289
+ const _aC = "authorizationConfig";
290
+ const _aCd = "additionalContext";
291
+ const _aD = "authorizationDiscovery";
292
+ const _aF = "authFlow";
293
+ const _aH = "authorizationHeader";
294
+ const _aI = "associationId";
295
+ const _aIc = "accountId";
296
+ const _aIp = "applicationIds";
297
+ const _aK = "apiKey";
298
+ const _aKH = "apiKeyHeader";
299
+ const _aKN = "apiKeyName";
300
+ const _aKV = "apiKeyValue";
301
+ const _aM = "authorizationMethod";
302
+ const _aMs = "assistantMessage";
303
+ const _aPI = "alertPolicyIds";
304
+ const _aR = "accessibleResources";
305
+ const _aRA = "assumableRoleArn";
306
+ const _aS = "agentSpace";
307
+ const _aSA = "agentSpaceArn";
308
+ const _aSD = "additionalServiceDetails";
309
+ const _aSI = "agentSpaceId";
310
+ const _aST = "agentSubTask";
311
+ const _aSc = "activeSubscription";
312
+ const _aSd = "additionalStep";
313
+ const _aSg = "agentSpaces";
314
+ const _aSu = "authScopes";
315
+ const _aT = "accountType";
316
+ const _aTg = "agentType";
317
+ const _aU = "accountUrn";
318
+ const _aUu = "authorizationUrl";
319
+ const _as = "associations";
320
+ const _aw = "aws";
321
+ const _az = "azuredevops";
322
+ const _azu = "azureidentity";
323
+ const _azur = "azure";
324
+ const _bT = "bearerToken";
325
+ const _c = "client";
326
+ const _cA = "createdAt";
327
+ const _cAr = "createdAfter";
328
+ const _cB = "createdBefore";
329
+ const _cBD = "contentBlockDelta";
330
+ const _cBS = "contentBlockStart";
331
+ const _cBSo = "contentBlockStop";
332
+ const _cE = "customerEmail";
333
+ const _cET = "certificateExpiryTime";
334
+ const _cI = "clientId";
335
+ const _cIh = "channelId";
336
+ const _cN = "clientName";
337
+ const _cNh = "channelName";
338
+ const _cP = "currentPage";
339
+ const _cPC = "chatParticipantConnection";
340
+ const _cS = "clientSecret";
341
+ const _cT = "clientToken";
342
+ const _ce = "certificate";
343
+ const _co = "configuration";
344
+ const _cod = "code";
345
+ const _con = "content";
346
+ const _cont = "context";
347
+ const _d = "description";
348
+ const _dSA = "deliverySourceArn";
349
+ const _de = "delta";
350
+ const _dy = "dynatrace";
351
+ const _e = "error";
352
+ const _eC = "errorCode";
353
+ const _eCv = "eventChannel";
354
+ const _eG = "entityGuids";
355
+ const _eI = "executionId";
356
+ const _eIn = "envId";
357
+ const _eIx = "externalId";
358
+ const _eM = "errorMessage";
359
+ const _eP = "exchangeParameters";
360
+ const _eS = "executionStatus";
361
+ const _eSv = "evaluationSchedule";
362
+ const _eU = "exchangeUrl";
363
+ const _en = "endpoint";
364
+ const _ev = "events";
365
+ const _ex = "expression";
366
+ const _exe = "executions";
367
+ const _f = "filter";
368
+ const _fL = "fieldList";
369
+ const _fST = "filterServiceTypes";
370
+ const _fSTi = "filterServiceType";
371
+ const _g = "goals";
372
+ const _gI = "groupId";
373
+ const _gIo = "goalId";
374
+ const _gT = "goalType";
375
+ const _gV = "goalVersion";
376
+ const _gi = "github";
377
+ const _git = "gitlab";
378
+ const _go = "goal";
379
+ const _h = "heartbeat";
380
+ const _hA = "hostAddress";
381
+ const _hE = "httpError";
382
+ const _hH = "httpHeader";
383
+ const _hLT = "hasLinkedTasks";
384
+ const _hQ = "httpQuery";
385
+ const _ht = "http";
386
+ const _i = "iam";
387
+ const _iAA = "idcApplicationArn";
388
+ const _iAPE = "ipv4AddressesPerEni";
389
+ const _iAT = "ipAddressType";
390
+ const _iCI = "initialContactId";
391
+ const _iCId = "idpClientId";
392
+ const _iCS = "idpClientSecret";
393
+ const _iD = "isDisconnected";
394
+ const _iI = "instanceIdentifier";
395
+ const _iIA = "idcInstanceArn";
396
+ const _iIn = "instanceId";
397
+ const _iT = "inputTokens";
398
+ const _iU = "issuerUrl";
399
+ const _iUn = "instanceUrl";
400
+ const _id = "idc";
401
+ const _id_ = "id";
402
+ const _idp = "idp";
403
+ const _in = "index";
404
+ const _jD = "jsonDelta";
405
+ const _kKA = "kmsKeyArn";
406
+ const _l = "locale";
407
+ const _lEA = "lastEvaluatedAt";
408
+ const _lM = "lastMessage";
409
+ const _lSTI = "lastSuccessfulTaskId";
410
+ const _lT = "logType";
411
+ const _lTI = "lastTaskId";
412
+ const _la = "last";
413
+ const _li = "limit";
414
+ const _m = "message";
415
+ const _mAEH = "monthlyAccountEvaluationHours";
416
+ const _mAIH = "monthlyAccountInvestigationHours";
417
+ const _mASLH = "monthlyAccountSystemLearningHours";
418
+ const _mI = "messageId";
419
+ const _mR = "maxResults";
420
+ const _mSL = "mosaicSupportLevel";
421
+ const _mc = "mcpserverdatadog";
422
+ const _mcp = "mcpserver";
423
+ const _mcps = "mcpserversplunk";
424
+ const _mcpse = "mcpservernewrelic";
425
+ const _mcpser = "mcpservergrafana";
426
+ const _mcpserv = "mcpserversigv4";
427
+ const _me = "messages";
428
+ const _met = "metadata";
429
+ const _mo = "mode";
430
+ const _ms = "msteams";
431
+ const _n = "name";
432
+ const _nT = "nextToken";
433
+ const _o = "owner";
434
+ const _oACC = "oAuthClientCredentials";
435
+ const _oALO = "oAuth3LO";
436
+ const _oARA = "operatorAppRoleArn";
437
+ const _oI = "organizationId";
438
+ const _oN = "organizationName";
439
+ const _oOT = "opsOncallTarget";
440
+ const _oSRET = "opsSRETarget";
441
+ const _oT = "ownerType";
442
+ const _oTu = "outputTokens";
443
+ const _oa = "oauth";
444
+ const _ob = "objectives";
445
+ const _or = "order";
446
+ const _p = "priority";
447
+ const _pC = "privateConnections";
448
+ const _pCN = "privateConnectionName";
449
+ const _pEI = "parentExecutionId";
450
+ const _pI = "projectId";
451
+ const _pIa = "participantId";
452
+ const _pIar = "parentId";
453
+ const _pJ = "partialJson";
454
+ const _pN = "projectName";
455
+ const _pP = "projectPath";
456
+ const _pR = "portRanges";
457
+ const _pT = "participantToken";
458
+ const _pTI = "primaryTaskId";
459
+ const _pa = "path";
460
+ const _pag = "pagerduty";
461
+ const _pr = "provider";
462
+ const _r = "reference";
463
+ const _rA = "resourceArn";
464
+ const _rABA = "resourceArnBeingAuthorized";
465
+ const _rAo = "roleArn";
466
+ const _rC = "responseCreated";
467
+ const _rCI = "resourceConfigurationId";
468
+ const _rCe = "responseCompleted";
469
+ const _rF = "responseFailed";
470
+ const _rGI = "resourceGatewayId";
471
+ const _rI = "recommendationId";
472
+ const _rIP = "responseInProgress";
473
+ const _rIe = "repoId";
474
+ const _rIec = "recordId";
475
+ const _rIef = "referenceId";
476
+ const _rIes = "responseId";
477
+ const _rN = "repoName";
478
+ const _rT = "recordType";
479
+ const _rTE = "returnToEndpoint";
480
+ const _rU = "referenceUrl";
481
+ const _rV = "recommendationVersion";
482
+ const _re = "resources";
483
+ const _rea = "reason";
484
+ const _rec = "recommendation";
485
+ const _reco = "records";
486
+ const _recom = "recommendations";
487
+ const _reg = "region";
488
+ const _req = "requester";
489
+ const _s = "smithy.ts.sdk.synthetic.com.amazonaws.devopsagent";
490
+ const _sA = "sourceAws";
491
+ const _sCC = "supportCodeChallenge";
492
+ const _sD = "serviceDetails";
493
+ const _sF = "sortField";
494
+ const _sGI = "securityGroupIds";
495
+ const _sI = "serviceId";
496
+ const _sIu = "subscriptionId";
497
+ const _sIub = "subnetIds";
498
+ const _sL = "supportLevel";
499
+ const _sM = "supportMetadata";
500
+ const _sMe = "serviceManaged";
501
+ const _sMel = "selfManaged";
502
+ const _sN = "sequenceNumber";
503
+ const _sR = "statusReason";
504
+ const _sT = "serviceType";
505
+ const _sc = "scopes";
506
+ const _se = "server";
507
+ const _ser = "service";
508
+ const _serv = "services";
509
+ const _servi = "servicenow";
510
+ const _sl = "slack";
511
+ const _sp = "spec";
512
+ const _st = "status";
513
+ const _sta = "state";
514
+ const _str = "streaming";
515
+ const _su = "summary";
516
+ const _sy = "system";
517
+ const _t = "tags";
518
+ const _tD = "textDelta";
519
+ const _tI = "taskId";
520
+ const _tIe = "teamId";
521
+ const _tIen = "tenantId";
522
+ const _tK = "tagKeys";
523
+ const _tN = "tokenName";
524
+ const _tNe = "teamName";
525
+ const _tR = "toolResult";
526
+ const _tS = "taskStatus";
527
+ const _tT = "taskType";
528
+ const _tTo = "tokenType";
529
+ const _tTot = "totalTokens";
530
+ const _tTr = "transmissionTarget";
531
+ const _tU = "targetUrl";
532
+ const _tUo = "toolUse";
533
+ const _tV = "tokenValue";
534
+ const _ta = "task";
535
+ const _tas = "tasks";
536
+ const _te = "text";
537
+ const _ti = "title";
538
+ const _to = "tools";
539
+ const _ty = "type";
540
+ const _u = "uid";
541
+ const _uA = "updatedAt";
542
+ const _uAR = "userActionResponse";
543
+ const _uEC = "underlyingErrorCode";
544
+ const _uI = "userId";
545
+ const _uM = "userMessage";
546
+ const _uPET = "usagePeriodEndTime";
547
+ const _uPST = "usagePeriodStartTime";
548
+ const _uR = "userReference";
549
+ const _uT = "userType";
550
+ const _us = "usage";
551
+ const _v = "version";
552
+ const _vI = "vpcId";
553
+ const _w = "webhook";
554
+ const _wI = "webhookId";
555
+ const _wIRA = "webIdentityRoleArn";
556
+ const _wITA = "webIdentityTokenAudiences";
557
+ const _wIo = "workspaceId";
558
+ const _wN = "workspaceName";
559
+ const _wS = "webhookSecret";
560
+ const _wT = "webhookType";
561
+ const _wU = "webhookUrl";
562
+ const _we = "webhooks";
563
+ const _xaaaf = "x-amzn-app-auth-flow";
564
+ const n0 = "com.amazonaws.devopsagent";
565
+ import { TypeRegistry } from "@smithy/core/schema";
566
+ import { DevOpsAgentServiceException } from "../models/DevOpsAgentServiceException";
567
+ import { AccessDeniedException, ConflictException, ContentSizeExceededException, IdentityCenterServiceException, InternalServerException, InvalidParameterException, ResourceNotFoundException, ServiceQuotaExceededException, ThrottlingException, ValidationException, } from "../models/errors";
568
+ const _s_registry = TypeRegistry.for(_s);
569
+ export var DevOpsAgentServiceException$ = [-3, _s, "DevOpsAgentServiceException", 0, [], []];
570
+ _s_registry.registerError(DevOpsAgentServiceException$, DevOpsAgentServiceException);
571
+ const n0_registry = TypeRegistry.for(n0);
572
+ export var AccessDeniedException$ = [-3, n0, _ADE,
573
+ { [_e]: _c, [_hE]: 403 },
574
+ [_m],
575
+ [0], 1
576
+ ];
577
+ n0_registry.registerError(AccessDeniedException$, AccessDeniedException);
578
+ export var ConflictException$ = [-3, n0, _CE,
579
+ { [_e]: _c, [_hE]: 409 },
580
+ [_m],
581
+ [0], 1
582
+ ];
583
+ n0_registry.registerError(ConflictException$, ConflictException);
584
+ export var ContentSizeExceededException$ = [-3, n0, _CSEE,
585
+ { [_e]: _c, [_hE]: 413 },
586
+ [_m],
587
+ [0], 1
588
+ ];
589
+ n0_registry.registerError(ContentSizeExceededException$, ContentSizeExceededException);
590
+ export var IdentityCenterServiceException$ = [-3, n0, _ICSE,
591
+ { [_e]: _c, [_hE]: 400 },
592
+ [_m, _uEC],
593
+ [0, 0], 1
594
+ ];
595
+ n0_registry.registerError(IdentityCenterServiceException$, IdentityCenterServiceException);
596
+ export var InternalServerException$ = [-3, n0, _ISE,
597
+ { [_e]: _se, [_hE]: 500 },
598
+ [_m],
599
+ [0], 1
600
+ ];
601
+ n0_registry.registerError(InternalServerException$, InternalServerException);
602
+ export var InvalidParameterException$ = [-3, n0, _IPE,
603
+ { [_e]: _c, [_hE]: 400 },
604
+ [_m],
605
+ [0], 1
606
+ ];
607
+ n0_registry.registerError(InvalidParameterException$, InvalidParameterException);
608
+ export var ResourceNotFoundException$ = [-3, n0, _RNFE,
609
+ { [_e]: _c, [_hE]: 404 },
610
+ [_m],
611
+ [0], 1
612
+ ];
613
+ n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
614
+ export var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
615
+ { [_e]: _c, [_hE]: 402 },
616
+ [_m],
617
+ [0], 1
618
+ ];
619
+ n0_registry.registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
620
+ export var ThrottlingException$ = [-3, n0, _TE,
621
+ { [_e]: _c, [_hE]: 429 },
622
+ [_m],
623
+ [0], 1
624
+ ];
625
+ n0_registry.registerError(ThrottlingException$, ThrottlingException);
626
+ export var ValidationException$ = [-3, n0, _VE,
627
+ { [_e]: _c },
628
+ [_m, _fL],
629
+ [0, () => ValidationExceptionFieldList], 1
630
+ ];
631
+ n0_registry.registerError(ValidationException$, ValidationException);
632
+ export const errorTypeRegistries = [
633
+ _s_registry,
634
+ n0_registry,
635
+ ];
636
+ var ApiKeyValue = [0, n0, _AKV, 8, 0];
637
+ var ClientId = [0, n0, _CI, 8, 0];
638
+ var ClientSecret = [0, n0, _CS, 8, 0];
639
+ var Description = [0, n0, _D, 8, 0];
640
+ var EmailAddress = [0, n0, _EA, 8, 0];
641
+ var ExchangeParameterValue = [0, n0, _EPV, 8, 0];
642
+ var IdpClientSecret = [0, n0, _ICS, 8, 0];
643
+ var TokenValue = [0, n0, _TV, 8, 0];
644
+ var WebhookSecret = [0, n0, _WS, 8, 0];
645
+ export var AgentSpace$ = [3, n0, _AS,
646
+ 0,
647
+ [_n, _cA, _uA, _aSI, _d, _l, _kKA],
648
+ [0, 5, 5, 0, [() => Description, 0], 0, 0], 4
649
+ ];
650
+ export var AllowVendedLogDeliveryForResourceInput$ = [3, n0, _AVLDFRI,
651
+ 0,
652
+ [_rABA, _dSA, _lT],
653
+ [0, 0, 0], 2
654
+ ];
655
+ export var AllowVendedLogDeliveryForResourceOutput$ = [3, n0, _AVLDFRO,
656
+ 0,
657
+ [_m],
658
+ [0]
659
+ ];
660
+ export var AssociateServiceInput$ = [3, n0, _ASI,
661
+ 0,
662
+ [_aSI, _sI, _co],
663
+ [[0, 1], 0, [() => ServiceConfiguration$, 0]], 3
664
+ ];
665
+ export var AssociateServiceOutput$ = [3, n0, _ASO,
666
+ 0,
667
+ [_a, _w],
668
+ [[() => Association$, 0], [() => GenericWebhook$, 0]], 1
669
+ ];
670
+ export var Association$ = [3, n0, _A,
671
+ 0,
672
+ [_aSI, _cA, _uA, _aI, _sI, _co, _st],
673
+ [0, 5, 5, 0, 0, [() => ServiceConfiguration$, 0], 0], 6
674
+ ];
675
+ export var AWSConfiguration$ = [3, n0, _AWSC,
676
+ 0,
677
+ [_aRA, _aIc, _aT],
678
+ [0, 0, 0], 3
679
+ ];
680
+ export var AzureConfiguration$ = [3, n0, _AC,
681
+ 0,
682
+ [_sIu],
683
+ [0], 1
684
+ ];
685
+ export var AzureDevOpsConfiguration$ = [3, n0, _ADOC,
686
+ 0,
687
+ [_oN, _pI, _pN],
688
+ [0, 0, 0], 3
689
+ ];
690
+ export var ChatExecution$ = [3, n0, _CEh,
691
+ 0,
692
+ [_eI, _cA, _uA, _su],
693
+ [0, 4, 4, 0], 2
694
+ ];
695
+ export var ChatParticipantConnection$ = [3, n0, _CPC,
696
+ 0,
697
+ [_iCI, _pIa, _pT],
698
+ [0, 0, 0], 3
699
+ ];
700
+ export var CreateAgentSpaceInput$ = [3, n0, _CASI,
701
+ 0,
702
+ [_n, _d, _l, _kKA, _cT, _t],
703
+ [0, [() => Description, 0], 0, 0, [0, 4], 128 | 0], 1
704
+ ];
705
+ export var CreateAgentSpaceOutput$ = [3, n0, _CASO,
706
+ 0,
707
+ [_aS, _t],
708
+ [[() => AgentSpace$, 0], 128 | 0], 1
709
+ ];
710
+ export var CreateBacklogTaskRequest$ = [3, n0, _CBTR,
711
+ 0,
712
+ [_aSI, _tT, _ti, _p, _r, _d, _cT],
713
+ [[0, 1], 0, 0, 0, () => ReferenceInput$, 0, [0, 4]], 4
714
+ ];
715
+ export var CreateBacklogTaskResponse$ = [3, n0, _CBTRr,
716
+ 0,
717
+ [_ta],
718
+ [() => Task$], 1
719
+ ];
720
+ export var CreateChatRequest$ = [3, n0, _CCR,
721
+ 0,
722
+ [_aSI, _uI, _uT],
723
+ [[0, 1], [0, { [_hQ]: _uI }], [0, { [_hQ]: _uT }]], 2
724
+ ];
725
+ export var CreateChatResponse$ = [3, n0, _CCRr,
726
+ 0,
727
+ [_eI, _cA],
728
+ [0, 4], 2
729
+ ];
730
+ export var CreatePrivateConnectionInput$ = [3, n0, _CPCI,
731
+ 0,
732
+ [_n, _mo, _t],
733
+ [0, () => PrivateConnectionMode$, 128 | 0], 2
734
+ ];
735
+ export var CreatePrivateConnectionOutput$ = [3, n0, _CPCO,
736
+ 0,
737
+ [_n, _ty, _st, _rGI, _hA, _vI, _rCI, _cET, _t],
738
+ [0, 0, 0, 0, 0, 0, 0, 5, 128 | 0], 3
739
+ ];
740
+ export var DatadogServiceDetails$ = [3, n0, _DSD,
741
+ 0,
742
+ [_n, _en, _aC, _d],
743
+ [0, 0, () => DatadogAuthorizationConfig$, [() => Description, 0]], 3
744
+ ];
745
+ export var DeleteAgentSpaceInput$ = [3, n0, _DASI,
746
+ 0,
747
+ [_aSI],
748
+ [[0, 1]], 1
749
+ ];
750
+ export var DeleteAgentSpaceOutput$ = [3, n0, _DASO,
751
+ 0,
752
+ [],
753
+ []
754
+ ];
755
+ export var DeletePrivateConnectionInput$ = [3, n0, _DPCI,
756
+ 0,
757
+ [_n],
758
+ [[0, 1]], 1
759
+ ];
760
+ export var DeletePrivateConnectionOutput$ = [3, n0, _DPCO,
761
+ 0,
762
+ [_n, _st],
763
+ [0, 0], 2
764
+ ];
765
+ export var DeregisterServiceInput$ = [3, n0, _DSI,
766
+ 0,
767
+ [_sI],
768
+ [[0, 1]], 1
769
+ ];
770
+ export var DeregisterServiceOutput$ = [3, n0, _DSO,
771
+ 0,
772
+ [],
773
+ []
774
+ ];
775
+ export var DescribePrivateConnectionInput$ = [3, n0, _DPCIe,
776
+ 0,
777
+ [_n],
778
+ [[0, 1]], 1
779
+ ];
780
+ export var DescribePrivateConnectionOutput$ = [3, n0, _DPCOe,
781
+ 0,
782
+ [_n, _ty, _st, _rGI, _hA, _vI, _rCI, _cET, _t],
783
+ [0, 0, 0, 0, 0, 0, 0, 5, 128 | 0], 3
784
+ ];
785
+ export var DescribeSupportLevelRequest$ = [3, n0, _DSLR,
786
+ 0,
787
+ [_aSI, _tI],
788
+ [[0, 1], [0, 1]], 2
789
+ ];
790
+ export var DescribeSupportLevelResponse$ = [3, n0, _DSLRe,
791
+ 0,
792
+ [_sL, _mSL, _aSc],
793
+ [() => SupportLevel$, () => SupportLevel$, 2], 1
794
+ ];
795
+ export var DisableOperatorAppInput$ = [3, n0, _DOAI,
796
+ 0,
797
+ [_aSI, _aF],
798
+ [[0, 1], [0, { [_hH]: _xaaaf }]], 1
799
+ ];
800
+ export var DisassociateServiceInput$ = [3, n0, _DSIi,
801
+ 0,
802
+ [_aSI, _aI],
803
+ [[0, 1], [0, 1]], 2
804
+ ];
805
+ export var DisassociateServiceOutput$ = [3, n0, _DSOi,
806
+ 0,
807
+ [],
808
+ []
809
+ ];
810
+ export var DynatraceConfiguration$ = [3, n0, _DC,
811
+ 0,
812
+ [_eIn, _re],
813
+ [0, 64 | 0], 1
814
+ ];
815
+ export var DynatraceOAuthClientCredentialsConfig$ = [3, n0, _DOACCC,
816
+ 0,
817
+ [_cI, _cS, _cN, _eP],
818
+ [[() => ClientId, 0], [() => ClientSecret, 0], 0, [() => ExchangeParameters, 0]], 2
819
+ ];
820
+ export var DynatraceServiceDetails$ = [3, n0, _DSDy,
821
+ 0,
822
+ [_aU, _aC],
823
+ [0, [() => DynatraceServiceAuthorizationConfig$, 0]], 1
824
+ ];
825
+ export var EnableOperatorAppInput$ = [3, n0, _EOAI,
826
+ 0,
827
+ [_aSI, _aF, _oARA, _iIA, _iU, _iCId, _iCS, _pr],
828
+ [[0, 1], 0, 0, 0, 0, 0, [() => IdpClientSecret, 0], 0], 3
829
+ ];
830
+ export var EnableOperatorAppOutput$ = [3, n0, _EOAO,
831
+ 0,
832
+ [_aSI, _i, _id, _idp],
833
+ [0, () => IamAuthConfiguration$, () => IdcAuthConfiguration$, () => IdpAuthConfiguration$], 1
834
+ ];
835
+ export var EndChatForCaseRequest$ = [3, n0, _ECFCR,
836
+ 0,
837
+ [_aSI, _tI, _rea, _req, _cT],
838
+ [[0, 1], [0, 1], 0, 0, [0, 4]], 2
839
+ ];
840
+ export var EndChatForCaseResponse$ = [3, n0, _ECFCRn,
841
+ 0,
842
+ [_iD, _eI, _eM],
843
+ [2, 0, 0], 1
844
+ ];
845
+ export var EventChannelConfiguration$ = [3, n0, _ECC,
846
+ 0,
847
+ [],
848
+ []
849
+ ];
850
+ export var EventChannelDetails$ = [3, n0, _ECD,
851
+ 0,
852
+ [_ty],
853
+ [0]
854
+ ];
855
+ export var Execution$ = [3, n0, _E,
856
+ 0,
857
+ [_aSI, _eI, _aST, _cA, _uA, _eS, _pEI, _aTg, _u],
858
+ [0, 0, 0, 4, 4, 0, 0, 0, 0], 6
859
+ ];
860
+ export var GenericWebhook$ = [3, n0, _GW,
861
+ 0,
862
+ [_wU, _wI, _wT, _wS, _aK],
863
+ [0, 0, 0, [() => WebhookSecret, 0], [() => ApiKeyValue, 0]]
864
+ ];
865
+ export var GetAccountUsageInput$ = [3, n0, _GAUI,
866
+ 0,
867
+ [],
868
+ []
869
+ ];
870
+ export var GetAccountUsageOutput$ = [3, n0, _GAUO,
871
+ 0,
872
+ [_uPST, _uPET, _mAIH, _mAEH, _mASLH],
873
+ [5, 5, () => UsageMetric$, () => UsageMetric$, () => UsageMetric$], 2
874
+ ];
875
+ export var GetAgentSpaceInput$ = [3, n0, _GASI,
876
+ 0,
877
+ [_aSI],
878
+ [[0, 1]], 1
879
+ ];
880
+ export var GetAgentSpaceOutput$ = [3, n0, _GASO,
881
+ 0,
882
+ [_aS, _t],
883
+ [[() => AgentSpace$, 0], 128 | 0], 1
884
+ ];
885
+ export var GetAssociationInput$ = [3, n0, _GAI,
886
+ 0,
887
+ [_aSI, _aI],
888
+ [[0, 1], [0, 1]], 2
889
+ ];
890
+ export var GetAssociationOutput$ = [3, n0, _GAO,
891
+ 0,
892
+ [_a],
893
+ [[() => Association$, 0]], 1
894
+ ];
895
+ export var GetBacklogTaskRequest$ = [3, n0, _GBTR,
896
+ 0,
897
+ [_aSI, _tI],
898
+ [[0, 1], [0, 1]], 2
899
+ ];
900
+ export var GetBacklogTaskResponse$ = [3, n0, _GBTRe,
901
+ 0,
902
+ [_ta],
903
+ [() => Task$], 1
904
+ ];
905
+ export var GetOperatorAppInput$ = [3, n0, _GOAI,
906
+ 0,
907
+ [_aSI],
908
+ [[0, 1]], 1
909
+ ];
910
+ export var GetOperatorAppOutput$ = [3, n0, _GOAO,
911
+ 0,
912
+ [_i, _id, _idp],
913
+ [() => IamAuthConfiguration$, () => IdcAuthConfiguration$, () => IdpAuthConfiguration$]
914
+ ];
915
+ export var GetRecommendationRequest$ = [3, n0, _GRR,
916
+ 0,
917
+ [_aSI, _rI, _rV],
918
+ [[0, 1], [0, 1], [1, { [_hQ]: _rV }]], 2
919
+ ];
920
+ export var GetRecommendationResponse$ = [3, n0, _GRRe,
921
+ 0,
922
+ [_rec],
923
+ [() => Recommendation$], 1
924
+ ];
925
+ export var GetServiceInput$ = [3, n0, _GSI,
926
+ 0,
927
+ [_sI],
928
+ [[0, 1]], 1
929
+ ];
930
+ export var GetServiceOutput$ = [3, n0, _GSO,
931
+ 0,
932
+ [_ser, _t],
933
+ [[() => RegisteredService$, 0], 128 | 0], 1
934
+ ];
935
+ export var GitHubConfiguration$ = [3, n0, _GHC,
936
+ 0,
937
+ [_rN, _rIe, _o, _oT, _iI],
938
+ [0, 0, 0, 0, 0], 4
939
+ ];
940
+ export var GitLabConfiguration$ = [3, n0, _GLC,
941
+ 0,
942
+ [_pI, _pP, _iI],
943
+ [0, 0, 0], 2
944
+ ];
945
+ export var GitLabDetails$ = [3, n0, _GLD,
946
+ 0,
947
+ [_tU, _tTo, _tV, _gI],
948
+ [0, 0, [() => TokenValue, 0], 0], 3
949
+ ];
950
+ export var Goal$ = [3, n0, _G,
951
+ 0,
952
+ [_aSA, _gIo, _ti, _con, _st, _gT, _cA, _uA, _v, _lEA, _lTI, _lSTI, _eSv],
953
+ [0, 0, 0, () => GoalContent$, 0, 0, 5, 5, 1, 5, 0, 0, () => GoalSchedule$], 9
954
+ ];
955
+ export var GoalContent$ = [3, n0, _GC,
956
+ 0,
957
+ [_d, _ob],
958
+ [0, 0], 2
959
+ ];
960
+ export var GoalSchedule$ = [3, n0, _GS,
961
+ 0,
962
+ [_sta, _ex],
963
+ [0, 0], 1
964
+ ];
965
+ export var GoalScheduleInput$ = [3, n0, _GSIo,
966
+ 0,
967
+ [_sta],
968
+ [0], 1
969
+ ];
970
+ export var GrafanaServiceDetails$ = [3, n0, _GSD,
971
+ 0,
972
+ [_n, _en, _aC, _d],
973
+ [0, 0, [() => MCPServerAuthorizationConfig$, 0], [() => Description, 0]], 3
974
+ ];
975
+ export var IamAuthConfiguration$ = [3, n0, _IAC,
976
+ 0,
977
+ [_oARA, _cA, _uA],
978
+ [0, 5, 5], 2
979
+ ];
980
+ export var IdcAuthConfiguration$ = [3, n0, _IACd,
981
+ 0,
982
+ [_oARA, _iIA, _cA, _iAA, _uA],
983
+ [0, 0, 5, 0, 5], 3
984
+ ];
985
+ export var IdpAuthConfiguration$ = [3, n0, _IACdp,
986
+ 0,
987
+ [_iU, _cI, _oARA, _pr, _cA, _uA],
988
+ [0, 0, 0, 0, 5, 5], 5
989
+ ];
990
+ export var InitiateChatForCaseRequest$ = [3, n0, _ICFCR,
991
+ 0,
992
+ [_aSI, _tI, _cT],
993
+ [[0, 1], [0, 1], [0, 4]], 2
994
+ ];
995
+ export var InitiateChatForCaseResponse$ = [3, n0, _ICFCRn,
996
+ 0,
997
+ [_cPC],
998
+ [() => ChatParticipantConnection$], 1
999
+ ];
1000
+ export var JournalRecord$ = [3, n0, _JR,
1001
+ 0,
1002
+ [_aSI, _eI, _rIec, _con, _cA, _rT, _uR],
1003
+ [0, 0, 0, 15, 4, 0, () => UserReference$], 6
1004
+ ];
1005
+ export var ListAgentSpacesInput$ = [3, n0, _LASI,
1006
+ 0,
1007
+ [_mR, _nT],
1008
+ [[1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]]
1009
+ ];
1010
+ export var ListAgentSpacesOutput$ = [3, n0, _LASO,
1011
+ 0,
1012
+ [_aSg, _nT],
1013
+ [[() => AgentSpaceList, 0], 0], 1
1014
+ ];
1015
+ export var ListAssociationsInput$ = [3, n0, _LAI,
1016
+ 0,
1017
+ [_aSI, _mR, _nT, _fST],
1018
+ [[0, 1], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }], [0, { [_hQ]: _fST }]], 1
1019
+ ];
1020
+ export var ListAssociationsOutput$ = [3, n0, _LAO,
1021
+ 0,
1022
+ [_as, _nT],
1023
+ [[() => AssociationsList, 0], 0], 1
1024
+ ];
1025
+ export var ListBacklogTasksRequest$ = [3, n0, _LBTR,
1026
+ 0,
1027
+ [_aSI, _f, _li, _nT, _sF, _or],
1028
+ [[0, 1], () => TaskFilter$, 1, 0, 0, 0], 1
1029
+ ];
1030
+ export var ListBacklogTasksResponse$ = [3, n0, _LBTRi,
1031
+ 0,
1032
+ [_tas, _nT],
1033
+ [() => TaskList, 0], 1
1034
+ ];
1035
+ export var ListChatsRequest$ = [3, n0, _LCR,
1036
+ 0,
1037
+ [_aSI, _uI, _mR, _nT],
1038
+ [[0, 1], [0, { [_hQ]: _uI }], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]], 2
1039
+ ];
1040
+ export var ListChatsResponse$ = [3, n0, _LCRi,
1041
+ 0,
1042
+ [_exe, _nT],
1043
+ [() => ChatExecutionList, 0], 1
1044
+ ];
1045
+ export var ListExecutionsRequest$ = [3, n0, _LER,
1046
+ 0,
1047
+ [_aSI, _tI, _li, _nT],
1048
+ [[0, 1], 0, 1, 0], 2
1049
+ ];
1050
+ export var ListExecutionsResponse$ = [3, n0, _LERi,
1051
+ 0,
1052
+ [_exe, _nT],
1053
+ [() => ExecutionList, 0], 1
1054
+ ];
1055
+ export var ListGoalsRequest$ = [3, n0, _LGR,
1056
+ 0,
1057
+ [_aSI, _st, _gT, _li, _nT],
1058
+ [[0, 1], 0, 0, 1, 0], 1
1059
+ ];
1060
+ export var ListGoalsResponse$ = [3, n0, _LGRi,
1061
+ 0,
1062
+ [_g, _nT],
1063
+ [() => GoalList, 0], 1
1064
+ ];
1065
+ export var ListJournalRecordsRequest$ = [3, n0, _LJRR,
1066
+ 0,
1067
+ [_aSI, _eI, _li, _nT, _rT, _or],
1068
+ [[0, 1], 0, 1, 0, 0, 0], 2
1069
+ ];
1070
+ export var ListJournalRecordsResponse$ = [3, n0, _LJRRi,
1071
+ 0,
1072
+ [_reco, _nT],
1073
+ [() => JournalRecordList, 0], 1
1074
+ ];
1075
+ export var ListPendingMessagesRequest$ = [3, n0, _LPMR,
1076
+ 0,
1077
+ [_aSI, _eI],
1078
+ [[0, 1], 0], 2
1079
+ ];
1080
+ export var ListPendingMessagesResponse$ = [3, n0, _LPMRi,
1081
+ 0,
1082
+ [_aSI, _eI, _me, _cA],
1083
+ [0, 0, () => PendingMessages, 4], 4
1084
+ ];
1085
+ export var ListPrivateConnectionsInput$ = [3, n0, _LPCI,
1086
+ 0,
1087
+ [],
1088
+ []
1089
+ ];
1090
+ export var ListPrivateConnectionsOutput$ = [3, n0, _LPCO,
1091
+ 0,
1092
+ [_pC],
1093
+ [() => PrivateConnectionSummaryList], 1
1094
+ ];
1095
+ export var ListRecommendationsRequest$ = [3, n0, _LRR,
1096
+ 0,
1097
+ [_aSI, _tI, _gIo, _st, _p, _li, _nT],
1098
+ [[0, 1], 0, 0, 0, 0, 1, 0], 1
1099
+ ];
1100
+ export var ListRecommendationsResponse$ = [3, n0, _LRRi,
1101
+ 0,
1102
+ [_recom, _nT],
1103
+ [() => RecommendationList, 0], 1
1104
+ ];
1105
+ export var ListServicesInput$ = [3, n0, _LSI,
1106
+ 0,
1107
+ [_mR, _nT, _fSTi],
1108
+ [[1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }], [0, { [_hQ]: _fSTi }]]
1109
+ ];
1110
+ export var ListServicesOutput$ = [3, n0, _LSO,
1111
+ 0,
1112
+ [_serv, _nT],
1113
+ [[() => RegisteredServicesList, 0], 0], 1
1114
+ ];
1115
+ export var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
1116
+ 0,
1117
+ [_rA],
1118
+ [[0, 1]], 1
1119
+ ];
1120
+ export var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
1121
+ 0,
1122
+ [_t],
1123
+ [128 | 0], 1
1124
+ ];
1125
+ export var ListWebhooksInput$ = [3, n0, _LWI,
1126
+ 0,
1127
+ [_aSI, _aI],
1128
+ [[0, 1], [0, 1]], 2
1129
+ ];
1130
+ export var ListWebhooksOutput$ = [3, n0, _LWO,
1131
+ 0,
1132
+ [_we],
1133
+ [() => WebhooksList], 1
1134
+ ];
1135
+ export var MCPServerAPIKeyConfig$ = [3, n0, _MCPSAPIKC,
1136
+ 0,
1137
+ [_aKN, _aKV, _aKH],
1138
+ [0, [() => ApiKeyValue, 0], 0], 3
1139
+ ];
1140
+ export var MCPServerAuthorizationDiscoveryConfig$ = [3, n0, _MCPSADC,
1141
+ 0,
1142
+ [_rTE],
1143
+ [0], 1
1144
+ ];
1145
+ export var MCPServerBearerTokenConfig$ = [3, n0, _MCPSBTC,
1146
+ 0,
1147
+ [_tN, _tV, _aH],
1148
+ [0, [() => TokenValue, 0], 0], 2
1149
+ ];
1150
+ export var MCPServerDetails$ = [3, n0, _MCPSD,
1151
+ 0,
1152
+ [_n, _en, _aC, _d],
1153
+ [0, 0, [() => MCPServerAuthorizationConfig$, 0], [() => Description, 0]], 3
1154
+ ];
1155
+ export var MCPServerGrafanaConfiguration$ = [3, n0, _MCPSGC,
1156
+ 0,
1157
+ [_en, _oI, _to],
1158
+ [0, 0, 64 | 0], 1
1159
+ ];
1160
+ export var MCPServerNewRelicConfiguration$ = [3, n0, _MCPSNRC,
1161
+ 0,
1162
+ [_aIc, _en],
1163
+ [0, 0], 2
1164
+ ];
1165
+ export var MCPServerOAuth3LOConfig$ = [3, n0, _MCPSOALOC,
1166
+ 0,
1167
+ [_cI, _rTE, _aUu, _eU, _cN, _eP, _cS, _sCC, _sc],
1168
+ [[() => ClientId, 0], 0, 0, 0, 0, [() => ExchangeParameters, 0], [() => ClientSecret, 0], 2, 64 | 0], 4
1169
+ ];
1170
+ export var MCPServerOAuthClientCredentialsConfig$ = [3, n0, _MCPSOACCC,
1171
+ 0,
1172
+ [_cI, _cS, _eU, _cN, _eP, _sc],
1173
+ [[() => ClientId, 0], [() => ClientSecret, 0], 0, 0, [() => ExchangeParameters, 0], 64 | 0], 3
1174
+ ];
1175
+ export var MCPServerSigV4AuthorizationConfig$ = [3, n0, _MCPSSVAC,
1176
+ 0,
1177
+ [_reg, _ser, _rAo],
1178
+ [0, 0, 0], 3
1179
+ ];
1180
+ export var MCPServerSigV4ServiceDetails$ = [3, n0, _MCPSSVSD,
1181
+ 0,
1182
+ [_n, _en, _aC, _d],
1183
+ [0, 0, () => MCPServerSigV4AuthorizationConfig$, [() => Description, 0]], 3
1184
+ ];
1185
+ export var MSTeamsChannel$ = [3, n0, _MSTC,
1186
+ 0,
1187
+ [_cNh, _cIh],
1188
+ [0, 0], 2
1189
+ ];
1190
+ export var MSTeamsConfiguration$ = [3, n0, _MSTCe,
1191
+ 0,
1192
+ [_tIe, _tNe, _tTr],
1193
+ [0, 0, () => MSTeamsTransmissionTarget$], 3
1194
+ ];
1195
+ export var MSTeamsTransmissionTarget$ = [3, n0, _MSTTT,
1196
+ 0,
1197
+ [_oOT, _oSRET],
1198
+ [() => MSTeamsChannel$, () => MSTeamsChannel$]
1199
+ ];
1200
+ export var NewRelicApiKeyConfig$ = [3, n0, _NRAKC,
1201
+ 0,
1202
+ [_aK, _aIc, _reg, _aIp, _eG, _aPI],
1203
+ [[() => ApiKeyValue, 0], 0, 0, 64 | 0, 64 | 0, 64 | 0], 3
1204
+ ];
1205
+ export var NewRelicServiceDetails$ = [3, n0, _NRSD,
1206
+ 0,
1207
+ [_aC],
1208
+ [[() => NewRelicServiceAuthorizationConfig$, 0]], 1
1209
+ ];
1210
+ export var OAuthAdditionalStepDetails$ = [3, n0, _OAASD,
1211
+ 0,
1212
+ [_aUu],
1213
+ [0], 1
1214
+ ];
1215
+ export var PagerDutyConfiguration$ = [3, n0, _PDC,
1216
+ 0,
1217
+ [_serv, _cE],
1218
+ [64 | 0, [() => EmailAddress, 0]], 2
1219
+ ];
1220
+ export var PagerDutyDetails$ = [3, n0, _PDD,
1221
+ 0,
1222
+ [_sc, _aC],
1223
+ [64 | 0, [() => PagerDutyAuthorizationConfig$, 0]], 2
1224
+ ];
1225
+ export var PagerDutyOAuthClientCredentialsConfig$ = [3, n0, _PDOACCC,
1226
+ 0,
1227
+ [_cI, _cS, _cN, _eP],
1228
+ [[() => ClientId, 0], [() => ClientSecret, 0], 0, [() => ExchangeParameters, 0]], 2
1229
+ ];
1230
+ export var PendingMessage$ = [3, n0, _PM,
1231
+ 0,
1232
+ [_mI, _m],
1233
+ [0, () => Message$], 2
1234
+ ];
1235
+ export var PrivateConnectionSummary$ = [3, n0, _PCS,
1236
+ 0,
1237
+ [_n, _ty, _st, _rGI, _hA, _vI, _rCI, _cET],
1238
+ [0, 0, 0, 0, 0, 0, 0, 5], 3
1239
+ ];
1240
+ export var Recommendation$ = [3, n0, _R,
1241
+ 0,
1242
+ [_aSA, _rI, _tI, _ti, _con, _st, _p, _cA, _uA, _v, _gIo, _gV, _aCd],
1243
+ [0, 0, 0, 0, () => RecommendationContent$, 0, 0, 5, 5, 1, 0, 1, 0], 10
1244
+ ];
1245
+ export var RecommendationContent$ = [3, n0, _RC,
1246
+ 0,
1247
+ [_su, _sp],
1248
+ [0, 0], 1
1249
+ ];
1250
+ export var ReferenceInput$ = [3, n0, _RI,
1251
+ 0,
1252
+ [_sy, _rIef, _rU, _aI, _ti],
1253
+ [0, 0, 0, 0, 0], 4
1254
+ ];
1255
+ export var ReferenceOutput$ = [3, n0, _RO,
1256
+ 0,
1257
+ [_sy, _rIef, _rU, _aI, _ti],
1258
+ [0, 0, 0, 0, 0], 4
1259
+ ];
1260
+ export var RegisteredAzureDevOpsServiceDetails$ = [3, n0, _RADOSD,
1261
+ 0,
1262
+ [_oN],
1263
+ [0], 1
1264
+ ];
1265
+ export var RegisteredAzureIdentityDetails$ = [3, n0, _RAID,
1266
+ 0,
1267
+ [_tIen, _cI, _wIRA, _wITA],
1268
+ [0, 0, 0, 64 | 0], 4
1269
+ ];
1270
+ export var RegisteredGithubServiceDetails$ = [3, n0, _RGSD,
1271
+ 0,
1272
+ [_o, _oT, _tU],
1273
+ [0, 0, 0], 2
1274
+ ];
1275
+ export var RegisteredGitLabServiceDetails$ = [3, n0, _RGLSD,
1276
+ 0,
1277
+ [_tU, _tTo, _gI],
1278
+ [0, 0, 0], 2
1279
+ ];
1280
+ export var RegisteredGrafanaServerDetails$ = [3, n0, _RGSDe,
1281
+ 0,
1282
+ [_en, _aM],
1283
+ [0, 0], 2
1284
+ ];
1285
+ export var RegisteredMCPServerDetails$ = [3, n0, _RMCPSD,
1286
+ 0,
1287
+ [_n, _en, _aM, _d, _aKH],
1288
+ [0, 0, 0, [() => Description, 0], 0], 3
1289
+ ];
1290
+ export var RegisteredMCPServerSigV4Details$ = [3, n0, _RMCPSSVD,
1291
+ 0,
1292
+ [_n, _en, _reg, _ser, _rAo, _d],
1293
+ [0, 0, 0, 0, 0, [() => Description, 0]], 5
1294
+ ];
1295
+ export var RegisteredNewRelicDetails$ = [3, n0, _RNRD,
1296
+ 0,
1297
+ [_aIc, _reg, _d],
1298
+ [0, 0, [() => Description, 0]], 2
1299
+ ];
1300
+ export var RegisteredPagerDutyDetails$ = [3, n0, _RPDD,
1301
+ 0,
1302
+ [_sc],
1303
+ [64 | 0], 1
1304
+ ];
1305
+ export var RegisteredService$ = [3, n0, _RS,
1306
+ 0,
1307
+ [_sI, _sT, _n, _aR, _aSD, _kKA, _pCN],
1308
+ [0, 0, 0, 64 | 15, [() => AdditionalServiceDetails$, 0], 0, 0], 2
1309
+ ];
1310
+ export var RegisteredServiceNowDetails$ = [3, n0, _RSND,
1311
+ 0,
1312
+ [_iUn],
1313
+ [0]
1314
+ ];
1315
+ export var RegisteredSlackServiceDetails$ = [3, n0, _RSSD,
1316
+ 0,
1317
+ [_tIe, _tNe],
1318
+ [0, 0], 2
1319
+ ];
1320
+ export var RegisterServiceInput$ = [3, n0, _RSI,
1321
+ 0,
1322
+ [_ser, _sD, _kKA, _pCN, _n, _t],
1323
+ [[0, 1], [() => ServiceDetails$, 0], 0, 0, 0, 128 | 0], 2
1324
+ ];
1325
+ export var RegisterServiceOutput$ = [3, n0, _RSO,
1326
+ 0,
1327
+ [_sI, _aSd, _kKA, _t],
1328
+ [0, () => AdditionalServiceRegistrationStep$, 0, 128 | 0]
1329
+ ];
1330
+ export var SelfManagedInput$ = [3, n0, _SMI,
1331
+ 0,
1332
+ [_rCI, _ce],
1333
+ [0, 0], 1
1334
+ ];
1335
+ export var SendMessageContentBlockDeltaEvent$ = [3, n0, _SMCBDE,
1336
+ 0,
1337
+ [_in, _de, _sN],
1338
+ [1, () => SendMessageContentBlockDelta$, 1]
1339
+ ];
1340
+ export var SendMessageContentBlockStartEvent$ = [3, n0, _SMCBSE,
1341
+ 0,
1342
+ [_in, _ty, _id_, _pIar, _sN],
1343
+ [1, 0, 0, 0, 1]
1344
+ ];
1345
+ export var SendMessageContentBlockStopEvent$ = [3, n0, _SMCBSEe,
1346
+ 0,
1347
+ [_in, _ty, _te, _la, _sN],
1348
+ [1, 0, 0, 2, 1]
1349
+ ];
1350
+ export var SendMessageContext$ = [3, n0, _SMC,
1351
+ 0,
1352
+ [_cP, _lM, _uAR],
1353
+ [0, 0, 0]
1354
+ ];
1355
+ export var SendMessageHeartbeatEvent$ = [3, n0, _SMHE,
1356
+ 0,
1357
+ [],
1358
+ []
1359
+ ];
1360
+ export var SendMessageJsonDelta$ = [3, n0, _SMJD,
1361
+ 0,
1362
+ [_pJ],
1363
+ [0]
1364
+ ];
1365
+ export var SendMessageRequest$ = [3, n0, _SMR,
1366
+ 0,
1367
+ [_aSI, _eI, _con, _uI, _cont],
1368
+ [[0, 1], 0, 0, 0, () => SendMessageContext$], 4
1369
+ ];
1370
+ export var SendMessageResponse$ = [3, n0, _SMRe,
1371
+ 0,
1372
+ [_ev],
1373
+ [[() => SendMessageEvents$, 16]], 1
1374
+ ];
1375
+ export var SendMessageResponseCompletedEvent$ = [3, n0, _SMRCE,
1376
+ 0,
1377
+ [_rIes, _us, _sN],
1378
+ [0, () => SendMessageUsageInfo$, 1]
1379
+ ];
1380
+ export var SendMessageResponseCreatedEvent$ = [3, n0, _SMRCEe,
1381
+ 0,
1382
+ [_rIes, _sN],
1383
+ [0, 1]
1384
+ ];
1385
+ export var SendMessageResponseFailedEvent$ = [3, n0, _SMRFE,
1386
+ 0,
1387
+ [_rIes, _eC, _eM, _sN],
1388
+ [0, 0, 0, 1]
1389
+ ];
1390
+ export var SendMessageResponseInProgressEvent$ = [3, n0, _SMRIPE,
1391
+ 0,
1392
+ [_rIes, _sN],
1393
+ [0, 1]
1394
+ ];
1395
+ export var SendMessageSummaryEvent$ = [3, n0, _SMSE,
1396
+ 0,
1397
+ [_con, _sN],
1398
+ [0, 1]
1399
+ ];
1400
+ export var SendMessageTextDelta$ = [3, n0, _SMTD,
1401
+ 0,
1402
+ [_te],
1403
+ [0]
1404
+ ];
1405
+ export var SendMessageUsageInfo$ = [3, n0, _SMUI,
1406
+ 0,
1407
+ [_iT, _oTu, _tTot],
1408
+ [1, 1, 1]
1409
+ ];
1410
+ export var ServiceManagedInput$ = [3, n0, _SMIe,
1411
+ 0,
1412
+ [_hA, _vI, _sIub, _sGI, _iAT, _iAPE, _pR, _ce],
1413
+ [0, 0, 64 | 0, 64 | 0, 0, 1, 64 | 0, 0], 3
1414
+ ];
1415
+ export var ServiceNowConfiguration$ = [3, n0, _SNC,
1416
+ 0,
1417
+ [_iIn, _aSu],
1418
+ [0, 64 | 0]
1419
+ ];
1420
+ export var ServiceNowOAuthClientCredentialsConfig$ = [3, n0, _SNOACCC,
1421
+ 0,
1422
+ [_cI, _cS, _cN, _eP],
1423
+ [[() => ClientId, 0], [() => ClientSecret, 0], 0, [() => ExchangeParameters, 0]], 2
1424
+ ];
1425
+ export var ServiceNowServiceDetails$ = [3, n0, _SNSD,
1426
+ 0,
1427
+ [_iUn, _aC],
1428
+ [0, [() => ServiceNowServiceAuthorizationConfig$, 0]], 1
1429
+ ];
1430
+ export var SlackChannel$ = [3, n0, _SC,
1431
+ 0,
1432
+ [_cIh, _cNh],
1433
+ [0, 0], 1
1434
+ ];
1435
+ export var SlackConfiguration$ = [3, n0, _SCl,
1436
+ 0,
1437
+ [_wIo, _wN, _tTr],
1438
+ [0, 0, () => SlackTransmissionTarget$], 3
1439
+ ];
1440
+ export var SlackTransmissionTarget$ = [3, n0, _STT,
1441
+ 0,
1442
+ [_oOT, _oSRET],
1443
+ [() => SlackChannel$, () => SlackChannel$], 1
1444
+ ];
1445
+ export var SourceAwsConfiguration$ = [3, n0, _SAC,
1446
+ 0,
1447
+ [_aIc, _aT, _aRA, _eIx],
1448
+ [0, 0, 0, 0], 3
1449
+ ];
1450
+ export var SupportLevel$ = [3, n0, _SL,
1451
+ 0,
1452
+ [_cod, _n],
1453
+ [0, 0], 2
1454
+ ];
1455
+ export var TagResourceRequest$ = [3, n0, _TRR,
1456
+ 0,
1457
+ [_rA, _t],
1458
+ [[0, 1], 128 | 0], 2
1459
+ ];
1460
+ export var TagResourceResponse$ = [3, n0, _TRRa,
1461
+ 0,
1462
+ [],
1463
+ []
1464
+ ];
1465
+ export var Task$ = [3, n0, _T,
1466
+ 0,
1467
+ [_aSI, _tI, _ti, _tT, _p, _st, _cA, _uA, _v, _eI, _d, _r, _sM, _met, _pTI, _sR, _hLT],
1468
+ [0, 0, 0, 0, 0, 0, 5, 5, 1, 0, 0, () => ReferenceOutput$, 15, 15, 0, 0, 2], 9
1469
+ ];
1470
+ export var TaskFilter$ = [3, n0, _TF,
1471
+ 0,
1472
+ [_cAr, _cB, _p, _st, _tT, _pTI],
1473
+ [5, 5, 64 | 0, 64 | 0, 64 | 0, 0]
1474
+ ];
1475
+ export var UntagResourceRequest$ = [3, n0, _URR,
1476
+ 0,
1477
+ [_rA, _tK],
1478
+ [[0, 1], [64 | 0, { [_hQ]: _tK }]], 2
1479
+ ];
1480
+ export var UntagResourceResponse$ = [3, n0, _URRn,
1481
+ 0,
1482
+ [],
1483
+ []
1484
+ ];
1485
+ export var UpdateAgentSpaceInput$ = [3, n0, _UASI,
1486
+ 0,
1487
+ [_aSI, _n, _d, _l],
1488
+ [[0, 1], 0, [() => Description, 0], 0], 1
1489
+ ];
1490
+ export var UpdateAgentSpaceOutput$ = [3, n0, _UASO,
1491
+ 0,
1492
+ [_aS],
1493
+ [[() => AgentSpace$, 0]], 1
1494
+ ];
1495
+ export var UpdateAssociationInput$ = [3, n0, _UAI,
1496
+ 0,
1497
+ [_aSI, _aI, _co],
1498
+ [[0, 1], [0, 1], [() => ServiceConfiguration$, 0]], 3
1499
+ ];
1500
+ export var UpdateAssociationOutput$ = [3, n0, _UAO,
1501
+ 0,
1502
+ [_a, _w],
1503
+ [[() => Association$, 0], [() => GenericWebhook$, 0]], 1
1504
+ ];
1505
+ export var UpdateBacklogTaskRequest$ = [3, n0, _UBTR,
1506
+ 0,
1507
+ [_aSI, _tI, _tS, _cT],
1508
+ [[0, 1], [0, 1], 0, [0, 4]], 2
1509
+ ];
1510
+ export var UpdateBacklogTaskResponse$ = [3, n0, _UBTRp,
1511
+ 0,
1512
+ [_ta],
1513
+ [() => Task$], 1
1514
+ ];
1515
+ export var UpdateGoalRequest$ = [3, n0, _UGR,
1516
+ 0,
1517
+ [_aSI, _gIo, _eSv, _cT],
1518
+ [[0, 1], [0, 1], () => GoalScheduleInput$, [0, 4]], 2
1519
+ ];
1520
+ export var UpdateGoalResponse$ = [3, n0, _UGRp,
1521
+ 0,
1522
+ [_go],
1523
+ [() => Goal$], 1
1524
+ ];
1525
+ export var UpdateOperatorAppIdpConfigInput$ = [3, n0, _UOAICI,
1526
+ 0,
1527
+ [_aSI, _iCS],
1528
+ [[0, 1], [() => IdpClientSecret, 0]], 1
1529
+ ];
1530
+ export var UpdateOperatorAppIdpConfigOutput$ = [3, n0, _UOAICO,
1531
+ 0,
1532
+ [_aSI, _idp],
1533
+ [0, () => IdpAuthConfiguration$], 2
1534
+ ];
1535
+ export var UpdatePrivateConnectionCertificateInput$ = [3, n0, _UPCCI,
1536
+ 0,
1537
+ [_n, _ce],
1538
+ [[0, 1], 0], 2
1539
+ ];
1540
+ export var UpdatePrivateConnectionCertificateOutput$ = [3, n0, _UPCCO,
1541
+ 0,
1542
+ [_n, _ty, _st, _rGI, _hA, _vI, _rCI, _cET],
1543
+ [0, 0, 0, 0, 0, 0, 0, 5], 3
1544
+ ];
1545
+ export var UpdateRecommendationRequest$ = [3, n0, _URRp,
1546
+ 0,
1547
+ [_aSI, _rI, _st, _aCd, _cT],
1548
+ [[0, 1], [0, 1], 0, 0, [0, 4]], 2
1549
+ ];
1550
+ export var UpdateRecommendationResponse$ = [3, n0, _URRpd,
1551
+ 0,
1552
+ [_rec],
1553
+ [() => Recommendation$], 1
1554
+ ];
1555
+ export var UsageMetric$ = [3, n0, _UM,
1556
+ 0,
1557
+ [_li, _us],
1558
+ [1, 1], 2
1559
+ ];
1560
+ export var UserReference$ = [3, n0, _UR,
1561
+ 0,
1562
+ [_uI, _uT],
1563
+ [0, 0], 2
1564
+ ];
1565
+ export var ValidateAwsAssociationsInput$ = [3, n0, _VAAI,
1566
+ 0,
1567
+ [_aSI],
1568
+ [[0, 1]], 1
1569
+ ];
1570
+ export var ValidateAwsAssociationsOutput$ = [3, n0, _VAAO,
1571
+ 0,
1572
+ [],
1573
+ []
1574
+ ];
1575
+ export var ValidationExceptionField$ = [3, n0, _VEF,
1576
+ 0,
1577
+ [_pa, _m],
1578
+ [0, 0], 2
1579
+ ];
1580
+ export var Webhook$ = [3, n0, _W,
1581
+ 0,
1582
+ [_wU, _wI, _wT],
1583
+ [0, 0, 0], 2
1584
+ ];
1585
+ var __Unit = "unit";
1586
+ var AgentSpaceList = [1, n0, _ASL,
1587
+ 0, [() => AgentSpace$,
1588
+ 0]
1589
+ ];
1590
+ var AssistantMessage = [1, n0, _AM,
1591
+ 0, () => AssistantMessageBlock$
1592
+ ];
1593
+ var AssociationsList = [1, n0, _AL,
1594
+ 0, [() => Association$,
1595
+ 0]
1596
+ ];
1597
+ var ChatExecutionList = [1, n0, _CEL,
1598
+ 0, () => ChatExecution$
1599
+ ];
1600
+ var DocumentList = 64 | 15;
1601
+ var DynatraceResourceList = 64 | 0;
1602
+ var ExecutionList = [1, n0, _EL,
1603
+ 0, () => Execution$
1604
+ ];
1605
+ var GoalList = [1, n0, _GL,
1606
+ 0, () => Goal$
1607
+ ];
1608
+ var JournalRecordList = [1, n0, _JRL,
1609
+ 0, () => JournalRecord$
1610
+ ];
1611
+ var ListOfSecurityGroupIds = 64 | 0;
1612
+ var ListOfSubnetIds = 64 | 0;
1613
+ var MCPToolsList = 64 | 0;
1614
+ var NewRelicAlertPolicyIds = 64 | 0;
1615
+ var NewRelicApplicationIds = 64 | 0;
1616
+ var NewRelicEntityGuids = 64 | 0;
1617
+ var PagerDutyScopes = 64 | 0;
1618
+ var PagerDutyScopesList = 64 | 0;
1619
+ var PagerDutyServicesList = 64 | 0;
1620
+ var PendingMessages = [1, n0, _PMe,
1621
+ 0, () => PendingMessage$
1622
+ ];
1623
+ var PortRanges = 64 | 0;
1624
+ var PriorityList = 64 | 0;
1625
+ var PrivateConnectionSummaryList = [1, n0, _PCSL,
1626
+ 0, () => PrivateConnectionSummary$
1627
+ ];
1628
+ var RecommendationList = [1, n0, _RL,
1629
+ 0, () => Recommendation$
1630
+ ];
1631
+ var RegisteredServicesList = [1, n0, _RSL,
1632
+ 0, [() => RegisteredService$,
1633
+ 0]
1634
+ ];
1635
+ var Scopes = 64 | 0;
1636
+ var ServiceNowAuthenticationScopeList = 64 | 0;
1637
+ var TagKeyList = 64 | 0;
1638
+ var TaskList = [1, n0, _TL,
1639
+ 0, () => Task$
1640
+ ];
1641
+ var TaskStatusList = 64 | 0;
1642
+ var TaskTypeList = 64 | 0;
1643
+ var UserMessage = [1, n0, _UMs,
1644
+ 0, () => UserMessageBlock$
1645
+ ];
1646
+ var ValidationExceptionFieldList = [1, n0, _VEFL,
1647
+ 0, () => ValidationExceptionField$
1648
+ ];
1649
+ var WebhooksList = [1, n0, _WL,
1650
+ 0, () => Webhook$
1651
+ ];
1652
+ var WebIdentityTokenAudienceList = 64 | 0;
1653
+ var ExchangeParameters = [2, n0, _EP,
1654
+ 0, [0,
1655
+ 0],
1656
+ [() => ExchangeParameterValue,
1657
+ 0]
1658
+ ];
1659
+ var Tags = 128 | 0;
1660
+ export var AdditionalServiceDetails$ = [4, n0, _ASD,
1661
+ 0,
1662
+ [_gi, _sl, _mc, _mcp, _servi, _git, _mcps, _mcpse, _az, _azu, _mcpser, _pag, _mcpserv],
1663
+ [() => RegisteredGithubServiceDetails$, () => RegisteredSlackServiceDetails$, [() => RegisteredMCPServerDetails$, 0], [() => RegisteredMCPServerDetails$, 0], () => RegisteredServiceNowDetails$, () => RegisteredGitLabServiceDetails$, [() => RegisteredMCPServerDetails$, 0], [() => RegisteredNewRelicDetails$, 0], () => RegisteredAzureDevOpsServiceDetails$, () => RegisteredAzureIdentityDetails$, () => RegisteredGrafanaServerDetails$, () => RegisteredPagerDutyDetails$, [() => RegisteredMCPServerSigV4Details$, 0]]
1664
+ ];
1665
+ export var AdditionalServiceRegistrationStep$ = [4, n0, _ASRS,
1666
+ 0,
1667
+ [_oa],
1668
+ [() => OAuthAdditionalStepDetails$]
1669
+ ];
1670
+ export var AssistantMessageBlock$ = [4, n0, _AMB,
1671
+ 0,
1672
+ [_te, _tUo],
1673
+ [0, 15]
1674
+ ];
1675
+ export var DatadogAuthorizationConfig$ = [4, n0, _DAC,
1676
+ 0,
1677
+ [_aD],
1678
+ [() => MCPServerAuthorizationDiscoveryConfig$]
1679
+ ];
1680
+ export var DynatraceServiceAuthorizationConfig$ = [4, n0, _DSAC,
1681
+ 8,
1682
+ [_oACC],
1683
+ [[() => DynatraceOAuthClientCredentialsConfig$, 0]]
1684
+ ];
1685
+ export var MCPServerAuthorizationConfig$ = [4, n0, _MCPSAC,
1686
+ 0,
1687
+ [_oACC, _oALO, _aK, _bT, _aD],
1688
+ [[() => MCPServerOAuthClientCredentialsConfig$, 0], [() => MCPServerOAuth3LOConfig$, 0], [() => MCPServerAPIKeyConfig$, 0], [() => MCPServerBearerTokenConfig$, 0], () => MCPServerAuthorizationDiscoveryConfig$]
1689
+ ];
1690
+ export var Message$ = [4, n0, _M,
1691
+ 0,
1692
+ [_uM, _aMs],
1693
+ [() => UserMessage, () => AssistantMessage]
1694
+ ];
1695
+ export var NewRelicServiceAuthorizationConfig$ = [4, n0, _NRSAC,
1696
+ 0,
1697
+ [_aK],
1698
+ [[() => NewRelicApiKeyConfig$, 0]]
1699
+ ];
1700
+ export var PagerDutyAuthorizationConfig$ = [4, n0, _PDAC,
1701
+ 0,
1702
+ [_oACC],
1703
+ [[() => PagerDutyOAuthClientCredentialsConfig$, 0]]
1704
+ ];
1705
+ export var PrivateConnectionMode$ = [4, n0, _PCM,
1706
+ 0,
1707
+ [_sMe, _sMel],
1708
+ [() => ServiceManagedInput$, () => SelfManagedInput$]
1709
+ ];
1710
+ export var SendMessageContentBlockDelta$ = [4, n0, _SMCBD,
1711
+ 0,
1712
+ [_tD, _jD],
1713
+ [() => SendMessageTextDelta$, () => SendMessageJsonDelta$]
1714
+ ];
1715
+ export var SendMessageEvents$ = [4, n0, _SME,
1716
+ { [_str]: 1 },
1717
+ [_rC, _rIP, _rCe, _rF, _su, _h, _cBS, _cBD, _cBSo],
1718
+ [() => SendMessageResponseCreatedEvent$, () => SendMessageResponseInProgressEvent$, () => SendMessageResponseCompletedEvent$, () => SendMessageResponseFailedEvent$, () => SendMessageSummaryEvent$, () => SendMessageHeartbeatEvent$, () => SendMessageContentBlockStartEvent$, () => SendMessageContentBlockDeltaEvent$, () => SendMessageContentBlockStopEvent$]
1719
+ ];
1720
+ export var ServiceConfiguration$ = [4, n0, _SCe,
1721
+ 0,
1722
+ [_sA, _aw, _gi, _sl, _dy, _servi, _mcpse, _git, _eCv, _azur, _az, _mcpser, _pag, _ms],
1723
+ [() => SourceAwsConfiguration$, () => AWSConfiguration$, () => GitHubConfiguration$, () => SlackConfiguration$, () => DynatraceConfiguration$, () => ServiceNowConfiguration$, () => MCPServerNewRelicConfiguration$, () => GitLabConfiguration$, () => EventChannelConfiguration$, () => AzureConfiguration$, () => AzureDevOpsConfiguration$, () => MCPServerGrafanaConfiguration$, [() => PagerDutyConfiguration$, 0], () => MSTeamsConfiguration$]
1724
+ ];
1725
+ export var ServiceDetails$ = [4, n0, _SD,
1726
+ 0,
1727
+ [_dy, _servi, _mc, _mcp, _git, _mcps, _mcpse, _eCv, _mcpser, _pag, _azu, _mcpserv],
1728
+ [[() => DynatraceServiceDetails$, 0], [() => ServiceNowServiceDetails$, 0], [() => DatadogServiceDetails$, 0], [() => MCPServerDetails$, 0], [() => GitLabDetails$, 0], [() => MCPServerDetails$, 0], [() => NewRelicServiceDetails$, 0], () => EventChannelDetails$, [() => GrafanaServiceDetails$, 0], [() => PagerDutyDetails$, 0], () => RegisteredAzureIdentityDetails$, [() => MCPServerSigV4ServiceDetails$, 0]]
1729
+ ];
1730
+ export var ServiceNowServiceAuthorizationConfig$ = [4, n0, _SNSAC,
1731
+ 0,
1732
+ [_oACC],
1733
+ [[() => ServiceNowOAuthClientCredentialsConfig$, 0]]
1734
+ ];
1735
+ export var UserMessageBlock$ = [4, n0, _UMB,
1736
+ 0,
1737
+ [_te, _tR],
1738
+ [0, 15]
1739
+ ];
1740
+ export var AllowVendedLogDeliveryForResource$ = [9, n0, _AVLDFR,
1741
+ { [_en]: ["cp."], [_ht]: ["POST", "/allow-vended-log-delivery-for-resource", 200] }, () => AllowVendedLogDeliveryForResourceInput$, () => AllowVendedLogDeliveryForResourceOutput$
1742
+ ];
1743
+ export var AssociateService$ = [9, n0, _ASs,
1744
+ { [_en]: ["cp."], [_ht]: ["POST", "/v1/agentspaces/{agentSpaceId}/associations", 201] }, () => AssociateServiceInput$, () => AssociateServiceOutput$
1745
+ ];
1746
+ export var CreateAgentSpace$ = [9, n0, _CAS,
1747
+ { [_en]: ["cp."], [_ht]: ["POST", "/v1/agentspaces", 201] }, () => CreateAgentSpaceInput$, () => CreateAgentSpaceOutput$
1748
+ ];
1749
+ export var CreateBacklogTask$ = [9, n0, _CBT,
1750
+ { [_en]: ["dp."], [_ht]: ["POST", "/backlog/agent-space/{agentSpaceId}/tasks", 201] }, () => CreateBacklogTaskRequest$, () => CreateBacklogTaskResponse$
1751
+ ];
1752
+ export var CreateChat$ = [9, n0, _CC,
1753
+ { [_en]: ["dp."], [_ht]: ["POST", "/agents/agent-space/{agentSpaceId}/chat/create", 200] }, () => CreateChatRequest$, () => CreateChatResponse$
1754
+ ];
1755
+ export var CreatePrivateConnection$ = [9, n0, _CPCr,
1756
+ { [_en]: ["cp."], [_ht]: ["POST", "/v1/private-connections", 200] }, () => CreatePrivateConnectionInput$, () => CreatePrivateConnectionOutput$
1757
+ ];
1758
+ export var DeleteAgentSpace$ = [9, n0, _DAS,
1759
+ { [_en]: ["cp."], [_ht]: ["DELETE", "/v1/agentspaces/{agentSpaceId}", 204] }, () => DeleteAgentSpaceInput$, () => DeleteAgentSpaceOutput$
1760
+ ];
1761
+ export var DeletePrivateConnection$ = [9, n0, _DPC,
1762
+ { [_en]: ["cp."], [_ht]: ["DELETE", "/v1/private-connections/{name}", 200] }, () => DeletePrivateConnectionInput$, () => DeletePrivateConnectionOutput$
1763
+ ];
1764
+ export var DeregisterService$ = [9, n0, _DS,
1765
+ { [_en]: ["cp."], [_ht]: ["DELETE", "/v1/services/{serviceId}", 200] }, () => DeregisterServiceInput$, () => DeregisterServiceOutput$
1766
+ ];
1767
+ export var DescribePrivateConnection$ = [9, n0, _DPCe,
1768
+ { [_en]: ["cp."], [_ht]: ["GET", "/v1/private-connections/{name}", 200] }, () => DescribePrivateConnectionInput$, () => DescribePrivateConnectionOutput$
1769
+ ];
1770
+ export var DescribeSupportLevel$ = [9, n0, _DSL,
1771
+ { [_en]: ["dp."], [_ht]: ["POST", "/support/agent-space/{agentSpaceId}/tasks/{taskId}/supportLevel", 201] }, () => DescribeSupportLevelRequest$, () => DescribeSupportLevelResponse$
1772
+ ];
1773
+ export var DisableOperatorApp$ = [9, n0, _DOA,
1774
+ { [_en]: ["cp."], [_ht]: ["DELETE", "/v1/agentspaces/{agentSpaceId}/operator", 200] }, () => DisableOperatorAppInput$, () => __Unit
1775
+ ];
1776
+ export var DisassociateService$ = [9, n0, _DSi,
1777
+ { [_en]: ["cp."], [_ht]: ["DELETE", "/v1/agentspaces/{agentSpaceId}/associations/{associationId}", 204] }, () => DisassociateServiceInput$, () => DisassociateServiceOutput$
1778
+ ];
1779
+ export var EnableOperatorApp$ = [9, n0, _EOA,
1780
+ { [_en]: ["cp."], [_ht]: ["POST", "/v1/agentspaces/{agentSpaceId}/operator", 200] }, () => EnableOperatorAppInput$, () => EnableOperatorAppOutput$
1781
+ ];
1782
+ export var EndChatForCase$ = [9, n0, _ECFC,
1783
+ { [_en]: ["dp."], [_ht]: ["POST", "/support/agent-space/{agentSpaceId}/tasks/{taskId}/end-chat-for-case", 200] }, () => EndChatForCaseRequest$, () => EndChatForCaseResponse$
1784
+ ];
1785
+ export var GetAccountUsage$ = [9, n0, _GAU,
1786
+ { [_en]: ["dp."], [_ht]: ["GET", "/usage/account", 200] }, () => GetAccountUsageInput$, () => GetAccountUsageOutput$
1787
+ ];
1788
+ export var GetAgentSpace$ = [9, n0, _GAS,
1789
+ { [_en]: ["cp."], [_ht]: ["GET", "/v1/agentspaces/{agentSpaceId}", 200] }, () => GetAgentSpaceInput$, () => GetAgentSpaceOutput$
1790
+ ];
1791
+ export var GetAssociation$ = [9, n0, _GA,
1792
+ { [_en]: ["cp."], [_ht]: ["GET", "/v1/agentspaces/{agentSpaceId}/associations/{associationId}", 200] }, () => GetAssociationInput$, () => GetAssociationOutput$
1793
+ ];
1794
+ export var GetBacklogTask$ = [9, n0, _GBT,
1795
+ { [_en]: ["dp."], [_ht]: ["GET", "/backlog/agent-space/{agentSpaceId}/tasks/{taskId}", 200] }, () => GetBacklogTaskRequest$, () => GetBacklogTaskResponse$
1796
+ ];
1797
+ export var GetOperatorApp$ = [9, n0, _GOA,
1798
+ { [_en]: ["cp."], [_ht]: ["GET", "/v2/agentspaces/{agentSpaceId}/operator", 200] }, () => GetOperatorAppInput$, () => GetOperatorAppOutput$
1799
+ ];
1800
+ export var GetRecommendation$ = [9, n0, _GR,
1801
+ { [_en]: ["dp."], [_ht]: ["GET", "/backlog/agent-space/{agentSpaceId}/recommendations/{recommendationId}", 200] }, () => GetRecommendationRequest$, () => GetRecommendationResponse$
1802
+ ];
1803
+ export var GetService$ = [9, n0, _GSe,
1804
+ { [_en]: ["cp."], [_ht]: ["GET", "/v1/services/{serviceId}", 200] }, () => GetServiceInput$, () => GetServiceOutput$
1805
+ ];
1806
+ export var InitiateChatForCase$ = [9, n0, _ICFC,
1807
+ { [_en]: ["dp."], [_ht]: ["POST", "/support/agent-space/{agentSpaceId}/tasks/{taskId}/chats", 201] }, () => InitiateChatForCaseRequest$, () => InitiateChatForCaseResponse$
1808
+ ];
1809
+ export var ListAgentSpaces$ = [9, n0, _LAS,
1810
+ { [_en]: ["cp."], [_ht]: ["POST", "/v1/agentspaces/list", 200] }, () => ListAgentSpacesInput$, () => ListAgentSpacesOutput$
1811
+ ];
1812
+ export var ListAssociations$ = [9, n0, _LA,
1813
+ { [_en]: ["cp."], [_ht]: ["POST", "/v1/agentspaces/{agentSpaceId}/associations/list", 200] }, () => ListAssociationsInput$, () => ListAssociationsOutput$
1814
+ ];
1815
+ export var ListBacklogTasks$ = [9, n0, _LBT,
1816
+ { [_en]: ["dp."], [_ht]: ["POST", "/backlog/agent-space/{agentSpaceId}/tasks/list", 200] }, () => ListBacklogTasksRequest$, () => ListBacklogTasksResponse$
1817
+ ];
1818
+ export var ListChats$ = [9, n0, _LC,
1819
+ { [_en]: ["dp."], [_ht]: ["GET", "/agents/agent-space/{agentSpaceId}/chat/list", 200] }, () => ListChatsRequest$, () => ListChatsResponse$
1820
+ ];
1821
+ export var ListExecutions$ = [9, n0, _LE,
1822
+ { [_en]: ["dp."], [_ht]: ["POST", "/journal/agent-space/{agentSpaceId}/executions", 200] }, () => ListExecutionsRequest$, () => ListExecutionsResponse$
1823
+ ];
1824
+ export var ListGoals$ = [9, n0, _LG,
1825
+ { [_en]: ["dp."], [_ht]: ["POST", "/backlog/agent-space/{agentSpaceId}/goals/list", 200] }, () => ListGoalsRequest$, () => ListGoalsResponse$
1826
+ ];
1827
+ export var ListJournalRecords$ = [9, n0, _LJR,
1828
+ { [_en]: ["dp."], [_ht]: ["POST", "/journal/agent-space/{agentSpaceId}/journalRecords", 200] }, () => ListJournalRecordsRequest$, () => ListJournalRecordsResponse$
1829
+ ];
1830
+ export var ListPendingMessages$ = [9, n0, _LPM,
1831
+ { [_en]: ["dp."], [_ht]: ["POST", "/agents/agent-space/{agentSpaceId}/pendingMessages", 200] }, () => ListPendingMessagesRequest$, () => ListPendingMessagesResponse$
1832
+ ];
1833
+ export var ListPrivateConnections$ = [9, n0, _LPC,
1834
+ { [_en]: ["cp."], [_ht]: ["GET", "/v1/private-connections", 200] }, () => ListPrivateConnectionsInput$, () => ListPrivateConnectionsOutput$
1835
+ ];
1836
+ export var ListRecommendations$ = [9, n0, _LR,
1837
+ { [_en]: ["dp."], [_ht]: ["POST", "/backlog/agent-space/{agentSpaceId}/recommendations/list", 200] }, () => ListRecommendationsRequest$, () => ListRecommendationsResponse$
1838
+ ];
1839
+ export var ListServices$ = [9, n0, _LS,
1840
+ { [_en]: ["cp."], [_ht]: ["POST", "/v1/services/list", 200] }, () => ListServicesInput$, () => ListServicesOutput$
1841
+ ];
1842
+ export var ListTagsForResource$ = [9, n0, _LTFR,
1843
+ { [_en]: ["cp."], [_ht]: ["GET", "/tags/{resourceArn}", 200] }, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
1844
+ ];
1845
+ export var ListWebhooks$ = [9, n0, _LW,
1846
+ { [_en]: ["cp."], [_ht]: ["POST", "/v1/agentspaces/{agentSpaceId}/associations/{associationId}/webhooks/list", 200] }, () => ListWebhooksInput$, () => ListWebhooksOutput$
1847
+ ];
1848
+ export var RegisterService$ = [9, n0, _RSe,
1849
+ { [_en]: ["cp."], [_ht]: ["POST", "/v1/register/{service}", 201] }, () => RegisterServiceInput$, () => RegisterServiceOutput$
1850
+ ];
1851
+ export var SendMessage$ = [9, n0, _SM,
1852
+ { [_en]: ["dp."], [_ht]: ["POST", "/agents/agent-space/{agentSpaceId}/chat/sendMessage", 200] }, () => SendMessageRequest$, () => SendMessageResponse$
1853
+ ];
1854
+ export var TagResource$ = [9, n0, _TR,
1855
+ { [_en]: ["cp."], [_ht]: ["POST", "/tags/{resourceArn}", 204] }, () => TagResourceRequest$, () => TagResourceResponse$
1856
+ ];
1857
+ export var UntagResource$ = [9, n0, _URn,
1858
+ { [_en]: ["cp."], [_ht]: ["DELETE", "/tags/{resourceArn}", 204] }, () => UntagResourceRequest$, () => UntagResourceResponse$
1859
+ ];
1860
+ export var UpdateAgentSpace$ = [9, n0, _UAS,
1861
+ { [_en]: ["cp."], [_ht]: ["PATCH", "/v1/agentspaces/{agentSpaceId}", 200] }, () => UpdateAgentSpaceInput$, () => UpdateAgentSpaceOutput$
1862
+ ];
1863
+ export var UpdateAssociation$ = [9, n0, _UA,
1864
+ { [_en]: ["cp."], [_ht]: ["PATCH", "/v1/agentspaces/{agentSpaceId}/associations/{associationId}", 200] }, () => UpdateAssociationInput$, () => UpdateAssociationOutput$
1865
+ ];
1866
+ export var UpdateBacklogTask$ = [9, n0, _UBT,
1867
+ { [_en]: ["dp."], [_ht]: ["PATCH", "/backlog/agent-space/{agentSpaceId}/tasks/{taskId}", 200] }, () => UpdateBacklogTaskRequest$, () => UpdateBacklogTaskResponse$
1868
+ ];
1869
+ export var UpdateGoal$ = [9, n0, _UG,
1870
+ { [_en]: ["dp."], [_ht]: ["PATCH", "/backlog/agent-space/{agentSpaceId}/goals/{goalId}", 200] }, () => UpdateGoalRequest$, () => UpdateGoalResponse$
1871
+ ];
1872
+ export var UpdateOperatorAppIdpConfig$ = [9, n0, _UOAIC,
1873
+ { [_ht]: ["PATCH", "/v1/agentspaces/{agentSpaceId}/operator/idp", 200] }, () => UpdateOperatorAppIdpConfigInput$, () => UpdateOperatorAppIdpConfigOutput$
1874
+ ];
1875
+ export var UpdatePrivateConnectionCertificate$ = [9, n0, _UPCC,
1876
+ { [_en]: ["cp."], [_ht]: ["POST", "/v1/private-connections/{name}/certificate", 200] }, () => UpdatePrivateConnectionCertificateInput$, () => UpdatePrivateConnectionCertificateOutput$
1877
+ ];
1878
+ export var UpdateRecommendation$ = [9, n0, _URp,
1879
+ { [_en]: ["dp."], [_ht]: ["PATCH", "/backlog/agent-space/{agentSpaceId}/recommendations/{recommendationId}", 200] }, () => UpdateRecommendationRequest$, () => UpdateRecommendationResponse$
1880
+ ];
1881
+ export var ValidateAwsAssociations$ = [9, n0, _VAA,
1882
+ { [_en]: ["cp."], [_ht]: ["POST", "/v1/agentspaces/{agentSpaceId}/associations/validate", 204] }, () => ValidateAwsAssociationsInput$, () => ValidateAwsAssociationsOutput$
1883
+ ];