@aws-sdk/client-codestar-connections 3.490.0 → 3.496.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 (45) hide show
  1. package/dist-cjs/CodeStarConnections.js +1 -65
  2. package/dist-cjs/CodeStarConnectionsClient.js +1 -43
  3. package/dist-cjs/commands/CreateConnectionCommand.js +1 -28
  4. package/dist-cjs/commands/CreateHostCommand.js +1 -28
  5. package/dist-cjs/commands/CreateRepositoryLinkCommand.js +1 -28
  6. package/dist-cjs/commands/CreateSyncConfigurationCommand.js +1 -28
  7. package/dist-cjs/commands/DeleteConnectionCommand.js +1 -28
  8. package/dist-cjs/commands/DeleteHostCommand.js +1 -28
  9. package/dist-cjs/commands/DeleteRepositoryLinkCommand.js +1 -28
  10. package/dist-cjs/commands/DeleteSyncConfigurationCommand.js +1 -28
  11. package/dist-cjs/commands/GetConnectionCommand.js +1 -28
  12. package/dist-cjs/commands/GetHostCommand.js +1 -28
  13. package/dist-cjs/commands/GetRepositoryLinkCommand.js +1 -28
  14. package/dist-cjs/commands/GetRepositorySyncStatusCommand.js +1 -28
  15. package/dist-cjs/commands/GetResourceSyncStatusCommand.js +1 -28
  16. package/dist-cjs/commands/GetSyncBlockerSummaryCommand.js +1 -28
  17. package/dist-cjs/commands/GetSyncConfigurationCommand.js +1 -28
  18. package/dist-cjs/commands/ListConnectionsCommand.js +1 -28
  19. package/dist-cjs/commands/ListHostsCommand.js +1 -28
  20. package/dist-cjs/commands/ListRepositoryLinksCommand.js +1 -28
  21. package/dist-cjs/commands/ListRepositorySyncDefinitionsCommand.js +1 -28
  22. package/dist-cjs/commands/ListSyncConfigurationsCommand.js +1 -28
  23. package/dist-cjs/commands/ListTagsForResourceCommand.js +1 -28
  24. package/dist-cjs/commands/TagResourceCommand.js +1 -28
  25. package/dist-cjs/commands/UntagResourceCommand.js +1 -28
  26. package/dist-cjs/commands/UpdateHostCommand.js +1 -28
  27. package/dist-cjs/commands/UpdateRepositoryLinkCommand.js +1 -28
  28. package/dist-cjs/commands/UpdateSyncBlockerCommand.js +1 -28
  29. package/dist-cjs/commands/UpdateSyncConfigurationCommand.js +1 -28
  30. package/dist-cjs/commands/index.js +1 -30
  31. package/dist-cjs/endpoint/EndpointParameters.js +1 -18
  32. package/dist-cjs/extensionConfiguration.js +1 -2
  33. package/dist-cjs/index.js +2709 -11
  34. package/dist-cjs/models/CodeStarConnectionsServiceException.js +1 -12
  35. package/dist-cjs/models/index.js +1 -4
  36. package/dist-cjs/models/models_0.js +1 -277
  37. package/dist-cjs/pagination/Interfaces.js +1 -2
  38. package/dist-cjs/pagination/ListConnectionsPaginator.js +1 -7
  39. package/dist-cjs/pagination/ListHostsPaginator.js +1 -7
  40. package/dist-cjs/pagination/ListRepositoryLinksPaginator.js +1 -7
  41. package/dist-cjs/pagination/ListSyncConfigurationsPaginator.js +1 -7
  42. package/dist-cjs/pagination/index.js +1 -8
  43. package/dist-cjs/protocols/Aws_json1_0.js +1 -1662
  44. package/dist-cjs/runtimeExtensions.js +1 -22
  45. package/package.json +40 -40
@@ -1,12 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.CodeStarConnectionsServiceException = 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 CodeStarConnectionsServiceException extends smithy_client_1.ServiceException {
7
- constructor(options) {
8
- super(options);
9
- Object.setPrototypeOf(this, CodeStarConnectionsServiceException.prototype);
10
- }
11
- }
12
- exports.CodeStarConnectionsServiceException = CodeStarConnectionsServiceException;
1
+ module.exports = require("../index.js");
@@ -1,4 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- const tslib_1 = require("tslib");
4
- tslib_1.__exportStar(require("./models_0"), exports);
1
+ module.exports = require("../index.js");
@@ -1,277 +1 @@
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.SyncConfigurationType = 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 CodeStarConnectionsServiceException_1 = require("./CodeStarConnectionsServiceException");
5
- class AccessDeniedException extends CodeStarConnectionsServiceException_1.CodeStarConnectionsServiceException {
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 CodeStarConnectionsServiceException_1.CodeStarConnectionsServiceException {
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 CodeStarConnectionsServiceException_1.CodeStarConnectionsServiceException {
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 CodeStarConnectionsServiceException_1.CodeStarConnectionsServiceException {
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 CodeStarConnectionsServiceException_1.CodeStarConnectionsServiceException {
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 CodeStarConnectionsServiceException_1.CodeStarConnectionsServiceException {
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 CodeStarConnectionsServiceException_1.CodeStarConnectionsServiceException {
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 CodeStarConnectionsServiceException_1.CodeStarConnectionsServiceException {
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 CodeStarConnectionsServiceException_1.CodeStarConnectionsServiceException {
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.SyncConfigurationType = {
146
- CFN_STACK_SYNC: "CFN_STACK_SYNC",
147
- };
148
- class SyncConfigurationStillExistsException extends CodeStarConnectionsServiceException_1.CodeStarConnectionsServiceException {
149
- constructor(opts) {
150
- super({
151
- name: "SyncConfigurationStillExistsException",
152
- $fault: "client",
153
- ...opts,
154
- });
155
- this.name = "SyncConfigurationStillExistsException";
156
- this.$fault = "client";
157
- Object.setPrototypeOf(this, SyncConfigurationStillExistsException.prototype);
158
- this.Message = opts.Message;
159
- }
160
- }
161
- exports.SyncConfigurationStillExistsException = SyncConfigurationStillExistsException;
162
- class UnsupportedProviderTypeException extends CodeStarConnectionsServiceException_1.CodeStarConnectionsServiceException {
163
- constructor(opts) {
164
- super({
165
- name: "UnsupportedProviderTypeException",
166
- $fault: "client",
167
- ...opts,
168
- });
169
- this.name = "UnsupportedProviderTypeException";
170
- this.$fault = "client";
171
- Object.setPrototypeOf(this, UnsupportedProviderTypeException.prototype);
172
- this.Message = opts.Message;
173
- }
174
- }
175
- exports.UnsupportedProviderTypeException = UnsupportedProviderTypeException;
176
- exports.ConnectionStatus = {
177
- AVAILABLE: "AVAILABLE",
178
- ERROR: "ERROR",
179
- PENDING: "PENDING",
180
- };
181
- exports.RepositorySyncStatus = {
182
- FAILED: "FAILED",
183
- INITIATED: "INITIATED",
184
- IN_PROGRESS: "IN_PROGRESS",
185
- QUEUED: "QUEUED",
186
- SUCCEEDED: "SUCCEEDED",
187
- };
188
- exports.ResourceSyncStatus = {
189
- FAILED: "FAILED",
190
- INITIATED: "INITIATED",
191
- IN_PROGRESS: "IN_PROGRESS",
192
- SUCCEEDED: "SUCCEEDED",
193
- };
194
- class ConflictException extends CodeStarConnectionsServiceException_1.CodeStarConnectionsServiceException {
195
- constructor(opts) {
196
- super({
197
- name: "ConflictException",
198
- $fault: "client",
199
- ...opts,
200
- });
201
- this.name = "ConflictException";
202
- this.$fault = "client";
203
- Object.setPrototypeOf(this, ConflictException.prototype);
204
- this.Message = opts.Message;
205
- }
206
- }
207
- exports.ConflictException = ConflictException;
208
- class UnsupportedOperationException extends CodeStarConnectionsServiceException_1.CodeStarConnectionsServiceException {
209
- constructor(opts) {
210
- super({
211
- name: "UnsupportedOperationException",
212
- $fault: "client",
213
- ...opts,
214
- });
215
- this.name = "UnsupportedOperationException";
216
- this.$fault = "client";
217
- Object.setPrototypeOf(this, UnsupportedOperationException.prototype);
218
- this.Message = opts.Message;
219
- }
220
- }
221
- exports.UnsupportedOperationException = UnsupportedOperationException;
222
- class ConditionalCheckFailedException extends CodeStarConnectionsServiceException_1.CodeStarConnectionsServiceException {
223
- constructor(opts) {
224
- super({
225
- name: "ConditionalCheckFailedException",
226
- $fault: "client",
227
- ...opts,
228
- });
229
- this.name = "ConditionalCheckFailedException";
230
- this.$fault = "client";
231
- Object.setPrototypeOf(this, ConditionalCheckFailedException.prototype);
232
- this.Message = opts.Message;
233
- }
234
- }
235
- exports.ConditionalCheckFailedException = ConditionalCheckFailedException;
236
- class UpdateOutOfSyncException extends CodeStarConnectionsServiceException_1.CodeStarConnectionsServiceException {
237
- constructor(opts) {
238
- super({
239
- name: "UpdateOutOfSyncException",
240
- $fault: "client",
241
- ...opts,
242
- });
243
- this.name = "UpdateOutOfSyncException";
244
- this.$fault = "client";
245
- Object.setPrototypeOf(this, UpdateOutOfSyncException.prototype);
246
- this.Message = opts.Message;
247
- }
248
- }
249
- exports.UpdateOutOfSyncException = UpdateOutOfSyncException;
250
- class RetryLatestCommitFailedException extends CodeStarConnectionsServiceException_1.CodeStarConnectionsServiceException {
251
- constructor(opts) {
252
- super({
253
- name: "RetryLatestCommitFailedException",
254
- $fault: "server",
255
- ...opts,
256
- });
257
- this.name = "RetryLatestCommitFailedException";
258
- this.$fault = "server";
259
- Object.setPrototypeOf(this, RetryLatestCommitFailedException.prototype);
260
- this.Message = opts.Message;
261
- }
262
- }
263
- exports.RetryLatestCommitFailedException = RetryLatestCommitFailedException;
264
- class SyncBlockerDoesNotExistException extends CodeStarConnectionsServiceException_1.CodeStarConnectionsServiceException {
265
- constructor(opts) {
266
- super({
267
- name: "SyncBlockerDoesNotExistException",
268
- $fault: "client",
269
- ...opts,
270
- });
271
- this.name = "SyncBlockerDoesNotExistException";
272
- this.$fault = "client";
273
- Object.setPrototypeOf(this, SyncBlockerDoesNotExistException.prototype);
274
- this.Message = opts.Message;
275
- }
276
- }
277
- exports.SyncBlockerDoesNotExistException = SyncBlockerDoesNotExistException;
1
+ module.exports = require("../index.js");
@@ -1,2 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
1
+ module.exports = require("../index.js");
@@ -1,7 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.paginateListConnections = void 0;
4
- const core_1 = require("@smithy/core");
5
- const CodeStarConnectionsClient_1 = require("../CodeStarConnectionsClient");
6
- const ListConnectionsCommand_1 = require("../commands/ListConnectionsCommand");
7
- exports.paginateListConnections = (0, core_1.createPaginator)(CodeStarConnectionsClient_1.CodeStarConnectionsClient, ListConnectionsCommand_1.ListConnectionsCommand, "NextToken", "NextToken", "MaxResults");
1
+ module.exports = require("../index.js");
@@ -1,7 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.paginateListHosts = void 0;
4
- const core_1 = require("@smithy/core");
5
- const CodeStarConnectionsClient_1 = require("../CodeStarConnectionsClient");
6
- const ListHostsCommand_1 = require("../commands/ListHostsCommand");
7
- exports.paginateListHosts = (0, core_1.createPaginator)(CodeStarConnectionsClient_1.CodeStarConnectionsClient, ListHostsCommand_1.ListHostsCommand, "NextToken", "NextToken", "MaxResults");
1
+ module.exports = require("../index.js");
@@ -1,7 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.paginateListRepositoryLinks = void 0;
4
- const core_1 = require("@smithy/core");
5
- const CodeStarConnectionsClient_1 = require("../CodeStarConnectionsClient");
6
- const ListRepositoryLinksCommand_1 = require("../commands/ListRepositoryLinksCommand");
7
- exports.paginateListRepositoryLinks = (0, core_1.createPaginator)(CodeStarConnectionsClient_1.CodeStarConnectionsClient, ListRepositoryLinksCommand_1.ListRepositoryLinksCommand, "NextToken", "NextToken", "MaxResults");
1
+ module.exports = require("../index.js");
@@ -1,7 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.paginateListSyncConfigurations = void 0;
4
- const core_1 = require("@smithy/core");
5
- const CodeStarConnectionsClient_1 = require("../CodeStarConnectionsClient");
6
- const ListSyncConfigurationsCommand_1 = require("../commands/ListSyncConfigurationsCommand");
7
- exports.paginateListSyncConfigurations = (0, core_1.createPaginator)(CodeStarConnectionsClient_1.CodeStarConnectionsClient, ListSyncConfigurationsCommand_1.ListSyncConfigurationsCommand, "NextToken", "NextToken", "MaxResults");
1
+ module.exports = require("../index.js");
@@ -1,8 +1 @@
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);
1
+ module.exports = require("../index.js");