@aws-sdk/client-codestar-connections 3.933.0 → 3.935.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.
package/dist-cjs/index.js CHANGED
@@ -131,20 +131,6 @@ let AccessDeniedException$1 = class AccessDeniedException extends CodeStarConnec
131
131
  this.Message = opts.Message;
132
132
  }
133
133
  };
134
- const BlockerStatus = {
135
- ACTIVE: "ACTIVE",
136
- RESOLVED: "RESOLVED",
137
- };
138
- const BlockerType = {
139
- AUTOMATED: "AUTOMATED",
140
- };
141
- const ProviderType = {
142
- BITBUCKET: "Bitbucket",
143
- GITHUB: "GitHub",
144
- GITHUB_ENTERPRISE_SERVER: "GitHubEnterpriseServer",
145
- GITLAB: "GitLab",
146
- GITLAB_SELF_MANAGED: "GitLabSelfManaged",
147
- };
148
134
  let LimitExceededException$1 = class LimitExceededException extends CodeStarConnectionsServiceException$1 {
149
135
  name = "LimitExceededException";
150
136
  $fault = "client";
@@ -257,17 +243,6 @@ let ThrottlingException$1 = class ThrottlingException extends CodeStarConnection
257
243
  this.Message = opts.Message;
258
244
  }
259
245
  };
260
- const PublishDeploymentStatus = {
261
- DISABLED: "DISABLED",
262
- ENABLED: "ENABLED",
263
- };
264
- const SyncConfigurationType = {
265
- CFN_STACK_SYNC: "CFN_STACK_SYNC",
266
- };
267
- const TriggerResourceUpdateOn = {
268
- ANY_CHANGE: "ANY_CHANGE",
269
- FILE_CHANGE: "FILE_CHANGE",
270
- };
271
246
  let SyncConfigurationStillExistsException$1 = class SyncConfigurationStillExistsException extends CodeStarConnectionsServiceException$1 {
272
247
  name = "SyncConfigurationStillExistsException";
273
248
  $fault = "client";
@@ -296,24 +271,6 @@ let UnsupportedProviderTypeException$1 = class UnsupportedProviderTypeException
296
271
  this.Message = opts.Message;
297
272
  }
298
273
  };
299
- const ConnectionStatus = {
300
- AVAILABLE: "AVAILABLE",
301
- ERROR: "ERROR",
302
- PENDING: "PENDING",
303
- };
304
- const RepositorySyncStatus = {
305
- FAILED: "FAILED",
306
- INITIATED: "INITIATED",
307
- IN_PROGRESS: "IN_PROGRESS",
308
- QUEUED: "QUEUED",
309
- SUCCEEDED: "SUCCEEDED",
310
- };
311
- const ResourceSyncStatus = {
312
- FAILED: "FAILED",
313
- INITIATED: "INITIATED",
314
- IN_PROGRESS: "IN_PROGRESS",
315
- SUCCEEDED: "SUCCEEDED",
316
- };
317
274
  let ConflictException$1 = class ConflictException extends CodeStarConnectionsServiceException$1 {
318
275
  name = "ConflictException";
319
276
  $fault = "client";
@@ -1543,6 +1500,50 @@ const paginateListRepositoryLinks = core.createPaginator(CodeStarConnectionsClie
1543
1500
 
1544
1501
  const paginateListSyncConfigurations = core.createPaginator(CodeStarConnectionsClient, ListSyncConfigurationsCommand, "NextToken", "NextToken", "MaxResults");
1545
1502
 
1503
+ const BlockerStatus = {
1504
+ ACTIVE: "ACTIVE",
1505
+ RESOLVED: "RESOLVED",
1506
+ };
1507
+ const BlockerType = {
1508
+ AUTOMATED: "AUTOMATED",
1509
+ };
1510
+ const ProviderType = {
1511
+ BITBUCKET: "Bitbucket",
1512
+ GITHUB: "GitHub",
1513
+ GITHUB_ENTERPRISE_SERVER: "GitHubEnterpriseServer",
1514
+ GITLAB: "GitLab",
1515
+ GITLAB_SELF_MANAGED: "GitLabSelfManaged",
1516
+ };
1517
+ const PublishDeploymentStatus = {
1518
+ DISABLED: "DISABLED",
1519
+ ENABLED: "ENABLED",
1520
+ };
1521
+ const SyncConfigurationType = {
1522
+ CFN_STACK_SYNC: "CFN_STACK_SYNC",
1523
+ };
1524
+ const TriggerResourceUpdateOn = {
1525
+ ANY_CHANGE: "ANY_CHANGE",
1526
+ FILE_CHANGE: "FILE_CHANGE",
1527
+ };
1528
+ const ConnectionStatus = {
1529
+ AVAILABLE: "AVAILABLE",
1530
+ ERROR: "ERROR",
1531
+ PENDING: "PENDING",
1532
+ };
1533
+ const RepositorySyncStatus = {
1534
+ FAILED: "FAILED",
1535
+ INITIATED: "INITIATED",
1536
+ IN_PROGRESS: "IN_PROGRESS",
1537
+ QUEUED: "QUEUED",
1538
+ SUCCEEDED: "SUCCEEDED",
1539
+ };
1540
+ const ResourceSyncStatus = {
1541
+ FAILED: "FAILED",
1542
+ INITIATED: "INITIATED",
1543
+ IN_PROGRESS: "IN_PROGRESS",
1544
+ SUCCEEDED: "SUCCEEDED",
1545
+ };
1546
+
1546
1547
  Object.defineProperty(exports, "$Command", {
1547
1548
  enumerable: true,
1548
1549
  get: function () { return smithyClient.Command; }
package/dist-es/index.js CHANGED
@@ -2,5 +2,6 @@ export * from "./CodeStarConnectionsClient";
2
2
  export * from "./CodeStarConnections";
3
3
  export * from "./commands";
4
4
  export * from "./pagination";
5
- export * from "./models";
5
+ export * from "./models/enums";
6
+ export * from "./models/errors";
6
7
  export { CodeStarConnectionsServiceException } from "./models/CodeStarConnectionsServiceException";
@@ -0,0 +1,43 @@
1
+ export const BlockerStatus = {
2
+ ACTIVE: "ACTIVE",
3
+ RESOLVED: "RESOLVED",
4
+ };
5
+ export const BlockerType = {
6
+ AUTOMATED: "AUTOMATED",
7
+ };
8
+ export const ProviderType = {
9
+ BITBUCKET: "Bitbucket",
10
+ GITHUB: "GitHub",
11
+ GITHUB_ENTERPRISE_SERVER: "GitHubEnterpriseServer",
12
+ GITLAB: "GitLab",
13
+ GITLAB_SELF_MANAGED: "GitLabSelfManaged",
14
+ };
15
+ export const PublishDeploymentStatus = {
16
+ DISABLED: "DISABLED",
17
+ ENABLED: "ENABLED",
18
+ };
19
+ export const SyncConfigurationType = {
20
+ CFN_STACK_SYNC: "CFN_STACK_SYNC",
21
+ };
22
+ export const TriggerResourceUpdateOn = {
23
+ ANY_CHANGE: "ANY_CHANGE",
24
+ FILE_CHANGE: "FILE_CHANGE",
25
+ };
26
+ export const ConnectionStatus = {
27
+ AVAILABLE: "AVAILABLE",
28
+ ERROR: "ERROR",
29
+ PENDING: "PENDING",
30
+ };
31
+ export const RepositorySyncStatus = {
32
+ FAILED: "FAILED",
33
+ INITIATED: "INITIATED",
34
+ IN_PROGRESS: "IN_PROGRESS",
35
+ QUEUED: "QUEUED",
36
+ SUCCEEDED: "SUCCEEDED",
37
+ };
38
+ export const ResourceSyncStatus = {
39
+ FAILED: "FAILED",
40
+ INITIATED: "INITIATED",
41
+ IN_PROGRESS: "IN_PROGRESS",
42
+ SUCCEEDED: "SUCCEEDED",
43
+ };
@@ -0,0 +1,239 @@
1
+ import { CodeStarConnectionsServiceException as __BaseException } from "./CodeStarConnectionsServiceException";
2
+ export class AccessDeniedException extends __BaseException {
3
+ name = "AccessDeniedException";
4
+ $fault = "client";
5
+ Message;
6
+ constructor(opts) {
7
+ super({
8
+ name: "AccessDeniedException",
9
+ $fault: "client",
10
+ ...opts,
11
+ });
12
+ Object.setPrototypeOf(this, AccessDeniedException.prototype);
13
+ this.Message = opts.Message;
14
+ }
15
+ }
16
+ export class LimitExceededException extends __BaseException {
17
+ name = "LimitExceededException";
18
+ $fault = "client";
19
+ Message;
20
+ constructor(opts) {
21
+ super({
22
+ name: "LimitExceededException",
23
+ $fault: "client",
24
+ ...opts,
25
+ });
26
+ Object.setPrototypeOf(this, LimitExceededException.prototype);
27
+ this.Message = opts.Message;
28
+ }
29
+ }
30
+ export class ResourceNotFoundException extends __BaseException {
31
+ name = "ResourceNotFoundException";
32
+ $fault = "client";
33
+ Message;
34
+ constructor(opts) {
35
+ super({
36
+ name: "ResourceNotFoundException",
37
+ $fault: "client",
38
+ ...opts,
39
+ });
40
+ Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
41
+ this.Message = opts.Message;
42
+ }
43
+ }
44
+ export class ResourceUnavailableException extends __BaseException {
45
+ name = "ResourceUnavailableException";
46
+ $fault = "client";
47
+ Message;
48
+ constructor(opts) {
49
+ super({
50
+ name: "ResourceUnavailableException",
51
+ $fault: "client",
52
+ ...opts,
53
+ });
54
+ Object.setPrototypeOf(this, ResourceUnavailableException.prototype);
55
+ this.Message = opts.Message;
56
+ }
57
+ }
58
+ export class ConcurrentModificationException extends __BaseException {
59
+ name = "ConcurrentModificationException";
60
+ $fault = "client";
61
+ Message;
62
+ constructor(opts) {
63
+ super({
64
+ name: "ConcurrentModificationException",
65
+ $fault: "client",
66
+ ...opts,
67
+ });
68
+ Object.setPrototypeOf(this, ConcurrentModificationException.prototype);
69
+ this.Message = opts.Message;
70
+ }
71
+ }
72
+ export class InternalServerException extends __BaseException {
73
+ name = "InternalServerException";
74
+ $fault = "server";
75
+ Message;
76
+ constructor(opts) {
77
+ super({
78
+ name: "InternalServerException",
79
+ $fault: "server",
80
+ ...opts,
81
+ });
82
+ Object.setPrototypeOf(this, InternalServerException.prototype);
83
+ this.Message = opts.Message;
84
+ }
85
+ }
86
+ export class InvalidInputException extends __BaseException {
87
+ name = "InvalidInputException";
88
+ $fault = "client";
89
+ Message;
90
+ constructor(opts) {
91
+ super({
92
+ name: "InvalidInputException",
93
+ $fault: "client",
94
+ ...opts,
95
+ });
96
+ Object.setPrototypeOf(this, InvalidInputException.prototype);
97
+ this.Message = opts.Message;
98
+ }
99
+ }
100
+ export class ResourceAlreadyExistsException extends __BaseException {
101
+ name = "ResourceAlreadyExistsException";
102
+ $fault = "client";
103
+ Message;
104
+ constructor(opts) {
105
+ super({
106
+ name: "ResourceAlreadyExistsException",
107
+ $fault: "client",
108
+ ...opts,
109
+ });
110
+ Object.setPrototypeOf(this, ResourceAlreadyExistsException.prototype);
111
+ this.Message = opts.Message;
112
+ }
113
+ }
114
+ export class ThrottlingException extends __BaseException {
115
+ name = "ThrottlingException";
116
+ $fault = "client";
117
+ Message;
118
+ constructor(opts) {
119
+ super({
120
+ name: "ThrottlingException",
121
+ $fault: "client",
122
+ ...opts,
123
+ });
124
+ Object.setPrototypeOf(this, ThrottlingException.prototype);
125
+ this.Message = opts.Message;
126
+ }
127
+ }
128
+ export class SyncConfigurationStillExistsException extends __BaseException {
129
+ name = "SyncConfigurationStillExistsException";
130
+ $fault = "client";
131
+ Message;
132
+ constructor(opts) {
133
+ super({
134
+ name: "SyncConfigurationStillExistsException",
135
+ $fault: "client",
136
+ ...opts,
137
+ });
138
+ Object.setPrototypeOf(this, SyncConfigurationStillExistsException.prototype);
139
+ this.Message = opts.Message;
140
+ }
141
+ }
142
+ export class UnsupportedProviderTypeException extends __BaseException {
143
+ name = "UnsupportedProviderTypeException";
144
+ $fault = "client";
145
+ Message;
146
+ constructor(opts) {
147
+ super({
148
+ name: "UnsupportedProviderTypeException",
149
+ $fault: "client",
150
+ ...opts,
151
+ });
152
+ Object.setPrototypeOf(this, UnsupportedProviderTypeException.prototype);
153
+ this.Message = opts.Message;
154
+ }
155
+ }
156
+ export class ConflictException extends __BaseException {
157
+ name = "ConflictException";
158
+ $fault = "client";
159
+ Message;
160
+ constructor(opts) {
161
+ super({
162
+ name: "ConflictException",
163
+ $fault: "client",
164
+ ...opts,
165
+ });
166
+ Object.setPrototypeOf(this, ConflictException.prototype);
167
+ this.Message = opts.Message;
168
+ }
169
+ }
170
+ export class UnsupportedOperationException extends __BaseException {
171
+ name = "UnsupportedOperationException";
172
+ $fault = "client";
173
+ Message;
174
+ constructor(opts) {
175
+ super({
176
+ name: "UnsupportedOperationException",
177
+ $fault: "client",
178
+ ...opts,
179
+ });
180
+ Object.setPrototypeOf(this, UnsupportedOperationException.prototype);
181
+ this.Message = opts.Message;
182
+ }
183
+ }
184
+ export class ConditionalCheckFailedException extends __BaseException {
185
+ name = "ConditionalCheckFailedException";
186
+ $fault = "client";
187
+ Message;
188
+ constructor(opts) {
189
+ super({
190
+ name: "ConditionalCheckFailedException",
191
+ $fault: "client",
192
+ ...opts,
193
+ });
194
+ Object.setPrototypeOf(this, ConditionalCheckFailedException.prototype);
195
+ this.Message = opts.Message;
196
+ }
197
+ }
198
+ export class UpdateOutOfSyncException extends __BaseException {
199
+ name = "UpdateOutOfSyncException";
200
+ $fault = "client";
201
+ Message;
202
+ constructor(opts) {
203
+ super({
204
+ name: "UpdateOutOfSyncException",
205
+ $fault: "client",
206
+ ...opts,
207
+ });
208
+ Object.setPrototypeOf(this, UpdateOutOfSyncException.prototype);
209
+ this.Message = opts.Message;
210
+ }
211
+ }
212
+ export class RetryLatestCommitFailedException extends __BaseException {
213
+ name = "RetryLatestCommitFailedException";
214
+ $fault = "server";
215
+ Message;
216
+ constructor(opts) {
217
+ super({
218
+ name: "RetryLatestCommitFailedException",
219
+ $fault: "server",
220
+ ...opts,
221
+ });
222
+ Object.setPrototypeOf(this, RetryLatestCommitFailedException.prototype);
223
+ this.Message = opts.Message;
224
+ }
225
+ }
226
+ export class SyncBlockerDoesNotExistException extends __BaseException {
227
+ name = "SyncBlockerDoesNotExistException";
228
+ $fault = "client";
229
+ Message;
230
+ constructor(opts) {
231
+ super({
232
+ name: "SyncBlockerDoesNotExistException",
233
+ $fault: "client",
234
+ ...opts,
235
+ });
236
+ Object.setPrototypeOf(this, SyncBlockerDoesNotExistException.prototype);
237
+ this.Message = opts.Message;
238
+ }
239
+ }
@@ -1,282 +1 @@
1
- import { CodeStarConnectionsServiceException as __BaseException } from "./CodeStarConnectionsServiceException";
2
- export class AccessDeniedException extends __BaseException {
3
- name = "AccessDeniedException";
4
- $fault = "client";
5
- Message;
6
- constructor(opts) {
7
- super({
8
- name: "AccessDeniedException",
9
- $fault: "client",
10
- ...opts,
11
- });
12
- Object.setPrototypeOf(this, AccessDeniedException.prototype);
13
- this.Message = opts.Message;
14
- }
15
- }
16
- export const BlockerStatus = {
17
- ACTIVE: "ACTIVE",
18
- RESOLVED: "RESOLVED",
19
- };
20
- export const BlockerType = {
21
- AUTOMATED: "AUTOMATED",
22
- };
23
- export const ProviderType = {
24
- BITBUCKET: "Bitbucket",
25
- GITHUB: "GitHub",
26
- GITHUB_ENTERPRISE_SERVER: "GitHubEnterpriseServer",
27
- GITLAB: "GitLab",
28
- GITLAB_SELF_MANAGED: "GitLabSelfManaged",
29
- };
30
- export class LimitExceededException extends __BaseException {
31
- name = "LimitExceededException";
32
- $fault = "client";
33
- Message;
34
- constructor(opts) {
35
- super({
36
- name: "LimitExceededException",
37
- $fault: "client",
38
- ...opts,
39
- });
40
- Object.setPrototypeOf(this, LimitExceededException.prototype);
41
- this.Message = opts.Message;
42
- }
43
- }
44
- export class ResourceNotFoundException extends __BaseException {
45
- name = "ResourceNotFoundException";
46
- $fault = "client";
47
- Message;
48
- constructor(opts) {
49
- super({
50
- name: "ResourceNotFoundException",
51
- $fault: "client",
52
- ...opts,
53
- });
54
- Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
55
- this.Message = opts.Message;
56
- }
57
- }
58
- export class ResourceUnavailableException extends __BaseException {
59
- name = "ResourceUnavailableException";
60
- $fault = "client";
61
- Message;
62
- constructor(opts) {
63
- super({
64
- name: "ResourceUnavailableException",
65
- $fault: "client",
66
- ...opts,
67
- });
68
- Object.setPrototypeOf(this, ResourceUnavailableException.prototype);
69
- this.Message = opts.Message;
70
- }
71
- }
72
- export class ConcurrentModificationException extends __BaseException {
73
- name = "ConcurrentModificationException";
74
- $fault = "client";
75
- Message;
76
- constructor(opts) {
77
- super({
78
- name: "ConcurrentModificationException",
79
- $fault: "client",
80
- ...opts,
81
- });
82
- Object.setPrototypeOf(this, ConcurrentModificationException.prototype);
83
- this.Message = opts.Message;
84
- }
85
- }
86
- export class InternalServerException extends __BaseException {
87
- name = "InternalServerException";
88
- $fault = "server";
89
- Message;
90
- constructor(opts) {
91
- super({
92
- name: "InternalServerException",
93
- $fault: "server",
94
- ...opts,
95
- });
96
- Object.setPrototypeOf(this, InternalServerException.prototype);
97
- this.Message = opts.Message;
98
- }
99
- }
100
- export class InvalidInputException extends __BaseException {
101
- name = "InvalidInputException";
102
- $fault = "client";
103
- Message;
104
- constructor(opts) {
105
- super({
106
- name: "InvalidInputException",
107
- $fault: "client",
108
- ...opts,
109
- });
110
- Object.setPrototypeOf(this, InvalidInputException.prototype);
111
- this.Message = opts.Message;
112
- }
113
- }
114
- export class ResourceAlreadyExistsException extends __BaseException {
115
- name = "ResourceAlreadyExistsException";
116
- $fault = "client";
117
- Message;
118
- constructor(opts) {
119
- super({
120
- name: "ResourceAlreadyExistsException",
121
- $fault: "client",
122
- ...opts,
123
- });
124
- Object.setPrototypeOf(this, ResourceAlreadyExistsException.prototype);
125
- this.Message = opts.Message;
126
- }
127
- }
128
- export class ThrottlingException extends __BaseException {
129
- name = "ThrottlingException";
130
- $fault = "client";
131
- Message;
132
- constructor(opts) {
133
- super({
134
- name: "ThrottlingException",
135
- $fault: "client",
136
- ...opts,
137
- });
138
- Object.setPrototypeOf(this, ThrottlingException.prototype);
139
- this.Message = opts.Message;
140
- }
141
- }
142
- export const PublishDeploymentStatus = {
143
- DISABLED: "DISABLED",
144
- ENABLED: "ENABLED",
145
- };
146
- export const SyncConfigurationType = {
147
- CFN_STACK_SYNC: "CFN_STACK_SYNC",
148
- };
149
- export const TriggerResourceUpdateOn = {
150
- ANY_CHANGE: "ANY_CHANGE",
151
- FILE_CHANGE: "FILE_CHANGE",
152
- };
153
- export class SyncConfigurationStillExistsException extends __BaseException {
154
- name = "SyncConfigurationStillExistsException";
155
- $fault = "client";
156
- Message;
157
- constructor(opts) {
158
- super({
159
- name: "SyncConfigurationStillExistsException",
160
- $fault: "client",
161
- ...opts,
162
- });
163
- Object.setPrototypeOf(this, SyncConfigurationStillExistsException.prototype);
164
- this.Message = opts.Message;
165
- }
166
- }
167
- export class UnsupportedProviderTypeException extends __BaseException {
168
- name = "UnsupportedProviderTypeException";
169
- $fault = "client";
170
- Message;
171
- constructor(opts) {
172
- super({
173
- name: "UnsupportedProviderTypeException",
174
- $fault: "client",
175
- ...opts,
176
- });
177
- Object.setPrototypeOf(this, UnsupportedProviderTypeException.prototype);
178
- this.Message = opts.Message;
179
- }
180
- }
181
- export const ConnectionStatus = {
182
- AVAILABLE: "AVAILABLE",
183
- ERROR: "ERROR",
184
- PENDING: "PENDING",
185
- };
186
- export const RepositorySyncStatus = {
187
- FAILED: "FAILED",
188
- INITIATED: "INITIATED",
189
- IN_PROGRESS: "IN_PROGRESS",
190
- QUEUED: "QUEUED",
191
- SUCCEEDED: "SUCCEEDED",
192
- };
193
- export const ResourceSyncStatus = {
194
- FAILED: "FAILED",
195
- INITIATED: "INITIATED",
196
- IN_PROGRESS: "IN_PROGRESS",
197
- SUCCEEDED: "SUCCEEDED",
198
- };
199
- export class ConflictException extends __BaseException {
200
- name = "ConflictException";
201
- $fault = "client";
202
- Message;
203
- constructor(opts) {
204
- super({
205
- name: "ConflictException",
206
- $fault: "client",
207
- ...opts,
208
- });
209
- Object.setPrototypeOf(this, ConflictException.prototype);
210
- this.Message = opts.Message;
211
- }
212
- }
213
- export class UnsupportedOperationException extends __BaseException {
214
- name = "UnsupportedOperationException";
215
- $fault = "client";
216
- Message;
217
- constructor(opts) {
218
- super({
219
- name: "UnsupportedOperationException",
220
- $fault: "client",
221
- ...opts,
222
- });
223
- Object.setPrototypeOf(this, UnsupportedOperationException.prototype);
224
- this.Message = opts.Message;
225
- }
226
- }
227
- export class ConditionalCheckFailedException extends __BaseException {
228
- name = "ConditionalCheckFailedException";
229
- $fault = "client";
230
- Message;
231
- constructor(opts) {
232
- super({
233
- name: "ConditionalCheckFailedException",
234
- $fault: "client",
235
- ...opts,
236
- });
237
- Object.setPrototypeOf(this, ConditionalCheckFailedException.prototype);
238
- this.Message = opts.Message;
239
- }
240
- }
241
- export class UpdateOutOfSyncException extends __BaseException {
242
- name = "UpdateOutOfSyncException";
243
- $fault = "client";
244
- Message;
245
- constructor(opts) {
246
- super({
247
- name: "UpdateOutOfSyncException",
248
- $fault: "client",
249
- ...opts,
250
- });
251
- Object.setPrototypeOf(this, UpdateOutOfSyncException.prototype);
252
- this.Message = opts.Message;
253
- }
254
- }
255
- export class RetryLatestCommitFailedException extends __BaseException {
256
- name = "RetryLatestCommitFailedException";
257
- $fault = "server";
258
- Message;
259
- constructor(opts) {
260
- super({
261
- name: "RetryLatestCommitFailedException",
262
- $fault: "server",
263
- ...opts,
264
- });
265
- Object.setPrototypeOf(this, RetryLatestCommitFailedException.prototype);
266
- this.Message = opts.Message;
267
- }
268
- }
269
- export class SyncBlockerDoesNotExistException extends __BaseException {
270
- name = "SyncBlockerDoesNotExistException";
271
- $fault = "client";
272
- Message;
273
- constructor(opts) {
274
- super({
275
- name: "SyncBlockerDoesNotExistException",
276
- $fault: "client",
277
- ...opts,
278
- });
279
- Object.setPrototypeOf(this, SyncBlockerDoesNotExistException.prototype);
280
- this.Message = opts.Message;
281
- }
282
- }
1
+ export {};
@@ -193,7 +193,7 @@ const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.codestarconnections";
193
193
  const n0 = "com.amazonaws.codestarconnections";
194
194
  import { TypeRegistry } from "@smithy/core/schema";
195
195
  import { CodeStarConnectionsServiceException as __CodeStarConnectionsServiceException } from "../models/CodeStarConnectionsServiceException";
196
- import { AccessDeniedException as __AccessDeniedException, ConcurrentModificationException as __ConcurrentModificationException, ConditionalCheckFailedException as __ConditionalCheckFailedException, ConflictException as __ConflictException, InternalServerException as __InternalServerException, InvalidInputException as __InvalidInputException, LimitExceededException as __LimitExceededException, ResourceAlreadyExistsException as __ResourceAlreadyExistsException, ResourceNotFoundException as __ResourceNotFoundException, ResourceUnavailableException as __ResourceUnavailableException, RetryLatestCommitFailedException as __RetryLatestCommitFailedException, SyncBlockerDoesNotExistException as __SyncBlockerDoesNotExistException, SyncConfigurationStillExistsException as __SyncConfigurationStillExistsException, ThrottlingException as __ThrottlingException, UnsupportedOperationException as __UnsupportedOperationException, UnsupportedProviderTypeException as __UnsupportedProviderTypeException, UpdateOutOfSyncException as __UpdateOutOfSyncException, } from "../models/index";
196
+ import { AccessDeniedException as __AccessDeniedException, ConcurrentModificationException as __ConcurrentModificationException, ConditionalCheckFailedException as __ConditionalCheckFailedException, ConflictException as __ConflictException, InternalServerException as __InternalServerException, InvalidInputException as __InvalidInputException, LimitExceededException as __LimitExceededException, ResourceAlreadyExistsException as __ResourceAlreadyExistsException, ResourceNotFoundException as __ResourceNotFoundException, ResourceUnavailableException as __ResourceUnavailableException, RetryLatestCommitFailedException as __RetryLatestCommitFailedException, SyncBlockerDoesNotExistException as __SyncBlockerDoesNotExistException, SyncConfigurationStillExistsException as __SyncConfigurationStillExistsException, ThrottlingException as __ThrottlingException, UnsupportedOperationException as __UnsupportedOperationException, UnsupportedProviderTypeException as __UnsupportedProviderTypeException, UpdateOutOfSyncException as __UpdateOutOfSyncException, } from "../models/errors";
197
197
  export var AccessDeniedException = [
198
198
  -3,
199
199
  n0,