@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,28 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ListTagsForResourceCommand = exports.$Command = void 0;
4
+ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
+ const middleware_serde_1 = require("@smithy/middleware-serde");
6
+ const smithy_client_1 = require("@smithy/smithy-client");
7
+ Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
+ const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
10
+ class ListTagsForResourceCommand extends smithy_client_1.Command
11
+ .classBuilder()
12
+ .ep({
13
+ ...EndpointParameters_1.commonParams,
14
+ })
15
+ .m(function (Command, cs, config, o) {
16
+ return [
17
+ (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
+ (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
+ ];
20
+ })
21
+ .s("CodeConnections_20231201", "ListTagsForResource", {})
22
+ .n("CodeConnectionsClient", "ListTagsForResourceCommand")
23
+ .f(void 0, void 0)
24
+ .ser(Aws_json1_0_1.se_ListTagsForResourceCommand)
25
+ .de(Aws_json1_0_1.de_ListTagsForResourceCommand)
26
+ .build() {
27
+ }
28
+ exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
@@ -0,0 +1,28 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.TagResourceCommand = exports.$Command = void 0;
4
+ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
+ const middleware_serde_1 = require("@smithy/middleware-serde");
6
+ const smithy_client_1 = require("@smithy/smithy-client");
7
+ Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
+ const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
10
+ class TagResourceCommand extends smithy_client_1.Command
11
+ .classBuilder()
12
+ .ep({
13
+ ...EndpointParameters_1.commonParams,
14
+ })
15
+ .m(function (Command, cs, config, o) {
16
+ return [
17
+ (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
+ (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
+ ];
20
+ })
21
+ .s("CodeConnections_20231201", "TagResource", {})
22
+ .n("CodeConnectionsClient", "TagResourceCommand")
23
+ .f(void 0, void 0)
24
+ .ser(Aws_json1_0_1.se_TagResourceCommand)
25
+ .de(Aws_json1_0_1.de_TagResourceCommand)
26
+ .build() {
27
+ }
28
+ exports.TagResourceCommand = TagResourceCommand;
@@ -0,0 +1,28 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.UntagResourceCommand = exports.$Command = void 0;
4
+ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
+ const middleware_serde_1 = require("@smithy/middleware-serde");
6
+ const smithy_client_1 = require("@smithy/smithy-client");
7
+ Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
+ const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
10
+ class UntagResourceCommand extends smithy_client_1.Command
11
+ .classBuilder()
12
+ .ep({
13
+ ...EndpointParameters_1.commonParams,
14
+ })
15
+ .m(function (Command, cs, config, o) {
16
+ return [
17
+ (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
+ (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
+ ];
20
+ })
21
+ .s("CodeConnections_20231201", "UntagResource", {})
22
+ .n("CodeConnectionsClient", "UntagResourceCommand")
23
+ .f(void 0, void 0)
24
+ .ser(Aws_json1_0_1.se_UntagResourceCommand)
25
+ .de(Aws_json1_0_1.de_UntagResourceCommand)
26
+ .build() {
27
+ }
28
+ exports.UntagResourceCommand = UntagResourceCommand;
@@ -0,0 +1,28 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.UpdateHostCommand = exports.$Command = void 0;
4
+ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
+ const middleware_serde_1 = require("@smithy/middleware-serde");
6
+ const smithy_client_1 = require("@smithy/smithy-client");
7
+ Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
+ const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
10
+ class UpdateHostCommand extends smithy_client_1.Command
11
+ .classBuilder()
12
+ .ep({
13
+ ...EndpointParameters_1.commonParams,
14
+ })
15
+ .m(function (Command, cs, config, o) {
16
+ return [
17
+ (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
+ (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
+ ];
20
+ })
21
+ .s("CodeConnections_20231201", "UpdateHost", {})
22
+ .n("CodeConnectionsClient", "UpdateHostCommand")
23
+ .f(void 0, void 0)
24
+ .ser(Aws_json1_0_1.se_UpdateHostCommand)
25
+ .de(Aws_json1_0_1.de_UpdateHostCommand)
26
+ .build() {
27
+ }
28
+ exports.UpdateHostCommand = UpdateHostCommand;
@@ -0,0 +1,28 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.UpdateRepositoryLinkCommand = exports.$Command = void 0;
4
+ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
+ const middleware_serde_1 = require("@smithy/middleware-serde");
6
+ const smithy_client_1 = require("@smithy/smithy-client");
7
+ Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
+ const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
10
+ class UpdateRepositoryLinkCommand extends smithy_client_1.Command
11
+ .classBuilder()
12
+ .ep({
13
+ ...EndpointParameters_1.commonParams,
14
+ })
15
+ .m(function (Command, cs, config, o) {
16
+ return [
17
+ (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
+ (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
+ ];
20
+ })
21
+ .s("CodeConnections_20231201", "UpdateRepositoryLink", {})
22
+ .n("CodeConnectionsClient", "UpdateRepositoryLinkCommand")
23
+ .f(void 0, void 0)
24
+ .ser(Aws_json1_0_1.se_UpdateRepositoryLinkCommand)
25
+ .de(Aws_json1_0_1.de_UpdateRepositoryLinkCommand)
26
+ .build() {
27
+ }
28
+ exports.UpdateRepositoryLinkCommand = UpdateRepositoryLinkCommand;
@@ -0,0 +1,28 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.UpdateSyncBlockerCommand = exports.$Command = void 0;
4
+ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
+ const middleware_serde_1 = require("@smithy/middleware-serde");
6
+ const smithy_client_1 = require("@smithy/smithy-client");
7
+ Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
+ const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
10
+ class UpdateSyncBlockerCommand extends smithy_client_1.Command
11
+ .classBuilder()
12
+ .ep({
13
+ ...EndpointParameters_1.commonParams,
14
+ })
15
+ .m(function (Command, cs, config, o) {
16
+ return [
17
+ (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
+ (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
+ ];
20
+ })
21
+ .s("CodeConnections_20231201", "UpdateSyncBlocker", {})
22
+ .n("CodeConnectionsClient", "UpdateSyncBlockerCommand")
23
+ .f(void 0, void 0)
24
+ .ser(Aws_json1_0_1.se_UpdateSyncBlockerCommand)
25
+ .de(Aws_json1_0_1.de_UpdateSyncBlockerCommand)
26
+ .build() {
27
+ }
28
+ exports.UpdateSyncBlockerCommand = UpdateSyncBlockerCommand;
@@ -0,0 +1,28 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.UpdateSyncConfigurationCommand = exports.$Command = void 0;
4
+ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
+ const middleware_serde_1 = require("@smithy/middleware-serde");
6
+ const smithy_client_1 = require("@smithy/smithy-client");
7
+ Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
+ const Aws_json1_0_1 = require("../protocols/Aws_json1_0");
10
+ class UpdateSyncConfigurationCommand extends smithy_client_1.Command
11
+ .classBuilder()
12
+ .ep({
13
+ ...EndpointParameters_1.commonParams,
14
+ })
15
+ .m(function (Command, cs, config, o) {
16
+ return [
17
+ (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
+ (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
+ ];
20
+ })
21
+ .s("CodeConnections_20231201", "UpdateSyncConfiguration", {})
22
+ .n("CodeConnectionsClient", "UpdateSyncConfigurationCommand")
23
+ .f(void 0, void 0)
24
+ .ser(Aws_json1_0_1.se_UpdateSyncConfigurationCommand)
25
+ .de(Aws_json1_0_1.de_UpdateSyncConfigurationCommand)
26
+ .build() {
27
+ }
28
+ exports.UpdateSyncConfigurationCommand = UpdateSyncConfigurationCommand;
@@ -0,0 +1,30 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const tslib_1 = require("tslib");
4
+ tslib_1.__exportStar(require("./CreateConnectionCommand"), exports);
5
+ tslib_1.__exportStar(require("./CreateHostCommand"), exports);
6
+ tslib_1.__exportStar(require("./CreateRepositoryLinkCommand"), exports);
7
+ tslib_1.__exportStar(require("./CreateSyncConfigurationCommand"), exports);
8
+ tslib_1.__exportStar(require("./DeleteConnectionCommand"), exports);
9
+ tslib_1.__exportStar(require("./DeleteHostCommand"), exports);
10
+ tslib_1.__exportStar(require("./DeleteRepositoryLinkCommand"), exports);
11
+ tslib_1.__exportStar(require("./DeleteSyncConfigurationCommand"), exports);
12
+ tslib_1.__exportStar(require("./GetConnectionCommand"), exports);
13
+ tslib_1.__exportStar(require("./GetHostCommand"), exports);
14
+ tslib_1.__exportStar(require("./GetRepositoryLinkCommand"), exports);
15
+ tslib_1.__exportStar(require("./GetRepositorySyncStatusCommand"), exports);
16
+ tslib_1.__exportStar(require("./GetResourceSyncStatusCommand"), exports);
17
+ tslib_1.__exportStar(require("./GetSyncBlockerSummaryCommand"), exports);
18
+ tslib_1.__exportStar(require("./GetSyncConfigurationCommand"), exports);
19
+ tslib_1.__exportStar(require("./ListConnectionsCommand"), exports);
20
+ tslib_1.__exportStar(require("./ListHostsCommand"), exports);
21
+ tslib_1.__exportStar(require("./ListRepositoryLinksCommand"), exports);
22
+ tslib_1.__exportStar(require("./ListRepositorySyncDefinitionsCommand"), exports);
23
+ tslib_1.__exportStar(require("./ListSyncConfigurationsCommand"), exports);
24
+ tslib_1.__exportStar(require("./ListTagsForResourceCommand"), exports);
25
+ tslib_1.__exportStar(require("./TagResourceCommand"), exports);
26
+ tslib_1.__exportStar(require("./UntagResourceCommand"), exports);
27
+ tslib_1.__exportStar(require("./UpdateHostCommand"), exports);
28
+ tslib_1.__exportStar(require("./UpdateRepositoryLinkCommand"), exports);
29
+ tslib_1.__exportStar(require("./UpdateSyncBlockerCommand"), exports);
30
+ tslib_1.__exportStar(require("./UpdateSyncConfigurationCommand"), exports);
@@ -0,0 +1,18 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.commonParams = exports.resolveClientEndpointParameters = void 0;
4
+ const resolveClientEndpointParameters = (options) => {
5
+ return {
6
+ ...options,
7
+ useDualstackEndpoint: options.useDualstackEndpoint ?? false,
8
+ useFipsEndpoint: options.useFipsEndpoint ?? false,
9
+ defaultSigningName: "codeconnections",
10
+ };
11
+ };
12
+ exports.resolveClientEndpointParameters = resolveClientEndpointParameters;
13
+ exports.commonParams = {
14
+ UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
15
+ Endpoint: { type: "builtInParams", name: "endpoint" },
16
+ Region: { type: "builtInParams", name: "region" },
17
+ UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
18
+ };
@@ -0,0 +1,14 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.defaultEndpointResolver = void 0;
4
+ const util_endpoints_1 = require("@aws-sdk/util-endpoints");
5
+ const util_endpoints_2 = require("@smithy/util-endpoints");
6
+ const ruleset_1 = require("./ruleset");
7
+ const defaultEndpointResolver = (endpointParams, context = {}) => {
8
+ return (0, util_endpoints_2.resolveEndpoint)(ruleset_1.ruleSet, {
9
+ endpointParams: endpointParams,
10
+ logger: context.logger,
11
+ });
12
+ };
13
+ exports.defaultEndpointResolver = defaultEndpointResolver;
14
+ util_endpoints_2.customEndpointFunctions.aws = util_endpoints_1.awsEndpointFunctions;
@@ -0,0 +1,7 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ruleSet = void 0;
4
+ const s = "required", t = "fn", u = "argv", v = "ref";
5
+ const a = true, b = "isSet", c = "booleanEquals", d = "error", e = "endpoint", f = "tree", g = "PartitionResult", h = { [s]: false, "type": "String" }, i = { [s]: true, "default": false, "type": "Boolean" }, j = { [v]: "Endpoint" }, k = { [t]: c, [u]: [{ [v]: "UseFIPS" }, true] }, l = { [t]: c, [u]: [{ [v]: "UseDualStack" }, true] }, m = {}, n = { [t]: "getAttr", [u]: [{ [v]: g }, "supportsFIPS"] }, o = { [t]: c, [u]: [true, { [t]: "getAttr", [u]: [{ [v]: g }, "supportsDualStack"] }] }, p = [k], q = [l], r = [{ [v]: "Region" }];
6
+ const _data = { version: "1.0", parameters: { Region: h, UseDualStack: i, UseFIPS: i, Endpoint: h }, rules: [{ conditions: [{ [t]: b, [u]: [j] }], rules: [{ conditions: p, error: "Invalid Configuration: FIPS and custom endpoint are not supported", type: d }, { rules: [{ conditions: q, error: "Invalid Configuration: Dualstack and custom endpoint are not supported", type: d }, { endpoint: { url: j, properties: m, headers: m }, type: e }], type: f }], type: f }, { rules: [{ conditions: [{ [t]: b, [u]: r }], rules: [{ conditions: [{ [t]: "aws.partition", [u]: r, assign: g }], rules: [{ conditions: [k, l], rules: [{ conditions: [{ [t]: c, [u]: [a, n] }, o], rules: [{ rules: [{ endpoint: { url: "https://codeconnections-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", properties: m, headers: m }, type: e }], type: f }], type: f }, { error: "FIPS and DualStack are enabled, but this partition does not support one or both", type: d }], type: f }, { conditions: p, rules: [{ conditions: [{ [t]: c, [u]: [n, a] }], rules: [{ rules: [{ endpoint: { url: "https://codeconnections-fips.{Region}.{PartitionResult#dnsSuffix}", properties: m, headers: m }, type: e }], type: f }], type: f }, { error: "FIPS is enabled but this partition does not support FIPS", type: d }], type: f }, { conditions: q, rules: [{ conditions: [o], rules: [{ rules: [{ endpoint: { url: "https://codeconnections.{Region}.{PartitionResult#dualStackDnsSuffix}", properties: m, headers: m }, type: e }], type: f }], type: f }, { error: "DualStack is enabled but this partition does not support DualStack", type: d }], type: f }, { rules: [{ endpoint: { url: "https://codeconnections.{Region}.{PartitionResult#dnsSuffix}", properties: m, headers: m }, type: e }], type: f }], type: f }], type: f }, { error: "Invalid Configuration: Missing Region", type: d }], type: f }] };
7
+ exports.ruleSet = _data;
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,11 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.CodeConnectionsServiceException = void 0;
4
+ const tslib_1 = require("tslib");
5
+ tslib_1.__exportStar(require("./CodeConnectionsClient"), exports);
6
+ tslib_1.__exportStar(require("./CodeConnections"), exports);
7
+ tslib_1.__exportStar(require("./commands"), exports);
8
+ tslib_1.__exportStar(require("./pagination"), exports);
9
+ tslib_1.__exportStar(require("./models"), exports);
10
+ var CodeConnectionsServiceException_1 = require("./models/CodeConnectionsServiceException");
11
+ Object.defineProperty(exports, "CodeConnectionsServiceException", { enumerable: true, get: function () { return CodeConnectionsServiceException_1.CodeConnectionsServiceException; } });
@@ -0,0 +1,12 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.CodeConnectionsServiceException = exports.__ServiceException = void 0;
4
+ const smithy_client_1 = require("@smithy/smithy-client");
5
+ Object.defineProperty(exports, "__ServiceException", { enumerable: true, get: function () { return smithy_client_1.ServiceException; } });
6
+ class CodeConnectionsServiceException extends smithy_client_1.ServiceException {
7
+ constructor(options) {
8
+ super(options);
9
+ Object.setPrototypeOf(this, CodeConnectionsServiceException.prototype);
10
+ }
11
+ }
12
+ exports.CodeConnectionsServiceException = CodeConnectionsServiceException;
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const tslib_1 = require("tslib");
4
+ tslib_1.__exportStar(require("./models_0"), exports);
@@ -0,0 +1,285 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.SyncBlockerDoesNotExistException = exports.RetryLatestCommitFailedException = exports.UpdateOutOfSyncException = exports.ConditionalCheckFailedException = exports.UnsupportedOperationException = exports.ConflictException = exports.ResourceSyncStatus = exports.RepositorySyncStatus = exports.ConnectionStatus = exports.UnsupportedProviderTypeException = exports.SyncConfigurationStillExistsException = exports.TriggerResourceUpdateOn = exports.SyncConfigurationType = exports.PublishDeploymentStatus = exports.ThrottlingException = exports.ResourceAlreadyExistsException = exports.InvalidInputException = exports.InternalServerException = exports.ConcurrentModificationException = exports.ResourceUnavailableException = exports.ResourceNotFoundException = exports.LimitExceededException = exports.ProviderType = exports.BlockerType = exports.BlockerStatus = exports.AccessDeniedException = void 0;
4
+ const CodeConnectionsServiceException_1 = require("./CodeConnectionsServiceException");
5
+ class AccessDeniedException extends CodeConnectionsServiceException_1.CodeConnectionsServiceException {
6
+ constructor(opts) {
7
+ super({
8
+ name: "AccessDeniedException",
9
+ $fault: "client",
10
+ ...opts,
11
+ });
12
+ this.name = "AccessDeniedException";
13
+ this.$fault = "client";
14
+ Object.setPrototypeOf(this, AccessDeniedException.prototype);
15
+ this.Message = opts.Message;
16
+ }
17
+ }
18
+ exports.AccessDeniedException = AccessDeniedException;
19
+ exports.BlockerStatus = {
20
+ ACTIVE: "ACTIVE",
21
+ RESOLVED: "RESOLVED",
22
+ };
23
+ exports.BlockerType = {
24
+ AUTOMATED: "AUTOMATED",
25
+ };
26
+ exports.ProviderType = {
27
+ BITBUCKET: "Bitbucket",
28
+ GITHUB: "GitHub",
29
+ GITHUB_ENTERPRISE_SERVER: "GitHubEnterpriseServer",
30
+ GITLAB: "GitLab",
31
+ GITLAB_SELF_MANAGED: "GitLabSelfManaged",
32
+ };
33
+ class LimitExceededException extends CodeConnectionsServiceException_1.CodeConnectionsServiceException {
34
+ constructor(opts) {
35
+ super({
36
+ name: "LimitExceededException",
37
+ $fault: "client",
38
+ ...opts,
39
+ });
40
+ this.name = "LimitExceededException";
41
+ this.$fault = "client";
42
+ Object.setPrototypeOf(this, LimitExceededException.prototype);
43
+ this.Message = opts.Message;
44
+ }
45
+ }
46
+ exports.LimitExceededException = LimitExceededException;
47
+ class ResourceNotFoundException extends CodeConnectionsServiceException_1.CodeConnectionsServiceException {
48
+ constructor(opts) {
49
+ super({
50
+ name: "ResourceNotFoundException",
51
+ $fault: "client",
52
+ ...opts,
53
+ });
54
+ this.name = "ResourceNotFoundException";
55
+ this.$fault = "client";
56
+ Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
57
+ this.Message = opts.Message;
58
+ }
59
+ }
60
+ exports.ResourceNotFoundException = ResourceNotFoundException;
61
+ class ResourceUnavailableException extends CodeConnectionsServiceException_1.CodeConnectionsServiceException {
62
+ constructor(opts) {
63
+ super({
64
+ name: "ResourceUnavailableException",
65
+ $fault: "client",
66
+ ...opts,
67
+ });
68
+ this.name = "ResourceUnavailableException";
69
+ this.$fault = "client";
70
+ Object.setPrototypeOf(this, ResourceUnavailableException.prototype);
71
+ this.Message = opts.Message;
72
+ }
73
+ }
74
+ exports.ResourceUnavailableException = ResourceUnavailableException;
75
+ class ConcurrentModificationException extends CodeConnectionsServiceException_1.CodeConnectionsServiceException {
76
+ constructor(opts) {
77
+ super({
78
+ name: "ConcurrentModificationException",
79
+ $fault: "client",
80
+ ...opts,
81
+ });
82
+ this.name = "ConcurrentModificationException";
83
+ this.$fault = "client";
84
+ Object.setPrototypeOf(this, ConcurrentModificationException.prototype);
85
+ this.Message = opts.Message;
86
+ }
87
+ }
88
+ exports.ConcurrentModificationException = ConcurrentModificationException;
89
+ class InternalServerException extends CodeConnectionsServiceException_1.CodeConnectionsServiceException {
90
+ constructor(opts) {
91
+ super({
92
+ name: "InternalServerException",
93
+ $fault: "server",
94
+ ...opts,
95
+ });
96
+ this.name = "InternalServerException";
97
+ this.$fault = "server";
98
+ Object.setPrototypeOf(this, InternalServerException.prototype);
99
+ this.Message = opts.Message;
100
+ }
101
+ }
102
+ exports.InternalServerException = InternalServerException;
103
+ class InvalidInputException extends CodeConnectionsServiceException_1.CodeConnectionsServiceException {
104
+ constructor(opts) {
105
+ super({
106
+ name: "InvalidInputException",
107
+ $fault: "client",
108
+ ...opts,
109
+ });
110
+ this.name = "InvalidInputException";
111
+ this.$fault = "client";
112
+ Object.setPrototypeOf(this, InvalidInputException.prototype);
113
+ this.Message = opts.Message;
114
+ }
115
+ }
116
+ exports.InvalidInputException = InvalidInputException;
117
+ class ResourceAlreadyExistsException extends CodeConnectionsServiceException_1.CodeConnectionsServiceException {
118
+ constructor(opts) {
119
+ super({
120
+ name: "ResourceAlreadyExistsException",
121
+ $fault: "client",
122
+ ...opts,
123
+ });
124
+ this.name = "ResourceAlreadyExistsException";
125
+ this.$fault = "client";
126
+ Object.setPrototypeOf(this, ResourceAlreadyExistsException.prototype);
127
+ this.Message = opts.Message;
128
+ }
129
+ }
130
+ exports.ResourceAlreadyExistsException = ResourceAlreadyExistsException;
131
+ class ThrottlingException extends CodeConnectionsServiceException_1.CodeConnectionsServiceException {
132
+ constructor(opts) {
133
+ super({
134
+ name: "ThrottlingException",
135
+ $fault: "client",
136
+ ...opts,
137
+ });
138
+ this.name = "ThrottlingException";
139
+ this.$fault = "client";
140
+ Object.setPrototypeOf(this, ThrottlingException.prototype);
141
+ this.Message = opts.Message;
142
+ }
143
+ }
144
+ exports.ThrottlingException = ThrottlingException;
145
+ exports.PublishDeploymentStatus = {
146
+ DISABLED: "DISABLED",
147
+ ENABLED: "ENABLED",
148
+ };
149
+ exports.SyncConfigurationType = {
150
+ CFN_STACK_SYNC: "CFN_STACK_SYNC",
151
+ };
152
+ exports.TriggerResourceUpdateOn = {
153
+ ANY_CHANGE: "ANY_CHANGE",
154
+ FILE_CHANGE: "FILE_CHANGE",
155
+ };
156
+ class SyncConfigurationStillExistsException extends CodeConnectionsServiceException_1.CodeConnectionsServiceException {
157
+ constructor(opts) {
158
+ super({
159
+ name: "SyncConfigurationStillExistsException",
160
+ $fault: "client",
161
+ ...opts,
162
+ });
163
+ this.name = "SyncConfigurationStillExistsException";
164
+ this.$fault = "client";
165
+ Object.setPrototypeOf(this, SyncConfigurationStillExistsException.prototype);
166
+ this.Message = opts.Message;
167
+ }
168
+ }
169
+ exports.SyncConfigurationStillExistsException = SyncConfigurationStillExistsException;
170
+ class UnsupportedProviderTypeException extends CodeConnectionsServiceException_1.CodeConnectionsServiceException {
171
+ constructor(opts) {
172
+ super({
173
+ name: "UnsupportedProviderTypeException",
174
+ $fault: "client",
175
+ ...opts,
176
+ });
177
+ this.name = "UnsupportedProviderTypeException";
178
+ this.$fault = "client";
179
+ Object.setPrototypeOf(this, UnsupportedProviderTypeException.prototype);
180
+ this.Message = opts.Message;
181
+ }
182
+ }
183
+ exports.UnsupportedProviderTypeException = UnsupportedProviderTypeException;
184
+ exports.ConnectionStatus = {
185
+ AVAILABLE: "AVAILABLE",
186
+ ERROR: "ERROR",
187
+ PENDING: "PENDING",
188
+ };
189
+ exports.RepositorySyncStatus = {
190
+ FAILED: "FAILED",
191
+ INITIATED: "INITIATED",
192
+ IN_PROGRESS: "IN_PROGRESS",
193
+ QUEUED: "QUEUED",
194
+ SUCCEEDED: "SUCCEEDED",
195
+ };
196
+ exports.ResourceSyncStatus = {
197
+ FAILED: "FAILED",
198
+ INITIATED: "INITIATED",
199
+ IN_PROGRESS: "IN_PROGRESS",
200
+ SUCCEEDED: "SUCCEEDED",
201
+ };
202
+ class ConflictException extends CodeConnectionsServiceException_1.CodeConnectionsServiceException {
203
+ constructor(opts) {
204
+ super({
205
+ name: "ConflictException",
206
+ $fault: "client",
207
+ ...opts,
208
+ });
209
+ this.name = "ConflictException";
210
+ this.$fault = "client";
211
+ Object.setPrototypeOf(this, ConflictException.prototype);
212
+ this.Message = opts.Message;
213
+ }
214
+ }
215
+ exports.ConflictException = ConflictException;
216
+ class UnsupportedOperationException extends CodeConnectionsServiceException_1.CodeConnectionsServiceException {
217
+ constructor(opts) {
218
+ super({
219
+ name: "UnsupportedOperationException",
220
+ $fault: "client",
221
+ ...opts,
222
+ });
223
+ this.name = "UnsupportedOperationException";
224
+ this.$fault = "client";
225
+ Object.setPrototypeOf(this, UnsupportedOperationException.prototype);
226
+ this.Message = opts.Message;
227
+ }
228
+ }
229
+ exports.UnsupportedOperationException = UnsupportedOperationException;
230
+ class ConditionalCheckFailedException extends CodeConnectionsServiceException_1.CodeConnectionsServiceException {
231
+ constructor(opts) {
232
+ super({
233
+ name: "ConditionalCheckFailedException",
234
+ $fault: "client",
235
+ ...opts,
236
+ });
237
+ this.name = "ConditionalCheckFailedException";
238
+ this.$fault = "client";
239
+ Object.setPrototypeOf(this, ConditionalCheckFailedException.prototype);
240
+ this.Message = opts.Message;
241
+ }
242
+ }
243
+ exports.ConditionalCheckFailedException = ConditionalCheckFailedException;
244
+ class UpdateOutOfSyncException extends CodeConnectionsServiceException_1.CodeConnectionsServiceException {
245
+ constructor(opts) {
246
+ super({
247
+ name: "UpdateOutOfSyncException",
248
+ $fault: "client",
249
+ ...opts,
250
+ });
251
+ this.name = "UpdateOutOfSyncException";
252
+ this.$fault = "client";
253
+ Object.setPrototypeOf(this, UpdateOutOfSyncException.prototype);
254
+ this.Message = opts.Message;
255
+ }
256
+ }
257
+ exports.UpdateOutOfSyncException = UpdateOutOfSyncException;
258
+ class RetryLatestCommitFailedException extends CodeConnectionsServiceException_1.CodeConnectionsServiceException {
259
+ constructor(opts) {
260
+ super({
261
+ name: "RetryLatestCommitFailedException",
262
+ $fault: "server",
263
+ ...opts,
264
+ });
265
+ this.name = "RetryLatestCommitFailedException";
266
+ this.$fault = "server";
267
+ Object.setPrototypeOf(this, RetryLatestCommitFailedException.prototype);
268
+ this.Message = opts.Message;
269
+ }
270
+ }
271
+ exports.RetryLatestCommitFailedException = RetryLatestCommitFailedException;
272
+ class SyncBlockerDoesNotExistException extends CodeConnectionsServiceException_1.CodeConnectionsServiceException {
273
+ constructor(opts) {
274
+ super({
275
+ name: "SyncBlockerDoesNotExistException",
276
+ $fault: "client",
277
+ ...opts,
278
+ });
279
+ this.name = "SyncBlockerDoesNotExistException";
280
+ this.$fault = "client";
281
+ Object.setPrototypeOf(this, SyncBlockerDoesNotExistException.prototype);
282
+ this.Message = opts.Message;
283
+ }
284
+ }
285
+ exports.SyncBlockerDoesNotExistException = SyncBlockerDoesNotExistException;
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,7 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.paginateListConnections = void 0;
4
+ const core_1 = require("@smithy/core");
5
+ const CodeConnectionsClient_1 = require("../CodeConnectionsClient");
6
+ const ListConnectionsCommand_1 = require("../commands/ListConnectionsCommand");
7
+ exports.paginateListConnections = (0, core_1.createPaginator)(CodeConnectionsClient_1.CodeConnectionsClient, ListConnectionsCommand_1.ListConnectionsCommand, "NextToken", "NextToken", "MaxResults");
@@ -0,0 +1,7 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.paginateListHosts = void 0;
4
+ const core_1 = require("@smithy/core");
5
+ const CodeConnectionsClient_1 = require("../CodeConnectionsClient");
6
+ const ListHostsCommand_1 = require("../commands/ListHostsCommand");
7
+ exports.paginateListHosts = (0, core_1.createPaginator)(CodeConnectionsClient_1.CodeConnectionsClient, ListHostsCommand_1.ListHostsCommand, "NextToken", "NextToken", "MaxResults");
@@ -0,0 +1,7 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.paginateListRepositoryLinks = void 0;
4
+ const core_1 = require("@smithy/core");
5
+ const CodeConnectionsClient_1 = require("../CodeConnectionsClient");
6
+ const ListRepositoryLinksCommand_1 = require("../commands/ListRepositoryLinksCommand");
7
+ exports.paginateListRepositoryLinks = (0, core_1.createPaginator)(CodeConnectionsClient_1.CodeConnectionsClient, ListRepositoryLinksCommand_1.ListRepositoryLinksCommand, "NextToken", "NextToken", "MaxResults");
@@ -0,0 +1,7 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.paginateListSyncConfigurations = void 0;
4
+ const core_1 = require("@smithy/core");
5
+ const CodeConnectionsClient_1 = require("../CodeConnectionsClient");
6
+ const ListSyncConfigurationsCommand_1 = require("../commands/ListSyncConfigurationsCommand");
7
+ exports.paginateListSyncConfigurations = (0, core_1.createPaginator)(CodeConnectionsClient_1.CodeConnectionsClient, ListSyncConfigurationsCommand_1.ListSyncConfigurationsCommand, "NextToken", "NextToken", "MaxResults");
@@ -0,0 +1,8 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const tslib_1 = require("tslib");
4
+ tslib_1.__exportStar(require("./Interfaces"), exports);
5
+ tslib_1.__exportStar(require("./ListConnectionsPaginator"), exports);
6
+ tslib_1.__exportStar(require("./ListHostsPaginator"), exports);
7
+ tslib_1.__exportStar(require("./ListRepositoryLinksPaginator"), exports);
8
+ tslib_1.__exportStar(require("./ListSyncConfigurationsPaginator"), exports);