@aws-sdk/client-codeconnections 3.545.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 (211) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +500 -0
  3. package/dist-cjs/CodeConnections.js +65 -0
  4. package/dist-cjs/CodeConnectionsClient.js +56 -0
  5. package/dist-cjs/auth/httpAuthExtensionConfiguration.js +43 -0
  6. package/dist-cjs/auth/httpAuthSchemeProvider.js +47 -0
  7. package/dist-cjs/commands/CreateConnectionCommand.js +28 -0
  8. package/dist-cjs/commands/CreateHostCommand.js +28 -0
  9. package/dist-cjs/commands/CreateRepositoryLinkCommand.js +28 -0
  10. package/dist-cjs/commands/CreateSyncConfigurationCommand.js +28 -0
  11. package/dist-cjs/commands/DeleteConnectionCommand.js +28 -0
  12. package/dist-cjs/commands/DeleteHostCommand.js +28 -0
  13. package/dist-cjs/commands/DeleteRepositoryLinkCommand.js +28 -0
  14. package/dist-cjs/commands/DeleteSyncConfigurationCommand.js +28 -0
  15. package/dist-cjs/commands/GetConnectionCommand.js +28 -0
  16. package/dist-cjs/commands/GetHostCommand.js +28 -0
  17. package/dist-cjs/commands/GetRepositoryLinkCommand.js +28 -0
  18. package/dist-cjs/commands/GetRepositorySyncStatusCommand.js +28 -0
  19. package/dist-cjs/commands/GetResourceSyncStatusCommand.js +28 -0
  20. package/dist-cjs/commands/GetSyncBlockerSummaryCommand.js +28 -0
  21. package/dist-cjs/commands/GetSyncConfigurationCommand.js +28 -0
  22. package/dist-cjs/commands/ListConnectionsCommand.js +28 -0
  23. package/dist-cjs/commands/ListHostsCommand.js +28 -0
  24. package/dist-cjs/commands/ListRepositoryLinksCommand.js +28 -0
  25. package/dist-cjs/commands/ListRepositorySyncDefinitionsCommand.js +28 -0
  26. package/dist-cjs/commands/ListSyncConfigurationsCommand.js +28 -0
  27. package/dist-cjs/commands/ListTagsForResourceCommand.js +28 -0
  28. package/dist-cjs/commands/TagResourceCommand.js +28 -0
  29. package/dist-cjs/commands/UntagResourceCommand.js +28 -0
  30. package/dist-cjs/commands/UpdateHostCommand.js +28 -0
  31. package/dist-cjs/commands/UpdateRepositoryLinkCommand.js +28 -0
  32. package/dist-cjs/commands/UpdateSyncBlockerCommand.js +28 -0
  33. package/dist-cjs/commands/UpdateSyncConfigurationCommand.js +28 -0
  34. package/dist-cjs/commands/index.js +30 -0
  35. package/dist-cjs/endpoint/EndpointParameters.js +18 -0
  36. package/dist-cjs/endpoint/endpointResolver.js +14 -0
  37. package/dist-cjs/endpoint/ruleset.js +7 -0
  38. package/dist-cjs/extensionConfiguration.js +2 -0
  39. package/dist-cjs/index.js +11 -0
  40. package/dist-cjs/models/CodeConnectionsServiceException.js +12 -0
  41. package/dist-cjs/models/index.js +4 -0
  42. package/dist-cjs/models/models_0.js +285 -0
  43. package/dist-cjs/pagination/Interfaces.js +2 -0
  44. package/dist-cjs/pagination/ListConnectionsPaginator.js +7 -0
  45. package/dist-cjs/pagination/ListHostsPaginator.js +7 -0
  46. package/dist-cjs/pagination/ListRepositoryLinksPaginator.js +7 -0
  47. package/dist-cjs/pagination/ListSyncConfigurationsPaginator.js +7 -0
  48. package/dist-cjs/pagination/index.js +8 -0
  49. package/dist-cjs/protocols/Aws_json1_0.js +928 -0
  50. package/dist-cjs/runtimeConfig.browser.js +39 -0
  51. package/dist-cjs/runtimeConfig.js +49 -0
  52. package/dist-cjs/runtimeConfig.native.js +15 -0
  53. package/dist-cjs/runtimeConfig.shared.js +34 -0
  54. package/dist-cjs/runtimeExtensions.js +25 -0
  55. package/dist-es/CodeConnections.js +61 -0
  56. package/dist-es/CodeConnectionsClient.js +52 -0
  57. package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
  58. package/dist-es/auth/httpAuthSchemeProvider.js +41 -0
  59. package/dist-es/commands/CreateConnectionCommand.js +24 -0
  60. package/dist-es/commands/CreateHostCommand.js +24 -0
  61. package/dist-es/commands/CreateRepositoryLinkCommand.js +24 -0
  62. package/dist-es/commands/CreateSyncConfigurationCommand.js +24 -0
  63. package/dist-es/commands/DeleteConnectionCommand.js +24 -0
  64. package/dist-es/commands/DeleteHostCommand.js +24 -0
  65. package/dist-es/commands/DeleteRepositoryLinkCommand.js +24 -0
  66. package/dist-es/commands/DeleteSyncConfigurationCommand.js +24 -0
  67. package/dist-es/commands/GetConnectionCommand.js +24 -0
  68. package/dist-es/commands/GetHostCommand.js +24 -0
  69. package/dist-es/commands/GetRepositoryLinkCommand.js +24 -0
  70. package/dist-es/commands/GetRepositorySyncStatusCommand.js +24 -0
  71. package/dist-es/commands/GetResourceSyncStatusCommand.js +24 -0
  72. package/dist-es/commands/GetSyncBlockerSummaryCommand.js +24 -0
  73. package/dist-es/commands/GetSyncConfigurationCommand.js +24 -0
  74. package/dist-es/commands/ListConnectionsCommand.js +24 -0
  75. package/dist-es/commands/ListHostsCommand.js +24 -0
  76. package/dist-es/commands/ListRepositoryLinksCommand.js +24 -0
  77. package/dist-es/commands/ListRepositorySyncDefinitionsCommand.js +24 -0
  78. package/dist-es/commands/ListSyncConfigurationsCommand.js +24 -0
  79. package/dist-es/commands/ListTagsForResourceCommand.js +24 -0
  80. package/dist-es/commands/TagResourceCommand.js +24 -0
  81. package/dist-es/commands/UntagResourceCommand.js +24 -0
  82. package/dist-es/commands/UpdateHostCommand.js +24 -0
  83. package/dist-es/commands/UpdateRepositoryLinkCommand.js +24 -0
  84. package/dist-es/commands/UpdateSyncBlockerCommand.js +24 -0
  85. package/dist-es/commands/UpdateSyncConfigurationCommand.js +24 -0
  86. package/dist-es/commands/index.js +27 -0
  87. package/dist-es/endpoint/EndpointParameters.js +14 -0
  88. package/dist-es/endpoint/endpointResolver.js +10 -0
  89. package/dist-es/endpoint/ruleset.js +4 -0
  90. package/dist-es/extensionConfiguration.js +1 -0
  91. package/dist-es/index.js +6 -0
  92. package/dist-es/models/CodeConnectionsServiceException.js +8 -0
  93. package/dist-es/models/index.js +1 -0
  94. package/dist-es/models/models_0.js +265 -0
  95. package/dist-es/pagination/Interfaces.js +1 -0
  96. package/dist-es/pagination/ListConnectionsPaginator.js +4 -0
  97. package/dist-es/pagination/ListHostsPaginator.js +4 -0
  98. package/dist-es/pagination/ListRepositoryLinksPaginator.js +4 -0
  99. package/dist-es/pagination/ListSyncConfigurationsPaginator.js +4 -0
  100. package/dist-es/pagination/index.js +5 -0
  101. package/dist-es/protocols/Aws_json1_0.js +870 -0
  102. package/dist-es/runtimeConfig.browser.js +34 -0
  103. package/dist-es/runtimeConfig.js +44 -0
  104. package/dist-es/runtimeConfig.native.js +11 -0
  105. package/dist-es/runtimeConfig.shared.js +30 -0
  106. package/dist-es/runtimeExtensions.js +21 -0
  107. package/dist-types/CodeConnections.d.ts +280 -0
  108. package/dist-types/CodeConnectionsClient.d.ts +276 -0
  109. package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
  110. package/dist-types/auth/httpAuthSchemeProvider.d.ts +61 -0
  111. package/dist-types/commands/CreateConnectionCommand.d.ts +84 -0
  112. package/dist-types/commands/CreateHostCommand.d.ts +93 -0
  113. package/dist-types/commands/CreateRepositoryLinkCommand.d.ts +97 -0
  114. package/dist-types/commands/CreateSyncConfigurationCommand.d.ts +101 -0
  115. package/dist-types/commands/DeleteConnectionCommand.d.ts +60 -0
  116. package/dist-types/commands/DeleteHostCommand.d.ts +66 -0
  117. package/dist-types/commands/DeleteRepositoryLinkCommand.d.ts +81 -0
  118. package/dist-types/commands/DeleteSyncConfigurationCommand.d.ts +76 -0
  119. package/dist-types/commands/GetConnectionCommand.d.ts +72 -0
  120. package/dist-types/commands/GetHostCommand.d.ts +79 -0
  121. package/dist-types/commands/GetRepositoryLinkCommand.d.ts +86 -0
  122. package/dist-types/commands/GetRepositorySyncStatusCommand.d.ts +88 -0
  123. package/dist-types/commands/GetResourceSyncStatusCommand.d.ts +141 -0
  124. package/dist-types/commands/GetSyncBlockerSummaryCommand.d.ts +95 -0
  125. package/dist-types/commands/GetSyncConfigurationCommand.d.ts +87 -0
  126. package/dist-types/commands/ListConnectionsCommand.d.ts +75 -0
  127. package/dist-types/commands/ListHostsCommand.d.ts +80 -0
  128. package/dist-types/commands/ListRepositoryLinksCommand.d.ts +89 -0
  129. package/dist-types/commands/ListRepositorySyncDefinitionsCommand.d.ts +83 -0
  130. package/dist-types/commands/ListSyncConfigurationsCommand.d.ts +92 -0
  131. package/dist-types/commands/ListTagsForResourceCommand.d.ts +67 -0
  132. package/dist-types/commands/TagResourceCommand.d.ts +70 -0
  133. package/dist-types/commands/UntagResourceCommand.d.ts +63 -0
  134. package/dist-types/commands/UpdateHostCommand.d.ts +80 -0
  135. package/dist-types/commands/UpdateRepositoryLinkCommand.d.ts +92 -0
  136. package/dist-types/commands/UpdateSyncBlockerCommand.d.ts +99 -0
  137. package/dist-types/commands/UpdateSyncConfigurationCommand.d.ts +99 -0
  138. package/dist-types/commands/index.d.ts +27 -0
  139. package/dist-types/endpoint/EndpointParameters.d.ts +40 -0
  140. package/dist-types/endpoint/endpointResolver.d.ts +5 -0
  141. package/dist-types/endpoint/ruleset.d.ts +2 -0
  142. package/dist-types/extensionConfiguration.d.ts +9 -0
  143. package/dist-types/index.d.ts +92 -0
  144. package/dist-types/models/CodeConnectionsServiceException.d.ts +13 -0
  145. package/dist-types/models/index.d.ts +1 -0
  146. package/dist-types/models/models_0.d.ts +1735 -0
  147. package/dist-types/pagination/Interfaces.d.ts +8 -0
  148. package/dist-types/pagination/ListConnectionsPaginator.d.ts +7 -0
  149. package/dist-types/pagination/ListHostsPaginator.d.ts +7 -0
  150. package/dist-types/pagination/ListRepositoryLinksPaginator.d.ts +7 -0
  151. package/dist-types/pagination/ListSyncConfigurationsPaginator.d.ts +7 -0
  152. package/dist-types/pagination/index.d.ts +5 -0
  153. package/dist-types/protocols/Aws_json1_0.d.ts +245 -0
  154. package/dist-types/runtimeConfig.browser.d.ts +45 -0
  155. package/dist-types/runtimeConfig.d.ts +45 -0
  156. package/dist-types/runtimeConfig.native.d.ts +44 -0
  157. package/dist-types/runtimeConfig.shared.d.ts +21 -0
  158. package/dist-types/runtimeExtensions.d.ts +17 -0
  159. package/dist-types/ts3.4/CodeConnections.d.ts +469 -0
  160. package/dist-types/ts3.4/CodeConnectionsClient.d.ts +283 -0
  161. package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
  162. package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +44 -0
  163. package/dist-types/ts3.4/commands/CreateConnectionCommand.d.ts +38 -0
  164. package/dist-types/ts3.4/commands/CreateHostCommand.d.ts +35 -0
  165. package/dist-types/ts3.4/commands/CreateRepositoryLinkCommand.d.ts +39 -0
  166. package/dist-types/ts3.4/commands/CreateSyncConfigurationCommand.d.ts +39 -0
  167. package/dist-types/ts3.4/commands/DeleteConnectionCommand.d.ts +38 -0
  168. package/dist-types/ts3.4/commands/DeleteHostCommand.d.ts +35 -0
  169. package/dist-types/ts3.4/commands/DeleteRepositoryLinkCommand.d.ts +39 -0
  170. package/dist-types/ts3.4/commands/DeleteSyncConfigurationCommand.d.ts +39 -0
  171. package/dist-types/ts3.4/commands/GetConnectionCommand.d.ts +35 -0
  172. package/dist-types/ts3.4/commands/GetHostCommand.d.ts +29 -0
  173. package/dist-types/ts3.4/commands/GetRepositoryLinkCommand.d.ts +38 -0
  174. package/dist-types/ts3.4/commands/GetRepositorySyncStatusCommand.d.ts +39 -0
  175. package/dist-types/ts3.4/commands/GetResourceSyncStatusCommand.d.ts +39 -0
  176. package/dist-types/ts3.4/commands/GetSyncBlockerSummaryCommand.d.ts +39 -0
  177. package/dist-types/ts3.4/commands/GetSyncConfigurationCommand.d.ts +39 -0
  178. package/dist-types/ts3.4/commands/ListConnectionsCommand.d.ts +38 -0
  179. package/dist-types/ts3.4/commands/ListHostsCommand.d.ts +35 -0
  180. package/dist-types/ts3.4/commands/ListRepositoryLinksCommand.d.ts +39 -0
  181. package/dist-types/ts3.4/commands/ListRepositorySyncDefinitionsCommand.d.ts +39 -0
  182. package/dist-types/ts3.4/commands/ListSyncConfigurationsCommand.d.ts +39 -0
  183. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +39 -0
  184. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +35 -0
  185. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +35 -0
  186. package/dist-types/ts3.4/commands/UpdateHostCommand.d.ts +35 -0
  187. package/dist-types/ts3.4/commands/UpdateRepositoryLinkCommand.d.ts +39 -0
  188. package/dist-types/ts3.4/commands/UpdateSyncBlockerCommand.d.ts +38 -0
  189. package/dist-types/ts3.4/commands/UpdateSyncConfigurationCommand.d.ts +39 -0
  190. package/dist-types/ts3.4/commands/index.d.ts +27 -0
  191. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +51 -0
  192. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
  193. package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
  194. package/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
  195. package/dist-types/ts3.4/index.d.ts +9 -0
  196. package/dist-types/ts3.4/models/CodeConnectionsServiceException.d.ts +8 -0
  197. package/dist-types/ts3.4/models/index.d.ts +1 -0
  198. package/dist-types/ts3.4/models/models_0.d.ts +531 -0
  199. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  200. package/dist-types/ts3.4/pagination/ListConnectionsPaginator.d.ts +11 -0
  201. package/dist-types/ts3.4/pagination/ListHostsPaginator.d.ts +11 -0
  202. package/dist-types/ts3.4/pagination/ListRepositoryLinksPaginator.d.ts +11 -0
  203. package/dist-types/ts3.4/pagination/ListSyncConfigurationsPaginator.d.ts +11 -0
  204. package/dist-types/ts3.4/pagination/index.d.ts +5 -0
  205. package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +329 -0
  206. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +87 -0
  207. package/dist-types/ts3.4/runtimeConfig.d.ts +91 -0
  208. package/dist-types/ts3.4/runtimeConfig.native.d.ts +81 -0
  209. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +23 -0
  210. package/dist-types/ts3.4/runtimeExtensions.d.ts +13 -0
  211. package/package.json +101 -0
@@ -0,0 +1,329 @@
1
+ import {
2
+ HttpRequest as __HttpRequest,
3
+ HttpResponse as __HttpResponse,
4
+ } from "@smithy/protocol-http";
5
+ import { SerdeContext as __SerdeContext } from "@smithy/types";
6
+ import {
7
+ CreateConnectionCommandInput,
8
+ CreateConnectionCommandOutput,
9
+ } from "../commands/CreateConnectionCommand";
10
+ import {
11
+ CreateHostCommandInput,
12
+ CreateHostCommandOutput,
13
+ } from "../commands/CreateHostCommand";
14
+ import {
15
+ CreateRepositoryLinkCommandInput,
16
+ CreateRepositoryLinkCommandOutput,
17
+ } from "../commands/CreateRepositoryLinkCommand";
18
+ import {
19
+ CreateSyncConfigurationCommandInput,
20
+ CreateSyncConfigurationCommandOutput,
21
+ } from "../commands/CreateSyncConfigurationCommand";
22
+ import {
23
+ DeleteConnectionCommandInput,
24
+ DeleteConnectionCommandOutput,
25
+ } from "../commands/DeleteConnectionCommand";
26
+ import {
27
+ DeleteHostCommandInput,
28
+ DeleteHostCommandOutput,
29
+ } from "../commands/DeleteHostCommand";
30
+ import {
31
+ DeleteRepositoryLinkCommandInput,
32
+ DeleteRepositoryLinkCommandOutput,
33
+ } from "../commands/DeleteRepositoryLinkCommand";
34
+ import {
35
+ DeleteSyncConfigurationCommandInput,
36
+ DeleteSyncConfigurationCommandOutput,
37
+ } from "../commands/DeleteSyncConfigurationCommand";
38
+ import {
39
+ GetConnectionCommandInput,
40
+ GetConnectionCommandOutput,
41
+ } from "../commands/GetConnectionCommand";
42
+ import {
43
+ GetHostCommandInput,
44
+ GetHostCommandOutput,
45
+ } from "../commands/GetHostCommand";
46
+ import {
47
+ GetRepositoryLinkCommandInput,
48
+ GetRepositoryLinkCommandOutput,
49
+ } from "../commands/GetRepositoryLinkCommand";
50
+ import {
51
+ GetRepositorySyncStatusCommandInput,
52
+ GetRepositorySyncStatusCommandOutput,
53
+ } from "../commands/GetRepositorySyncStatusCommand";
54
+ import {
55
+ GetResourceSyncStatusCommandInput,
56
+ GetResourceSyncStatusCommandOutput,
57
+ } from "../commands/GetResourceSyncStatusCommand";
58
+ import {
59
+ GetSyncBlockerSummaryCommandInput,
60
+ GetSyncBlockerSummaryCommandOutput,
61
+ } from "../commands/GetSyncBlockerSummaryCommand";
62
+ import {
63
+ GetSyncConfigurationCommandInput,
64
+ GetSyncConfigurationCommandOutput,
65
+ } from "../commands/GetSyncConfigurationCommand";
66
+ import {
67
+ ListConnectionsCommandInput,
68
+ ListConnectionsCommandOutput,
69
+ } from "../commands/ListConnectionsCommand";
70
+ import {
71
+ ListHostsCommandInput,
72
+ ListHostsCommandOutput,
73
+ } from "../commands/ListHostsCommand";
74
+ import {
75
+ ListRepositoryLinksCommandInput,
76
+ ListRepositoryLinksCommandOutput,
77
+ } from "../commands/ListRepositoryLinksCommand";
78
+ import {
79
+ ListRepositorySyncDefinitionsCommandInput,
80
+ ListRepositorySyncDefinitionsCommandOutput,
81
+ } from "../commands/ListRepositorySyncDefinitionsCommand";
82
+ import {
83
+ ListSyncConfigurationsCommandInput,
84
+ ListSyncConfigurationsCommandOutput,
85
+ } from "../commands/ListSyncConfigurationsCommand";
86
+ import {
87
+ ListTagsForResourceCommandInput,
88
+ ListTagsForResourceCommandOutput,
89
+ } from "../commands/ListTagsForResourceCommand";
90
+ import {
91
+ TagResourceCommandInput,
92
+ TagResourceCommandOutput,
93
+ } from "../commands/TagResourceCommand";
94
+ import {
95
+ UntagResourceCommandInput,
96
+ UntagResourceCommandOutput,
97
+ } from "../commands/UntagResourceCommand";
98
+ import {
99
+ UpdateHostCommandInput,
100
+ UpdateHostCommandOutput,
101
+ } from "../commands/UpdateHostCommand";
102
+ import {
103
+ UpdateRepositoryLinkCommandInput,
104
+ UpdateRepositoryLinkCommandOutput,
105
+ } from "../commands/UpdateRepositoryLinkCommand";
106
+ import {
107
+ UpdateSyncBlockerCommandInput,
108
+ UpdateSyncBlockerCommandOutput,
109
+ } from "../commands/UpdateSyncBlockerCommand";
110
+ import {
111
+ UpdateSyncConfigurationCommandInput,
112
+ UpdateSyncConfigurationCommandOutput,
113
+ } from "../commands/UpdateSyncConfigurationCommand";
114
+ export declare const se_CreateConnectionCommand: (
115
+ input: CreateConnectionCommandInput,
116
+ context: __SerdeContext
117
+ ) => Promise<__HttpRequest>;
118
+ export declare const se_CreateHostCommand: (
119
+ input: CreateHostCommandInput,
120
+ context: __SerdeContext
121
+ ) => Promise<__HttpRequest>;
122
+ export declare const se_CreateRepositoryLinkCommand: (
123
+ input: CreateRepositoryLinkCommandInput,
124
+ context: __SerdeContext
125
+ ) => Promise<__HttpRequest>;
126
+ export declare const se_CreateSyncConfigurationCommand: (
127
+ input: CreateSyncConfigurationCommandInput,
128
+ context: __SerdeContext
129
+ ) => Promise<__HttpRequest>;
130
+ export declare const se_DeleteConnectionCommand: (
131
+ input: DeleteConnectionCommandInput,
132
+ context: __SerdeContext
133
+ ) => Promise<__HttpRequest>;
134
+ export declare const se_DeleteHostCommand: (
135
+ input: DeleteHostCommandInput,
136
+ context: __SerdeContext
137
+ ) => Promise<__HttpRequest>;
138
+ export declare const se_DeleteRepositoryLinkCommand: (
139
+ input: DeleteRepositoryLinkCommandInput,
140
+ context: __SerdeContext
141
+ ) => Promise<__HttpRequest>;
142
+ export declare const se_DeleteSyncConfigurationCommand: (
143
+ input: DeleteSyncConfigurationCommandInput,
144
+ context: __SerdeContext
145
+ ) => Promise<__HttpRequest>;
146
+ export declare const se_GetConnectionCommand: (
147
+ input: GetConnectionCommandInput,
148
+ context: __SerdeContext
149
+ ) => Promise<__HttpRequest>;
150
+ export declare const se_GetHostCommand: (
151
+ input: GetHostCommandInput,
152
+ context: __SerdeContext
153
+ ) => Promise<__HttpRequest>;
154
+ export declare const se_GetRepositoryLinkCommand: (
155
+ input: GetRepositoryLinkCommandInput,
156
+ context: __SerdeContext
157
+ ) => Promise<__HttpRequest>;
158
+ export declare const se_GetRepositorySyncStatusCommand: (
159
+ input: GetRepositorySyncStatusCommandInput,
160
+ context: __SerdeContext
161
+ ) => Promise<__HttpRequest>;
162
+ export declare const se_GetResourceSyncStatusCommand: (
163
+ input: GetResourceSyncStatusCommandInput,
164
+ context: __SerdeContext
165
+ ) => Promise<__HttpRequest>;
166
+ export declare const se_GetSyncBlockerSummaryCommand: (
167
+ input: GetSyncBlockerSummaryCommandInput,
168
+ context: __SerdeContext
169
+ ) => Promise<__HttpRequest>;
170
+ export declare const se_GetSyncConfigurationCommand: (
171
+ input: GetSyncConfigurationCommandInput,
172
+ context: __SerdeContext
173
+ ) => Promise<__HttpRequest>;
174
+ export declare const se_ListConnectionsCommand: (
175
+ input: ListConnectionsCommandInput,
176
+ context: __SerdeContext
177
+ ) => Promise<__HttpRequest>;
178
+ export declare const se_ListHostsCommand: (
179
+ input: ListHostsCommandInput,
180
+ context: __SerdeContext
181
+ ) => Promise<__HttpRequest>;
182
+ export declare const se_ListRepositoryLinksCommand: (
183
+ input: ListRepositoryLinksCommandInput,
184
+ context: __SerdeContext
185
+ ) => Promise<__HttpRequest>;
186
+ export declare const se_ListRepositorySyncDefinitionsCommand: (
187
+ input: ListRepositorySyncDefinitionsCommandInput,
188
+ context: __SerdeContext
189
+ ) => Promise<__HttpRequest>;
190
+ export declare const se_ListSyncConfigurationsCommand: (
191
+ input: ListSyncConfigurationsCommandInput,
192
+ context: __SerdeContext
193
+ ) => Promise<__HttpRequest>;
194
+ export declare const se_ListTagsForResourceCommand: (
195
+ input: ListTagsForResourceCommandInput,
196
+ context: __SerdeContext
197
+ ) => Promise<__HttpRequest>;
198
+ export declare const se_TagResourceCommand: (
199
+ input: TagResourceCommandInput,
200
+ context: __SerdeContext
201
+ ) => Promise<__HttpRequest>;
202
+ export declare const se_UntagResourceCommand: (
203
+ input: UntagResourceCommandInput,
204
+ context: __SerdeContext
205
+ ) => Promise<__HttpRequest>;
206
+ export declare const se_UpdateHostCommand: (
207
+ input: UpdateHostCommandInput,
208
+ context: __SerdeContext
209
+ ) => Promise<__HttpRequest>;
210
+ export declare const se_UpdateRepositoryLinkCommand: (
211
+ input: UpdateRepositoryLinkCommandInput,
212
+ context: __SerdeContext
213
+ ) => Promise<__HttpRequest>;
214
+ export declare const se_UpdateSyncBlockerCommand: (
215
+ input: UpdateSyncBlockerCommandInput,
216
+ context: __SerdeContext
217
+ ) => Promise<__HttpRequest>;
218
+ export declare const se_UpdateSyncConfigurationCommand: (
219
+ input: UpdateSyncConfigurationCommandInput,
220
+ context: __SerdeContext
221
+ ) => Promise<__HttpRequest>;
222
+ export declare const de_CreateConnectionCommand: (
223
+ output: __HttpResponse,
224
+ context: __SerdeContext
225
+ ) => Promise<CreateConnectionCommandOutput>;
226
+ export declare const de_CreateHostCommand: (
227
+ output: __HttpResponse,
228
+ context: __SerdeContext
229
+ ) => Promise<CreateHostCommandOutput>;
230
+ export declare const de_CreateRepositoryLinkCommand: (
231
+ output: __HttpResponse,
232
+ context: __SerdeContext
233
+ ) => Promise<CreateRepositoryLinkCommandOutput>;
234
+ export declare const de_CreateSyncConfigurationCommand: (
235
+ output: __HttpResponse,
236
+ context: __SerdeContext
237
+ ) => Promise<CreateSyncConfigurationCommandOutput>;
238
+ export declare const de_DeleteConnectionCommand: (
239
+ output: __HttpResponse,
240
+ context: __SerdeContext
241
+ ) => Promise<DeleteConnectionCommandOutput>;
242
+ export declare const de_DeleteHostCommand: (
243
+ output: __HttpResponse,
244
+ context: __SerdeContext
245
+ ) => Promise<DeleteHostCommandOutput>;
246
+ export declare const de_DeleteRepositoryLinkCommand: (
247
+ output: __HttpResponse,
248
+ context: __SerdeContext
249
+ ) => Promise<DeleteRepositoryLinkCommandOutput>;
250
+ export declare const de_DeleteSyncConfigurationCommand: (
251
+ output: __HttpResponse,
252
+ context: __SerdeContext
253
+ ) => Promise<DeleteSyncConfigurationCommandOutput>;
254
+ export declare const de_GetConnectionCommand: (
255
+ output: __HttpResponse,
256
+ context: __SerdeContext
257
+ ) => Promise<GetConnectionCommandOutput>;
258
+ export declare const de_GetHostCommand: (
259
+ output: __HttpResponse,
260
+ context: __SerdeContext
261
+ ) => Promise<GetHostCommandOutput>;
262
+ export declare const de_GetRepositoryLinkCommand: (
263
+ output: __HttpResponse,
264
+ context: __SerdeContext
265
+ ) => Promise<GetRepositoryLinkCommandOutput>;
266
+ export declare const de_GetRepositorySyncStatusCommand: (
267
+ output: __HttpResponse,
268
+ context: __SerdeContext
269
+ ) => Promise<GetRepositorySyncStatusCommandOutput>;
270
+ export declare const de_GetResourceSyncStatusCommand: (
271
+ output: __HttpResponse,
272
+ context: __SerdeContext
273
+ ) => Promise<GetResourceSyncStatusCommandOutput>;
274
+ export declare const de_GetSyncBlockerSummaryCommand: (
275
+ output: __HttpResponse,
276
+ context: __SerdeContext
277
+ ) => Promise<GetSyncBlockerSummaryCommandOutput>;
278
+ export declare const de_GetSyncConfigurationCommand: (
279
+ output: __HttpResponse,
280
+ context: __SerdeContext
281
+ ) => Promise<GetSyncConfigurationCommandOutput>;
282
+ export declare const de_ListConnectionsCommand: (
283
+ output: __HttpResponse,
284
+ context: __SerdeContext
285
+ ) => Promise<ListConnectionsCommandOutput>;
286
+ export declare const de_ListHostsCommand: (
287
+ output: __HttpResponse,
288
+ context: __SerdeContext
289
+ ) => Promise<ListHostsCommandOutput>;
290
+ export declare const de_ListRepositoryLinksCommand: (
291
+ output: __HttpResponse,
292
+ context: __SerdeContext
293
+ ) => Promise<ListRepositoryLinksCommandOutput>;
294
+ export declare const de_ListRepositorySyncDefinitionsCommand: (
295
+ output: __HttpResponse,
296
+ context: __SerdeContext
297
+ ) => Promise<ListRepositorySyncDefinitionsCommandOutput>;
298
+ export declare const de_ListSyncConfigurationsCommand: (
299
+ output: __HttpResponse,
300
+ context: __SerdeContext
301
+ ) => Promise<ListSyncConfigurationsCommandOutput>;
302
+ export declare const de_ListTagsForResourceCommand: (
303
+ output: __HttpResponse,
304
+ context: __SerdeContext
305
+ ) => Promise<ListTagsForResourceCommandOutput>;
306
+ export declare const de_TagResourceCommand: (
307
+ output: __HttpResponse,
308
+ context: __SerdeContext
309
+ ) => Promise<TagResourceCommandOutput>;
310
+ export declare const de_UntagResourceCommand: (
311
+ output: __HttpResponse,
312
+ context: __SerdeContext
313
+ ) => Promise<UntagResourceCommandOutput>;
314
+ export declare const de_UpdateHostCommand: (
315
+ output: __HttpResponse,
316
+ context: __SerdeContext
317
+ ) => Promise<UpdateHostCommandOutput>;
318
+ export declare const de_UpdateRepositoryLinkCommand: (
319
+ output: __HttpResponse,
320
+ context: __SerdeContext
321
+ ) => Promise<UpdateRepositoryLinkCommandOutput>;
322
+ export declare const de_UpdateSyncBlockerCommand: (
323
+ output: __HttpResponse,
324
+ context: __SerdeContext
325
+ ) => Promise<UpdateSyncBlockerCommandOutput>;
326
+ export declare const de_UpdateSyncConfigurationCommand: (
327
+ output: __HttpResponse,
328
+ context: __SerdeContext
329
+ ) => Promise<UpdateSyncConfigurationCommandOutput>;
@@ -0,0 +1,87 @@
1
+ import { FetchHttpHandler as RequestHandler } from "@smithy/fetch-http-handler";
2
+ import { CodeConnectionsClientConfig } from "./CodeConnectionsClient";
3
+ export declare const getRuntimeConfig: (
4
+ config: CodeConnectionsClientConfig
5
+ ) => {
6
+ runtime: string;
7
+ defaultsMode: import("@smithy/types").Provider<
8
+ import("@smithy/smithy-client").ResolvedDefaultsMode
9
+ >;
10
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
11
+ credentialDefaultProvider: (
12
+ input: any
13
+ ) => import("@smithy/types").AwsCredentialIdentityProvider;
14
+ defaultUserAgentProvider: import("@smithy/types").Provider<
15
+ import("@smithy/types").UserAgent
16
+ >;
17
+ maxAttempts: number | import("@smithy/types").Provider<number>;
18
+ region: string | import("@smithy/types").Provider<any>;
19
+ requestHandler:
20
+ | import("@smithy/protocol-http").HttpHandler<any>
21
+ | RequestHandler;
22
+ retryMode: string | import("@smithy/types").Provider<string>;
23
+ sha256: import("@smithy/types").HashConstructor;
24
+ streamCollector: import("@smithy/types").StreamCollector;
25
+ useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
26
+ useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
27
+ apiVersion: string;
28
+ urlParser: import("@smithy/types").UrlParser;
29
+ base64Decoder: import("@smithy/types").Decoder;
30
+ base64Encoder: (_input: string | Uint8Array) => string;
31
+ utf8Decoder: import("@smithy/types").Decoder;
32
+ utf8Encoder: (input: string | Uint8Array) => string;
33
+ disableHostPrefix: boolean;
34
+ serviceId: string;
35
+ logger: import("@smithy/types").Logger;
36
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
37
+ endpoint?:
38
+ | ((
39
+ | string
40
+ | import("@smithy/types").Endpoint
41
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
42
+ | import("@smithy/types").EndpointV2
43
+ | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
44
+ ) &
45
+ (
46
+ | string
47
+ | import("@smithy/types").Provider<string>
48
+ | import("@smithy/types").Endpoint
49
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
50
+ | import("@smithy/types").EndpointV2
51
+ | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
52
+ ))
53
+ | undefined;
54
+ endpointProvider: (
55
+ endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
56
+ context?: {
57
+ logger?: import("@smithy/types").Logger | undefined;
58
+ }
59
+ ) => import("@smithy/types").EndpointV2;
60
+ tls?: boolean | undefined;
61
+ retryStrategy?:
62
+ | import("@smithy/types").RetryStrategy
63
+ | import("@smithy/types").RetryStrategyV2
64
+ | undefined;
65
+ customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
66
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
67
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").CodeConnectionsHttpAuthSchemeProvider;
68
+ credentials?:
69
+ | import("@smithy/types").AwsCredentialIdentity
70
+ | import("@smithy/types").AwsCredentialIdentityProvider
71
+ | undefined;
72
+ signer?:
73
+ | import("@smithy/types").RequestSigner
74
+ | ((
75
+ authScheme?: import("@smithy/types").AuthScheme | undefined
76
+ ) => Promise<import("@smithy/types").RequestSigner>)
77
+ | undefined;
78
+ signingEscapePath?: boolean | undefined;
79
+ systemClockOffset?: number | undefined;
80
+ signingRegion?: string | undefined;
81
+ signerConstructor?:
82
+ | (new (
83
+ options: import("@smithy/signature-v4").SignatureV4Init &
84
+ import("@smithy/signature-v4").SignatureV4CryptoInit
85
+ ) => import("@smithy/types").RequestSigner)
86
+ | undefined;
87
+ };
@@ -0,0 +1,91 @@
1
+ import { NodeHttpHandler as RequestHandler } from "@smithy/node-http-handler";
2
+ import { CodeConnectionsClientConfig } from "./CodeConnectionsClient";
3
+ export declare const getRuntimeConfig: (
4
+ config: CodeConnectionsClientConfig
5
+ ) => {
6
+ runtime: string;
7
+ defaultsMode: import("@smithy/types").Provider<
8
+ import("@smithy/smithy-client").ResolvedDefaultsMode
9
+ >;
10
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
11
+ credentialDefaultProvider: (
12
+ init?:
13
+ | import("@aws-sdk/credential-provider-node").DefaultProviderInit
14
+ | undefined
15
+ ) => import("@smithy/types").MemoizedProvider<
16
+ import("@smithy/types").AwsCredentialIdentity
17
+ >;
18
+ defaultUserAgentProvider: import("@smithy/types").Provider<
19
+ import("@smithy/types").UserAgent
20
+ >;
21
+ maxAttempts: number | import("@smithy/types").Provider<number>;
22
+ region: string | import("@smithy/types").Provider<string>;
23
+ requestHandler:
24
+ | RequestHandler
25
+ | import("@smithy/protocol-http").HttpHandler<any>;
26
+ retryMode: string | import("@smithy/types").Provider<string>;
27
+ sha256: import("@smithy/types").HashConstructor;
28
+ streamCollector: import("@smithy/types").StreamCollector;
29
+ useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
30
+ useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
31
+ apiVersion: string;
32
+ urlParser: import("@smithy/types").UrlParser;
33
+ base64Decoder: import("@smithy/types").Decoder;
34
+ base64Encoder: (_input: string | Uint8Array) => string;
35
+ utf8Decoder: import("@smithy/types").Decoder;
36
+ utf8Encoder: (input: string | Uint8Array) => string;
37
+ disableHostPrefix: boolean;
38
+ serviceId: string;
39
+ logger: import("@smithy/types").Logger;
40
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
41
+ endpoint?:
42
+ | ((
43
+ | string
44
+ | import("@smithy/types").Endpoint
45
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
46
+ | import("@smithy/types").EndpointV2
47
+ | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
48
+ ) &
49
+ (
50
+ | string
51
+ | import("@smithy/types").Provider<string>
52
+ | import("@smithy/types").Endpoint
53
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
54
+ | import("@smithy/types").EndpointV2
55
+ | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
56
+ ))
57
+ | undefined;
58
+ endpointProvider: (
59
+ endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
60
+ context?: {
61
+ logger?: import("@smithy/types").Logger | undefined;
62
+ }
63
+ ) => import("@smithy/types").EndpointV2;
64
+ tls?: boolean | undefined;
65
+ retryStrategy?:
66
+ | import("@smithy/types").RetryStrategy
67
+ | import("@smithy/types").RetryStrategyV2
68
+ | undefined;
69
+ customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
70
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
71
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").CodeConnectionsHttpAuthSchemeProvider;
72
+ credentials?:
73
+ | import("@smithy/types").AwsCredentialIdentity
74
+ | import("@smithy/types").AwsCredentialIdentityProvider
75
+ | undefined;
76
+ signer?:
77
+ | import("@smithy/types").RequestSigner
78
+ | ((
79
+ authScheme?: import("@smithy/types").AuthScheme | undefined
80
+ ) => Promise<import("@smithy/types").RequestSigner>)
81
+ | undefined;
82
+ signingEscapePath?: boolean | undefined;
83
+ systemClockOffset?: number | undefined;
84
+ signingRegion?: string | undefined;
85
+ signerConstructor?:
86
+ | (new (
87
+ options: import("@smithy/signature-v4").SignatureV4Init &
88
+ import("@smithy/signature-v4").SignatureV4CryptoInit
89
+ ) => import("@smithy/types").RequestSigner)
90
+ | undefined;
91
+ };
@@ -0,0 +1,81 @@
1
+ import { CodeConnectionsClientConfig } from "./CodeConnectionsClient";
2
+ export declare const getRuntimeConfig: (
3
+ config: CodeConnectionsClientConfig
4
+ ) => {
5
+ runtime: string;
6
+ sha256: import("@smithy/types").HashConstructor;
7
+ requestHandler:
8
+ | import("@smithy/types").NodeHttpHandlerOptions
9
+ | import("@smithy/types").FetchHttpHandlerOptions
10
+ | Record<string, unknown>
11
+ | import("@smithy/protocol-http").HttpHandler<any>
12
+ | import("@smithy/fetch-http-handler").FetchHttpHandler;
13
+ apiVersion: string;
14
+ urlParser: import("@smithy/types").UrlParser;
15
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
16
+ streamCollector: import("@smithy/types").StreamCollector;
17
+ base64Decoder: import("@smithy/types").Decoder;
18
+ base64Encoder: (_input: string | Uint8Array) => string;
19
+ utf8Decoder: import("@smithy/types").Decoder;
20
+ utf8Encoder: (input: string | Uint8Array) => string;
21
+ disableHostPrefix: boolean;
22
+ serviceId: string;
23
+ useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
24
+ useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
25
+ defaultUserAgentProvider: import("@smithy/types").Provider<
26
+ import("@smithy/types").UserAgent
27
+ >;
28
+ region: string | import("@smithy/types").Provider<any>;
29
+ credentialDefaultProvider: (
30
+ input: any
31
+ ) => import("@smithy/types").AwsCredentialIdentityProvider;
32
+ maxAttempts: number | import("@smithy/types").Provider<number>;
33
+ retryMode: string | import("@smithy/types").Provider<string>;
34
+ logger: import("@smithy/types").Logger;
35
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
36
+ defaultsMode:
37
+ | import("@smithy/smithy-client").DefaultsMode
38
+ | import("@smithy/types").Provider<
39
+ import("@smithy/smithy-client").DefaultsMode
40
+ >;
41
+ endpoint?:
42
+ | string
43
+ | import("@smithy/types").Endpoint
44
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
45
+ | import("@smithy/types").EndpointV2
46
+ | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
47
+ | undefined;
48
+ endpointProvider: (
49
+ endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
50
+ context?: {
51
+ logger?: import("@smithy/types").Logger | undefined;
52
+ }
53
+ ) => import("@smithy/types").EndpointV2;
54
+ tls?: boolean | undefined;
55
+ retryStrategy?:
56
+ | import("@smithy/types").RetryStrategy
57
+ | import("@smithy/types").RetryStrategyV2
58
+ | undefined;
59
+ customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
60
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
61
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").CodeConnectionsHttpAuthSchemeProvider;
62
+ credentials?:
63
+ | import("@smithy/types").AwsCredentialIdentity
64
+ | import("@smithy/types").AwsCredentialIdentityProvider
65
+ | undefined;
66
+ signer?:
67
+ | import("@smithy/types").RequestSigner
68
+ | ((
69
+ authScheme?: import("@smithy/types").AuthScheme | undefined
70
+ ) => Promise<import("@smithy/types").RequestSigner>)
71
+ | undefined;
72
+ signingEscapePath?: boolean | undefined;
73
+ systemClockOffset?: number | undefined;
74
+ signingRegion?: string | undefined;
75
+ signerConstructor?:
76
+ | (new (
77
+ options: import("@smithy/signature-v4").SignatureV4Init &
78
+ import("@smithy/signature-v4").SignatureV4CryptoInit
79
+ ) => import("@smithy/types").RequestSigner)
80
+ | undefined;
81
+ };
@@ -0,0 +1,23 @@
1
+ import { CodeConnectionsClientConfig } from "./CodeConnectionsClient";
2
+ export declare const getRuntimeConfig: (
3
+ config: CodeConnectionsClientConfig
4
+ ) => {
5
+ apiVersion: string;
6
+ base64Decoder: import("@smithy/types").Decoder;
7
+ base64Encoder: (_input: string | Uint8Array) => string;
8
+ disableHostPrefix: boolean;
9
+ endpointProvider: (
10
+ endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
11
+ context?: {
12
+ logger?: import("@smithy/types").Logger | undefined;
13
+ }
14
+ ) => import("@smithy/types").EndpointV2;
15
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
16
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").CodeConnectionsHttpAuthSchemeProvider;
17
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
18
+ logger: import("@smithy/types").Logger;
19
+ serviceId: string;
20
+ urlParser: import("@smithy/types").UrlParser;
21
+ utf8Decoder: import("@smithy/types").Decoder;
22
+ utf8Encoder: (input: string | Uint8Array) => string;
23
+ };
@@ -0,0 +1,13 @@
1
+ import { CodeConnectionsExtensionConfiguration } from "./extensionConfiguration";
2
+ export interface RuntimeExtension {
3
+ configure(
4
+ extensionConfiguration: CodeConnectionsExtensionConfiguration
5
+ ): void;
6
+ }
7
+ export interface RuntimeExtensionsConfig {
8
+ extensions: RuntimeExtension[];
9
+ }
10
+ export declare const resolveRuntimeExtensions: (
11
+ runtimeConfig: any,
12
+ extensions: RuntimeExtension[]
13
+ ) => any;