@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,8 @@
1
+ import type { PaginationConfiguration } from "@smithy/types";
2
+ import { DevOpsAgentClient } from "../DevOpsAgentClient";
3
+ /**
4
+ * @public
5
+ */
6
+ export interface DevOpsAgentPaginationConfiguration extends PaginationConfiguration {
7
+ client: DevOpsAgentClient;
8
+ }
@@ -0,0 +1,7 @@
1
+ import type { Paginator } from "@smithy/types";
2
+ import { ListAgentSpacesCommandInput, ListAgentSpacesCommandOutput } from "../commands/ListAgentSpacesCommand";
3
+ import type { DevOpsAgentPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListAgentSpaces: (config: DevOpsAgentPaginationConfiguration, input: ListAgentSpacesCommandInput, ...rest: any[]) => Paginator<ListAgentSpacesCommandOutput>;
@@ -0,0 +1,7 @@
1
+ import type { Paginator } from "@smithy/types";
2
+ import { ListAssociationsCommandInput, ListAssociationsCommandOutput } from "../commands/ListAssociationsCommand";
3
+ import type { DevOpsAgentPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListAssociations: (config: DevOpsAgentPaginationConfiguration, input: ListAssociationsCommandInput, ...rest: any[]) => Paginator<ListAssociationsCommandOutput>;
@@ -0,0 +1,7 @@
1
+ import type { Paginator } from "@smithy/types";
2
+ import { ListBacklogTasksCommandInput, ListBacklogTasksCommandOutput } from "../commands/ListBacklogTasksCommand";
3
+ import type { DevOpsAgentPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListBacklogTasks: (config: DevOpsAgentPaginationConfiguration, input: ListBacklogTasksCommandInput, ...rest: any[]) => Paginator<ListBacklogTasksCommandOutput>;
@@ -0,0 +1,7 @@
1
+ import type { Paginator } from "@smithy/types";
2
+ import { ListExecutionsCommandInput, ListExecutionsCommandOutput } from "../commands/ListExecutionsCommand";
3
+ import type { DevOpsAgentPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListExecutions: (config: DevOpsAgentPaginationConfiguration, input: ListExecutionsCommandInput, ...rest: any[]) => Paginator<ListExecutionsCommandOutput>;
@@ -0,0 +1,7 @@
1
+ import type { Paginator } from "@smithy/types";
2
+ import { ListGoalsCommandInput, ListGoalsCommandOutput } from "../commands/ListGoalsCommand";
3
+ import type { DevOpsAgentPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListGoals: (config: DevOpsAgentPaginationConfiguration, input: ListGoalsCommandInput, ...rest: any[]) => Paginator<ListGoalsCommandOutput>;
@@ -0,0 +1,7 @@
1
+ import type { Paginator } from "@smithy/types";
2
+ import { ListJournalRecordsCommandInput, ListJournalRecordsCommandOutput } from "../commands/ListJournalRecordsCommand";
3
+ import type { DevOpsAgentPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListJournalRecords: (config: DevOpsAgentPaginationConfiguration, input: ListJournalRecordsCommandInput, ...rest: any[]) => Paginator<ListJournalRecordsCommandOutput>;
@@ -0,0 +1,7 @@
1
+ import type { Paginator } from "@smithy/types";
2
+ import { ListServicesCommandInput, ListServicesCommandOutput } from "../commands/ListServicesCommand";
3
+ import type { DevOpsAgentPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListServices: (config: DevOpsAgentPaginationConfiguration, input: ListServicesCommandInput, ...rest: any[]) => Paginator<ListServicesCommandOutput>;
@@ -0,0 +1,8 @@
1
+ export * from "./Interfaces";
2
+ export * from "./ListAgentSpacesPaginator";
3
+ export * from "./ListAssociationsPaginator";
4
+ export * from "./ListBacklogTasksPaginator";
5
+ export * from "./ListExecutionsPaginator";
6
+ export * from "./ListGoalsPaginator";
7
+ export * from "./ListJournalRecordsPaginator";
8
+ export * from "./ListServicesPaginator";
@@ -0,0 +1,56 @@
1
+ import { FetchHttpHandler as RequestHandler } from "@smithy/fetch-http-handler";
2
+ import type { DevOpsAgentClientConfig } from "./DevOpsAgentClient";
3
+ /**
4
+ * @internal
5
+ */
6
+ export declare const getRuntimeConfig: (config: DevOpsAgentClientConfig) => {
7
+ runtime: string;
8
+ defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
9
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
10
+ credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
11
+ defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
12
+ eventStreamSerdeProvider: import("@smithy/types").EventStreamSerdeProvider;
13
+ maxAttempts: number | import("@smithy/types").Provider<number>;
14
+ region: string | import("@smithy/types").Provider<any>;
15
+ requestHandler: import("@smithy/protocol-http").HttpHandler<any> | RequestHandler;
16
+ retryMode: string | import("@smithy/types").Provider<string>;
17
+ sha256: import("@smithy/types").HashConstructor;
18
+ streamCollector: import("@smithy/types").StreamCollector;
19
+ useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
20
+ useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
21
+ cacheMiddleware?: boolean | undefined;
22
+ protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
23
+ protocolSettings: {
24
+ defaultNamespace?: string;
25
+ [setting: string]: unknown;
26
+ };
27
+ apiVersion: string;
28
+ urlParser: import("@smithy/types").UrlParser;
29
+ base64Decoder: import("@smithy/types").Decoder;
30
+ base64Encoder: (_input: Uint8Array | string) => string;
31
+ utf8Decoder: import("@smithy/types").Decoder;
32
+ utf8Encoder: (input: Uint8Array | string) => string;
33
+ disableHostPrefix: boolean;
34
+ serviceId: string;
35
+ profile?: string;
36
+ logger: import("@smithy/types").Logger;
37
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
38
+ customUserAgent?: string | import("@smithy/types").UserAgent;
39
+ userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
40
+ retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
41
+ endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
42
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
43
+ logger?: import("@smithy/types").Logger;
44
+ }) => import("@smithy/types").EndpointV2;
45
+ tls?: boolean;
46
+ serviceConfiguredEndpoint?: never;
47
+ authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
48
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
49
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").DevOpsAgentHttpAuthSchemeProvider;
50
+ credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider;
51
+ signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme) => Promise<import("@smithy/types").RequestSigner>);
52
+ signingEscapePath?: boolean;
53
+ systemClockOffset?: number;
54
+ signingRegion?: string;
55
+ signerConstructor?: new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner;
56
+ };
@@ -0,0 +1,56 @@
1
+ import { NodeHttpHandler as RequestHandler } from "@smithy/node-http-handler";
2
+ import type { DevOpsAgentClientConfig } from "./DevOpsAgentClient";
3
+ /**
4
+ * @internal
5
+ */
6
+ export declare const getRuntimeConfig: (config: DevOpsAgentClientConfig) => {
7
+ runtime: string;
8
+ defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
9
+ authSchemePreference: string[] | import("@smithy/types").Provider<string[]>;
10
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
11
+ credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit) => import("@aws-sdk/credential-provider-node/dist-types/runtime/memoize-chain").MemoizedRuntimeConfigAwsCredentialIdentityProvider);
12
+ defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-node").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
13
+ eventStreamSerdeProvider: import("@smithy/types").EventStreamSerdeProvider;
14
+ maxAttempts: number | import("@smithy/types").Provider<number>;
15
+ region: string | import("@smithy/types").Provider<string>;
16
+ requestHandler: RequestHandler | import("@smithy/protocol-http").HttpHandler<any>;
17
+ retryMode: string | import("@smithy/types").Provider<string>;
18
+ sha256: import("@smithy/types").HashConstructor;
19
+ streamCollector: import("@smithy/types").StreamCollector;
20
+ useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
21
+ useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
22
+ userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
23
+ cacheMiddleware?: boolean | undefined;
24
+ protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
25
+ protocolSettings: {
26
+ defaultNamespace?: string;
27
+ [setting: string]: unknown;
28
+ };
29
+ apiVersion: string;
30
+ urlParser: import("@smithy/types").UrlParser;
31
+ base64Decoder: import("@smithy/types").Decoder;
32
+ base64Encoder: (_input: Uint8Array | string) => string;
33
+ utf8Decoder: import("@smithy/types").Decoder;
34
+ utf8Encoder: (input: Uint8Array | string) => string;
35
+ disableHostPrefix: boolean;
36
+ serviceId: string;
37
+ profile?: string;
38
+ logger: import("@smithy/types").Logger;
39
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
40
+ customUserAgent?: string | import("@smithy/types").UserAgent;
41
+ retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
42
+ endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
43
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
44
+ logger?: import("@smithy/types").Logger;
45
+ }) => import("@smithy/types").EndpointV2;
46
+ tls?: boolean;
47
+ serviceConfiguredEndpoint?: never;
48
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
49
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").DevOpsAgentHttpAuthSchemeProvider;
50
+ credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider;
51
+ signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme) => Promise<import("@smithy/types").RequestSigner>);
52
+ signingEscapePath?: boolean;
53
+ systemClockOffset?: number;
54
+ signingRegion?: string;
55
+ signerConstructor?: new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner;
56
+ };
@@ -0,0 +1,55 @@
1
+ import type { DevOpsAgentClientConfig } from "./DevOpsAgentClient";
2
+ /**
3
+ * @internal
4
+ */
5
+ export declare const getRuntimeConfig: (config: DevOpsAgentClientConfig) => {
6
+ runtime: string;
7
+ sha256: import("@smithy/types").HashConstructor;
8
+ requestHandler: import("@smithy/types").NodeHttpHandlerOptions | import("@smithy/types").FetchHttpHandlerOptions | Record<string, unknown> | import("@smithy/protocol-http").HttpHandler<any> | import("@smithy/fetch-http-handler").FetchHttpHandler;
9
+ cacheMiddleware?: boolean;
10
+ protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
11
+ protocolSettings: {
12
+ defaultNamespace?: string;
13
+ [setting: string]: unknown;
14
+ };
15
+ apiVersion: string;
16
+ urlParser: import("@smithy/types").UrlParser;
17
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
18
+ streamCollector: import("@smithy/types").StreamCollector;
19
+ base64Decoder: import("@smithy/types").Decoder;
20
+ base64Encoder: (_input: Uint8Array | string) => string;
21
+ utf8Decoder: import("@smithy/types").Decoder;
22
+ utf8Encoder: (input: Uint8Array | string) => string;
23
+ disableHostPrefix: boolean;
24
+ serviceId: string;
25
+ useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
26
+ useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
27
+ region: string | import("@smithy/types").Provider<any>;
28
+ profile?: string;
29
+ defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
30
+ credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
31
+ maxAttempts: number | import("@smithy/types").Provider<number>;
32
+ retryMode: string | import("@smithy/types").Provider<string>;
33
+ logger: import("@smithy/types").Logger;
34
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
35
+ eventStreamSerdeProvider: import("@smithy/types").EventStreamSerdeProvider;
36
+ defaultsMode: import("@smithy/smithy-client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/smithy-client").DefaultsMode>;
37
+ customUserAgent?: string | import("@smithy/types").UserAgent;
38
+ userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
39
+ retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
40
+ endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
41
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
42
+ logger?: import("@smithy/types").Logger;
43
+ }) => import("@smithy/types").EndpointV2;
44
+ tls?: boolean;
45
+ serviceConfiguredEndpoint?: never;
46
+ authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
47
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
48
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").DevOpsAgentHttpAuthSchemeProvider;
49
+ credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider;
50
+ signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme) => Promise<import("@smithy/types").RequestSigner>);
51
+ signingEscapePath?: boolean;
52
+ systemClockOffset?: number;
53
+ signingRegion?: string;
54
+ signerConstructor?: new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner;
55
+ };
@@ -0,0 +1,27 @@
1
+ import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols";
2
+ import type { DevOpsAgentClientConfig } from "./DevOpsAgentClient";
3
+ /**
4
+ * @internal
5
+ */
6
+ export declare const getRuntimeConfig: (config: DevOpsAgentClientConfig) => {
7
+ apiVersion: string;
8
+ base64Decoder: import("@smithy/types").Decoder;
9
+ base64Encoder: (_input: Uint8Array | string) => string;
10
+ disableHostPrefix: boolean;
11
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
12
+ logger?: import("@smithy/types").Logger;
13
+ }) => import("@smithy/types").EndpointV2;
14
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
15
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").DevOpsAgentHttpAuthSchemeProvider;
16
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
17
+ logger: import("@smithy/types").Logger;
18
+ protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof AwsRestJsonProtocol;
19
+ protocolSettings: {
20
+ [setting: string]: unknown;
21
+ defaultNamespace?: string;
22
+ };
23
+ serviceId: string;
24
+ urlParser: import("@smithy/types").UrlParser;
25
+ utf8Decoder: import("@smithy/types").Decoder;
26
+ utf8Encoder: (input: Uint8Array | string) => string;
27
+ };
@@ -0,0 +1,17 @@
1
+ import type { DevOpsAgentExtensionConfiguration } from "./extensionConfiguration";
2
+ /**
3
+ * @public
4
+ */
5
+ export interface RuntimeExtension {
6
+ configure(extensionConfiguration: DevOpsAgentExtensionConfiguration): void;
7
+ }
8
+ /**
9
+ * @public
10
+ */
11
+ export interface RuntimeExtensionsConfig {
12
+ extensions: RuntimeExtension[];
13
+ }
14
+ /**
15
+ * @internal
16
+ */
17
+ export declare const resolveRuntimeExtensions: (runtimeConfig: any, extensions: RuntimeExtension[]) => any;
@@ -0,0 +1,271 @@
1
+ import { TypeRegistry } from "@smithy/core/schema";
2
+ import type { StaticErrorSchema, StaticOperationSchema, StaticStructureSchema, StaticUnionSchema } from "@smithy/types";
3
+ export declare var DevOpsAgentServiceException$: StaticErrorSchema;
4
+ export declare var AccessDeniedException$: StaticErrorSchema;
5
+ export declare var ConflictException$: StaticErrorSchema;
6
+ export declare var ContentSizeExceededException$: StaticErrorSchema;
7
+ export declare var IdentityCenterServiceException$: StaticErrorSchema;
8
+ export declare var InternalServerException$: StaticErrorSchema;
9
+ export declare var InvalidParameterException$: StaticErrorSchema;
10
+ export declare var ResourceNotFoundException$: StaticErrorSchema;
11
+ export declare var ServiceQuotaExceededException$: StaticErrorSchema;
12
+ export declare var ThrottlingException$: StaticErrorSchema;
13
+ export declare var ValidationException$: StaticErrorSchema;
14
+ /**
15
+ * TypeRegistry instances containing modeled errors.
16
+ * @internal
17
+ *
18
+ */
19
+ export declare const errorTypeRegistries: TypeRegistry[];
20
+ export declare var AgentSpace$: StaticStructureSchema;
21
+ export declare var AllowVendedLogDeliveryForResourceInput$: StaticStructureSchema;
22
+ export declare var AllowVendedLogDeliveryForResourceOutput$: StaticStructureSchema;
23
+ export declare var AssociateServiceInput$: StaticStructureSchema;
24
+ export declare var AssociateServiceOutput$: StaticStructureSchema;
25
+ export declare var Association$: StaticStructureSchema;
26
+ export declare var AWSConfiguration$: StaticStructureSchema;
27
+ export declare var AzureConfiguration$: StaticStructureSchema;
28
+ export declare var AzureDevOpsConfiguration$: StaticStructureSchema;
29
+ export declare var ChatExecution$: StaticStructureSchema;
30
+ export declare var ChatParticipantConnection$: StaticStructureSchema;
31
+ export declare var CreateAgentSpaceInput$: StaticStructureSchema;
32
+ export declare var CreateAgentSpaceOutput$: StaticStructureSchema;
33
+ export declare var CreateBacklogTaskRequest$: StaticStructureSchema;
34
+ export declare var CreateBacklogTaskResponse$: StaticStructureSchema;
35
+ export declare var CreateChatRequest$: StaticStructureSchema;
36
+ export declare var CreateChatResponse$: StaticStructureSchema;
37
+ export declare var CreatePrivateConnectionInput$: StaticStructureSchema;
38
+ export declare var CreatePrivateConnectionOutput$: StaticStructureSchema;
39
+ export declare var DatadogServiceDetails$: StaticStructureSchema;
40
+ export declare var DeleteAgentSpaceInput$: StaticStructureSchema;
41
+ export declare var DeleteAgentSpaceOutput$: StaticStructureSchema;
42
+ export declare var DeletePrivateConnectionInput$: StaticStructureSchema;
43
+ export declare var DeletePrivateConnectionOutput$: StaticStructureSchema;
44
+ export declare var DeregisterServiceInput$: StaticStructureSchema;
45
+ export declare var DeregisterServiceOutput$: StaticStructureSchema;
46
+ export declare var DescribePrivateConnectionInput$: StaticStructureSchema;
47
+ export declare var DescribePrivateConnectionOutput$: StaticStructureSchema;
48
+ export declare var DescribeSupportLevelRequest$: StaticStructureSchema;
49
+ export declare var DescribeSupportLevelResponse$: StaticStructureSchema;
50
+ export declare var DisableOperatorAppInput$: StaticStructureSchema;
51
+ export declare var DisassociateServiceInput$: StaticStructureSchema;
52
+ export declare var DisassociateServiceOutput$: StaticStructureSchema;
53
+ export declare var DynatraceConfiguration$: StaticStructureSchema;
54
+ export declare var DynatraceOAuthClientCredentialsConfig$: StaticStructureSchema;
55
+ export declare var DynatraceServiceDetails$: StaticStructureSchema;
56
+ export declare var EnableOperatorAppInput$: StaticStructureSchema;
57
+ export declare var EnableOperatorAppOutput$: StaticStructureSchema;
58
+ export declare var EndChatForCaseRequest$: StaticStructureSchema;
59
+ export declare var EndChatForCaseResponse$: StaticStructureSchema;
60
+ export declare var EventChannelConfiguration$: StaticStructureSchema;
61
+ export declare var EventChannelDetails$: StaticStructureSchema;
62
+ export declare var Execution$: StaticStructureSchema;
63
+ export declare var GenericWebhook$: StaticStructureSchema;
64
+ export declare var GetAccountUsageInput$: StaticStructureSchema;
65
+ export declare var GetAccountUsageOutput$: StaticStructureSchema;
66
+ export declare var GetAgentSpaceInput$: StaticStructureSchema;
67
+ export declare var GetAgentSpaceOutput$: StaticStructureSchema;
68
+ export declare var GetAssociationInput$: StaticStructureSchema;
69
+ export declare var GetAssociationOutput$: StaticStructureSchema;
70
+ export declare var GetBacklogTaskRequest$: StaticStructureSchema;
71
+ export declare var GetBacklogTaskResponse$: StaticStructureSchema;
72
+ export declare var GetOperatorAppInput$: StaticStructureSchema;
73
+ export declare var GetOperatorAppOutput$: StaticStructureSchema;
74
+ export declare var GetRecommendationRequest$: StaticStructureSchema;
75
+ export declare var GetRecommendationResponse$: StaticStructureSchema;
76
+ export declare var GetServiceInput$: StaticStructureSchema;
77
+ export declare var GetServiceOutput$: StaticStructureSchema;
78
+ export declare var GitHubConfiguration$: StaticStructureSchema;
79
+ export declare var GitLabConfiguration$: StaticStructureSchema;
80
+ export declare var GitLabDetails$: StaticStructureSchema;
81
+ export declare var Goal$: StaticStructureSchema;
82
+ export declare var GoalContent$: StaticStructureSchema;
83
+ export declare var GoalSchedule$: StaticStructureSchema;
84
+ export declare var GoalScheduleInput$: StaticStructureSchema;
85
+ export declare var GrafanaServiceDetails$: StaticStructureSchema;
86
+ export declare var IamAuthConfiguration$: StaticStructureSchema;
87
+ export declare var IdcAuthConfiguration$: StaticStructureSchema;
88
+ export declare var IdpAuthConfiguration$: StaticStructureSchema;
89
+ export declare var InitiateChatForCaseRequest$: StaticStructureSchema;
90
+ export declare var InitiateChatForCaseResponse$: StaticStructureSchema;
91
+ export declare var JournalRecord$: StaticStructureSchema;
92
+ export declare var ListAgentSpacesInput$: StaticStructureSchema;
93
+ export declare var ListAgentSpacesOutput$: StaticStructureSchema;
94
+ export declare var ListAssociationsInput$: StaticStructureSchema;
95
+ export declare var ListAssociationsOutput$: StaticStructureSchema;
96
+ export declare var ListBacklogTasksRequest$: StaticStructureSchema;
97
+ export declare var ListBacklogTasksResponse$: StaticStructureSchema;
98
+ export declare var ListChatsRequest$: StaticStructureSchema;
99
+ export declare var ListChatsResponse$: StaticStructureSchema;
100
+ export declare var ListExecutionsRequest$: StaticStructureSchema;
101
+ export declare var ListExecutionsResponse$: StaticStructureSchema;
102
+ export declare var ListGoalsRequest$: StaticStructureSchema;
103
+ export declare var ListGoalsResponse$: StaticStructureSchema;
104
+ export declare var ListJournalRecordsRequest$: StaticStructureSchema;
105
+ export declare var ListJournalRecordsResponse$: StaticStructureSchema;
106
+ export declare var ListPendingMessagesRequest$: StaticStructureSchema;
107
+ export declare var ListPendingMessagesResponse$: StaticStructureSchema;
108
+ export declare var ListPrivateConnectionsInput$: StaticStructureSchema;
109
+ export declare var ListPrivateConnectionsOutput$: StaticStructureSchema;
110
+ export declare var ListRecommendationsRequest$: StaticStructureSchema;
111
+ export declare var ListRecommendationsResponse$: StaticStructureSchema;
112
+ export declare var ListServicesInput$: StaticStructureSchema;
113
+ export declare var ListServicesOutput$: StaticStructureSchema;
114
+ export declare var ListTagsForResourceRequest$: StaticStructureSchema;
115
+ export declare var ListTagsForResourceResponse$: StaticStructureSchema;
116
+ export declare var ListWebhooksInput$: StaticStructureSchema;
117
+ export declare var ListWebhooksOutput$: StaticStructureSchema;
118
+ export declare var MCPServerAPIKeyConfig$: StaticStructureSchema;
119
+ export declare var MCPServerAuthorizationDiscoveryConfig$: StaticStructureSchema;
120
+ export declare var MCPServerBearerTokenConfig$: StaticStructureSchema;
121
+ export declare var MCPServerDetails$: StaticStructureSchema;
122
+ export declare var MCPServerGrafanaConfiguration$: StaticStructureSchema;
123
+ export declare var MCPServerNewRelicConfiguration$: StaticStructureSchema;
124
+ export declare var MCPServerOAuth3LOConfig$: StaticStructureSchema;
125
+ export declare var MCPServerOAuthClientCredentialsConfig$: StaticStructureSchema;
126
+ export declare var MCPServerSigV4AuthorizationConfig$: StaticStructureSchema;
127
+ export declare var MCPServerSigV4ServiceDetails$: StaticStructureSchema;
128
+ export declare var MSTeamsChannel$: StaticStructureSchema;
129
+ export declare var MSTeamsConfiguration$: StaticStructureSchema;
130
+ export declare var MSTeamsTransmissionTarget$: StaticStructureSchema;
131
+ export declare var NewRelicApiKeyConfig$: StaticStructureSchema;
132
+ export declare var NewRelicServiceDetails$: StaticStructureSchema;
133
+ export declare var OAuthAdditionalStepDetails$: StaticStructureSchema;
134
+ export declare var PagerDutyConfiguration$: StaticStructureSchema;
135
+ export declare var PagerDutyDetails$: StaticStructureSchema;
136
+ export declare var PagerDutyOAuthClientCredentialsConfig$: StaticStructureSchema;
137
+ export declare var PendingMessage$: StaticStructureSchema;
138
+ export declare var PrivateConnectionSummary$: StaticStructureSchema;
139
+ export declare var Recommendation$: StaticStructureSchema;
140
+ export declare var RecommendationContent$: StaticStructureSchema;
141
+ export declare var ReferenceInput$: StaticStructureSchema;
142
+ export declare var ReferenceOutput$: StaticStructureSchema;
143
+ export declare var RegisteredAzureDevOpsServiceDetails$: StaticStructureSchema;
144
+ export declare var RegisteredAzureIdentityDetails$: StaticStructureSchema;
145
+ export declare var RegisteredGithubServiceDetails$: StaticStructureSchema;
146
+ export declare var RegisteredGitLabServiceDetails$: StaticStructureSchema;
147
+ export declare var RegisteredGrafanaServerDetails$: StaticStructureSchema;
148
+ export declare var RegisteredMCPServerDetails$: StaticStructureSchema;
149
+ export declare var RegisteredMCPServerSigV4Details$: StaticStructureSchema;
150
+ export declare var RegisteredNewRelicDetails$: StaticStructureSchema;
151
+ export declare var RegisteredPagerDutyDetails$: StaticStructureSchema;
152
+ export declare var RegisteredService$: StaticStructureSchema;
153
+ export declare var RegisteredServiceNowDetails$: StaticStructureSchema;
154
+ export declare var RegisteredSlackServiceDetails$: StaticStructureSchema;
155
+ export declare var RegisterServiceInput$: StaticStructureSchema;
156
+ export declare var RegisterServiceOutput$: StaticStructureSchema;
157
+ export declare var SelfManagedInput$: StaticStructureSchema;
158
+ export declare var SendMessageContentBlockDeltaEvent$: StaticStructureSchema;
159
+ export declare var SendMessageContentBlockStartEvent$: StaticStructureSchema;
160
+ export declare var SendMessageContentBlockStopEvent$: StaticStructureSchema;
161
+ export declare var SendMessageContext$: StaticStructureSchema;
162
+ export declare var SendMessageHeartbeatEvent$: StaticStructureSchema;
163
+ export declare var SendMessageJsonDelta$: StaticStructureSchema;
164
+ export declare var SendMessageRequest$: StaticStructureSchema;
165
+ export declare var SendMessageResponse$: StaticStructureSchema;
166
+ export declare var SendMessageResponseCompletedEvent$: StaticStructureSchema;
167
+ export declare var SendMessageResponseCreatedEvent$: StaticStructureSchema;
168
+ export declare var SendMessageResponseFailedEvent$: StaticStructureSchema;
169
+ export declare var SendMessageResponseInProgressEvent$: StaticStructureSchema;
170
+ export declare var SendMessageSummaryEvent$: StaticStructureSchema;
171
+ export declare var SendMessageTextDelta$: StaticStructureSchema;
172
+ export declare var SendMessageUsageInfo$: StaticStructureSchema;
173
+ export declare var ServiceManagedInput$: StaticStructureSchema;
174
+ export declare var ServiceNowConfiguration$: StaticStructureSchema;
175
+ export declare var ServiceNowOAuthClientCredentialsConfig$: StaticStructureSchema;
176
+ export declare var ServiceNowServiceDetails$: StaticStructureSchema;
177
+ export declare var SlackChannel$: StaticStructureSchema;
178
+ export declare var SlackConfiguration$: StaticStructureSchema;
179
+ export declare var SlackTransmissionTarget$: StaticStructureSchema;
180
+ export declare var SourceAwsConfiguration$: StaticStructureSchema;
181
+ export declare var SupportLevel$: StaticStructureSchema;
182
+ export declare var TagResourceRequest$: StaticStructureSchema;
183
+ export declare var TagResourceResponse$: StaticStructureSchema;
184
+ export declare var Task$: StaticStructureSchema;
185
+ export declare var TaskFilter$: StaticStructureSchema;
186
+ export declare var UntagResourceRequest$: StaticStructureSchema;
187
+ export declare var UntagResourceResponse$: StaticStructureSchema;
188
+ export declare var UpdateAgentSpaceInput$: StaticStructureSchema;
189
+ export declare var UpdateAgentSpaceOutput$: StaticStructureSchema;
190
+ export declare var UpdateAssociationInput$: StaticStructureSchema;
191
+ export declare var UpdateAssociationOutput$: StaticStructureSchema;
192
+ export declare var UpdateBacklogTaskRequest$: StaticStructureSchema;
193
+ export declare var UpdateBacklogTaskResponse$: StaticStructureSchema;
194
+ export declare var UpdateGoalRequest$: StaticStructureSchema;
195
+ export declare var UpdateGoalResponse$: StaticStructureSchema;
196
+ export declare var UpdateOperatorAppIdpConfigInput$: StaticStructureSchema;
197
+ export declare var UpdateOperatorAppIdpConfigOutput$: StaticStructureSchema;
198
+ export declare var UpdatePrivateConnectionCertificateInput$: StaticStructureSchema;
199
+ export declare var UpdatePrivateConnectionCertificateOutput$: StaticStructureSchema;
200
+ export declare var UpdateRecommendationRequest$: StaticStructureSchema;
201
+ export declare var UpdateRecommendationResponse$: StaticStructureSchema;
202
+ export declare var UsageMetric$: StaticStructureSchema;
203
+ export declare var UserReference$: StaticStructureSchema;
204
+ export declare var ValidateAwsAssociationsInput$: StaticStructureSchema;
205
+ export declare var ValidateAwsAssociationsOutput$: StaticStructureSchema;
206
+ export declare var ValidationExceptionField$: StaticStructureSchema;
207
+ export declare var Webhook$: StaticStructureSchema;
208
+ export declare var AdditionalServiceDetails$: StaticUnionSchema;
209
+ export declare var AdditionalServiceRegistrationStep$: StaticUnionSchema;
210
+ export declare var AssistantMessageBlock$: StaticUnionSchema;
211
+ export declare var DatadogAuthorizationConfig$: StaticUnionSchema;
212
+ export declare var DynatraceServiceAuthorizationConfig$: StaticUnionSchema;
213
+ export declare var MCPServerAuthorizationConfig$: StaticUnionSchema;
214
+ export declare var Message$: StaticUnionSchema;
215
+ export declare var NewRelicServiceAuthorizationConfig$: StaticUnionSchema;
216
+ export declare var PagerDutyAuthorizationConfig$: StaticUnionSchema;
217
+ export declare var PrivateConnectionMode$: StaticUnionSchema;
218
+ export declare var SendMessageContentBlockDelta$: StaticUnionSchema;
219
+ export declare var SendMessageEvents$: StaticUnionSchema;
220
+ export declare var ServiceConfiguration$: StaticUnionSchema;
221
+ export declare var ServiceDetails$: StaticUnionSchema;
222
+ export declare var ServiceNowServiceAuthorizationConfig$: StaticUnionSchema;
223
+ export declare var UserMessageBlock$: StaticUnionSchema;
224
+ export declare var AllowVendedLogDeliveryForResource$: StaticOperationSchema;
225
+ export declare var AssociateService$: StaticOperationSchema;
226
+ export declare var CreateAgentSpace$: StaticOperationSchema;
227
+ export declare var CreateBacklogTask$: StaticOperationSchema;
228
+ export declare var CreateChat$: StaticOperationSchema;
229
+ export declare var CreatePrivateConnection$: StaticOperationSchema;
230
+ export declare var DeleteAgentSpace$: StaticOperationSchema;
231
+ export declare var DeletePrivateConnection$: StaticOperationSchema;
232
+ export declare var DeregisterService$: StaticOperationSchema;
233
+ export declare var DescribePrivateConnection$: StaticOperationSchema;
234
+ export declare var DescribeSupportLevel$: StaticOperationSchema;
235
+ export declare var DisableOperatorApp$: StaticOperationSchema;
236
+ export declare var DisassociateService$: StaticOperationSchema;
237
+ export declare var EnableOperatorApp$: StaticOperationSchema;
238
+ export declare var EndChatForCase$: StaticOperationSchema;
239
+ export declare var GetAccountUsage$: StaticOperationSchema;
240
+ export declare var GetAgentSpace$: StaticOperationSchema;
241
+ export declare var GetAssociation$: StaticOperationSchema;
242
+ export declare var GetBacklogTask$: StaticOperationSchema;
243
+ export declare var GetOperatorApp$: StaticOperationSchema;
244
+ export declare var GetRecommendation$: StaticOperationSchema;
245
+ export declare var GetService$: StaticOperationSchema;
246
+ export declare var InitiateChatForCase$: StaticOperationSchema;
247
+ export declare var ListAgentSpaces$: StaticOperationSchema;
248
+ export declare var ListAssociations$: StaticOperationSchema;
249
+ export declare var ListBacklogTasks$: StaticOperationSchema;
250
+ export declare var ListChats$: StaticOperationSchema;
251
+ export declare var ListExecutions$: StaticOperationSchema;
252
+ export declare var ListGoals$: StaticOperationSchema;
253
+ export declare var ListJournalRecords$: StaticOperationSchema;
254
+ export declare var ListPendingMessages$: StaticOperationSchema;
255
+ export declare var ListPrivateConnections$: StaticOperationSchema;
256
+ export declare var ListRecommendations$: StaticOperationSchema;
257
+ export declare var ListServices$: StaticOperationSchema;
258
+ export declare var ListTagsForResource$: StaticOperationSchema;
259
+ export declare var ListWebhooks$: StaticOperationSchema;
260
+ export declare var RegisterService$: StaticOperationSchema;
261
+ export declare var SendMessage$: StaticOperationSchema;
262
+ export declare var TagResource$: StaticOperationSchema;
263
+ export declare var UntagResource$: StaticOperationSchema;
264
+ export declare var UpdateAgentSpace$: StaticOperationSchema;
265
+ export declare var UpdateAssociation$: StaticOperationSchema;
266
+ export declare var UpdateBacklogTask$: StaticOperationSchema;
267
+ export declare var UpdateGoal$: StaticOperationSchema;
268
+ export declare var UpdateOperatorAppIdpConfig$: StaticOperationSchema;
269
+ export declare var UpdatePrivateConnectionCertificate$: StaticOperationSchema;
270
+ export declare var UpdateRecommendation$: StaticOperationSchema;
271
+ export declare var ValidateAwsAssociations$: StaticOperationSchema;