@aws-sdk/client-codeconnections 3.986.0 → 3.988.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
@@ -15,6 +15,9 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
15
15
  var runtimeConfig = require('./runtimeConfig');
16
16
  var regionConfigResolver = require('@aws-sdk/region-config-resolver');
17
17
  var protocolHttp = require('@smithy/protocol-http');
18
+ var schemas_0 = require('./schemas/schemas_0');
19
+ var errors = require('./models/errors');
20
+ var CodeConnectionsServiceException = require('./models/CodeConnectionsServiceException');
18
21
 
19
22
  const resolveClientEndpointParameters = (options) => {
20
23
  return Object.assign(options, {
@@ -110,1007 +113,6 @@ class CodeConnectionsClient extends smithyClient.Client {
110
113
  }
111
114
  }
112
115
 
113
- class CodeConnectionsServiceException extends smithyClient.ServiceException {
114
- constructor(options) {
115
- super(options);
116
- Object.setPrototypeOf(this, CodeConnectionsServiceException.prototype);
117
- }
118
- }
119
-
120
- class AccessDeniedException extends CodeConnectionsServiceException {
121
- name = "AccessDeniedException";
122
- $fault = "client";
123
- Message;
124
- constructor(opts) {
125
- super({
126
- name: "AccessDeniedException",
127
- $fault: "client",
128
- ...opts,
129
- });
130
- Object.setPrototypeOf(this, AccessDeniedException.prototype);
131
- this.Message = opts.Message;
132
- }
133
- }
134
- class LimitExceededException extends CodeConnectionsServiceException {
135
- name = "LimitExceededException";
136
- $fault = "client";
137
- Message;
138
- constructor(opts) {
139
- super({
140
- name: "LimitExceededException",
141
- $fault: "client",
142
- ...opts,
143
- });
144
- Object.setPrototypeOf(this, LimitExceededException.prototype);
145
- this.Message = opts.Message;
146
- }
147
- }
148
- class ResourceNotFoundException extends CodeConnectionsServiceException {
149
- name = "ResourceNotFoundException";
150
- $fault = "client";
151
- Message;
152
- constructor(opts) {
153
- super({
154
- name: "ResourceNotFoundException",
155
- $fault: "client",
156
- ...opts,
157
- });
158
- Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
159
- this.Message = opts.Message;
160
- }
161
- }
162
- class ResourceUnavailableException extends CodeConnectionsServiceException {
163
- name = "ResourceUnavailableException";
164
- $fault = "client";
165
- Message;
166
- constructor(opts) {
167
- super({
168
- name: "ResourceUnavailableException",
169
- $fault: "client",
170
- ...opts,
171
- });
172
- Object.setPrototypeOf(this, ResourceUnavailableException.prototype);
173
- this.Message = opts.Message;
174
- }
175
- }
176
- class ConcurrentModificationException extends CodeConnectionsServiceException {
177
- name = "ConcurrentModificationException";
178
- $fault = "client";
179
- Message;
180
- constructor(opts) {
181
- super({
182
- name: "ConcurrentModificationException",
183
- $fault: "client",
184
- ...opts,
185
- });
186
- Object.setPrototypeOf(this, ConcurrentModificationException.prototype);
187
- this.Message = opts.Message;
188
- }
189
- }
190
- class InternalServerException extends CodeConnectionsServiceException {
191
- name = "InternalServerException";
192
- $fault = "server";
193
- Message;
194
- constructor(opts) {
195
- super({
196
- name: "InternalServerException",
197
- $fault: "server",
198
- ...opts,
199
- });
200
- Object.setPrototypeOf(this, InternalServerException.prototype);
201
- this.Message = opts.Message;
202
- }
203
- }
204
- class InvalidInputException extends CodeConnectionsServiceException {
205
- name = "InvalidInputException";
206
- $fault = "client";
207
- Message;
208
- constructor(opts) {
209
- super({
210
- name: "InvalidInputException",
211
- $fault: "client",
212
- ...opts,
213
- });
214
- Object.setPrototypeOf(this, InvalidInputException.prototype);
215
- this.Message = opts.Message;
216
- }
217
- }
218
- class ResourceAlreadyExistsException extends CodeConnectionsServiceException {
219
- name = "ResourceAlreadyExistsException";
220
- $fault = "client";
221
- Message;
222
- constructor(opts) {
223
- super({
224
- name: "ResourceAlreadyExistsException",
225
- $fault: "client",
226
- ...opts,
227
- });
228
- Object.setPrototypeOf(this, ResourceAlreadyExistsException.prototype);
229
- this.Message = opts.Message;
230
- }
231
- }
232
- class ThrottlingException extends CodeConnectionsServiceException {
233
- name = "ThrottlingException";
234
- $fault = "client";
235
- Message;
236
- constructor(opts) {
237
- super({
238
- name: "ThrottlingException",
239
- $fault: "client",
240
- ...opts,
241
- });
242
- Object.setPrototypeOf(this, ThrottlingException.prototype);
243
- this.Message = opts.Message;
244
- }
245
- }
246
- class SyncConfigurationStillExistsException extends CodeConnectionsServiceException {
247
- name = "SyncConfigurationStillExistsException";
248
- $fault = "client";
249
- Message;
250
- constructor(opts) {
251
- super({
252
- name: "SyncConfigurationStillExistsException",
253
- $fault: "client",
254
- ...opts,
255
- });
256
- Object.setPrototypeOf(this, SyncConfigurationStillExistsException.prototype);
257
- this.Message = opts.Message;
258
- }
259
- }
260
- class UnsupportedProviderTypeException extends CodeConnectionsServiceException {
261
- name = "UnsupportedProviderTypeException";
262
- $fault = "client";
263
- Message;
264
- constructor(opts) {
265
- super({
266
- name: "UnsupportedProviderTypeException",
267
- $fault: "client",
268
- ...opts,
269
- });
270
- Object.setPrototypeOf(this, UnsupportedProviderTypeException.prototype);
271
- this.Message = opts.Message;
272
- }
273
- }
274
- class ConflictException extends CodeConnectionsServiceException {
275
- name = "ConflictException";
276
- $fault = "client";
277
- Message;
278
- constructor(opts) {
279
- super({
280
- name: "ConflictException",
281
- $fault: "client",
282
- ...opts,
283
- });
284
- Object.setPrototypeOf(this, ConflictException.prototype);
285
- this.Message = opts.Message;
286
- }
287
- }
288
- class UnsupportedOperationException extends CodeConnectionsServiceException {
289
- name = "UnsupportedOperationException";
290
- $fault = "client";
291
- Message;
292
- constructor(opts) {
293
- super({
294
- name: "UnsupportedOperationException",
295
- $fault: "client",
296
- ...opts,
297
- });
298
- Object.setPrototypeOf(this, UnsupportedOperationException.prototype);
299
- this.Message = opts.Message;
300
- }
301
- }
302
- class ConditionalCheckFailedException extends CodeConnectionsServiceException {
303
- name = "ConditionalCheckFailedException";
304
- $fault = "client";
305
- Message;
306
- constructor(opts) {
307
- super({
308
- name: "ConditionalCheckFailedException",
309
- $fault: "client",
310
- ...opts,
311
- });
312
- Object.setPrototypeOf(this, ConditionalCheckFailedException.prototype);
313
- this.Message = opts.Message;
314
- }
315
- }
316
- class UpdateOutOfSyncException extends CodeConnectionsServiceException {
317
- name = "UpdateOutOfSyncException";
318
- $fault = "client";
319
- Message;
320
- constructor(opts) {
321
- super({
322
- name: "UpdateOutOfSyncException",
323
- $fault: "client",
324
- ...opts,
325
- });
326
- Object.setPrototypeOf(this, UpdateOutOfSyncException.prototype);
327
- this.Message = opts.Message;
328
- }
329
- }
330
- class RetryLatestCommitFailedException extends CodeConnectionsServiceException {
331
- name = "RetryLatestCommitFailedException";
332
- $fault = "server";
333
- Message;
334
- constructor(opts) {
335
- super({
336
- name: "RetryLatestCommitFailedException",
337
- $fault: "server",
338
- ...opts,
339
- });
340
- Object.setPrototypeOf(this, RetryLatestCommitFailedException.prototype);
341
- this.Message = opts.Message;
342
- }
343
- }
344
- class SyncBlockerDoesNotExistException extends CodeConnectionsServiceException {
345
- name = "SyncBlockerDoesNotExistException";
346
- $fault = "client";
347
- Message;
348
- constructor(opts) {
349
- super({
350
- name: "SyncBlockerDoesNotExistException",
351
- $fault: "client",
352
- ...opts,
353
- });
354
- Object.setPrototypeOf(this, SyncBlockerDoesNotExistException.prototype);
355
- this.Message = opts.Message;
356
- }
357
- }
358
-
359
- const _ADE = "AccessDeniedException";
360
- const _B = "Branch";
361
- const _C = "Connection";
362
- const _CA = "ConnectionArn";
363
- const _CAr = "CreatedAt";
364
- const _CC = "CreateConnection";
365
- const _CCFE = "ConditionalCheckFailedException";
366
- const _CCI = "CreateConnectionInput";
367
- const _CCO = "CreateConnectionOutput";
368
- const _CE = "ConflictException";
369
- const _CF = "ConfigFile";
370
- const _CH = "CreateHost";
371
- const _CHI = "CreateHostInput";
372
- const _CHO = "CreateHostOutput";
373
- const _CL = "ConnectionList";
374
- const _CME = "ConcurrentModificationException";
375
- const _CN = "ConnectionName";
376
- const _CR = "CreatedReason";
377
- const _CRL = "CreateRepositoryLink";
378
- const _CRLI = "CreateRepositoryLinkInput";
379
- const _CRLO = "CreateRepositoryLinkOutput";
380
- const _CS = "ConnectionStatus";
381
- const _CSC = "CreateSyncConfiguration";
382
- const _CSCI = "CreateSyncConfigurationInput";
383
- const _CSCO = "CreateSyncConfigurationOutput";
384
- const _Co = "Connections";
385
- const _Con = "Contexts";
386
- const _D = "Directory";
387
- const _DC = "DeleteConnection";
388
- const _DCI = "DeleteConnectionInput";
389
- const _DCO = "DeleteConnectionOutput";
390
- const _DH = "DeleteHost";
391
- const _DHI = "DeleteHostInput";
392
- const _DHO = "DeleteHostOutput";
393
- const _DRL = "DeleteRepositoryLink";
394
- const _DRLI = "DeleteRepositoryLinkInput";
395
- const _DRLO = "DeleteRepositoryLinkOutput";
396
- const _DS = "DesiredState";
397
- const _DSC = "DeleteSyncConfiguration";
398
- const _DSCI = "DeleteSyncConfigurationInput";
399
- const _DSCO = "DeleteSyncConfigurationOutput";
400
- const _E = "Events";
401
- const _EI = "ExternalId";
402
- const _EKA = "EncryptionKeyArn";
403
- const _Ev = "Event";
404
- const _GC = "GetConnection";
405
- const _GCI = "GetConnectionInput";
406
- const _GCO = "GetConnectionOutput";
407
- const _GH = "GetHost";
408
- const _GHI = "GetHostInput";
409
- const _GHO = "GetHostOutput";
410
- const _GRL = "GetRepositoryLink";
411
- const _GRLI = "GetRepositoryLinkInput";
412
- const _GRLO = "GetRepositoryLinkOutput";
413
- const _GRSS = "GetRepositorySyncStatus";
414
- const _GRSSI = "GetRepositorySyncStatusInput";
415
- const _GRSSIe = "GetResourceSyncStatusInput";
416
- const _GRSSO = "GetRepositorySyncStatusOutput";
417
- const _GRSSOe = "GetResourceSyncStatusOutput";
418
- const _GRSSe = "GetResourceSyncStatus";
419
- const _GSBS = "GetSyncBlockerSummary";
420
- const _GSBSI = "GetSyncBlockerSummaryInput";
421
- const _GSBSO = "GetSyncBlockerSummaryOutput";
422
- const _GSC = "GetSyncConfiguration";
423
- const _GSCI = "GetSyncConfigurationInput";
424
- const _GSCO = "GetSyncConfigurationOutput";
425
- const _H = "Host";
426
- const _HA = "HostArn";
427
- const _HAF = "HostArnFilter";
428
- const _HL = "HostList";
429
- const _Ho = "Hosts";
430
- const _I = "Id";
431
- const _IIE = "InvalidInputException";
432
- const _IR = "InitialRevision";
433
- const _ISE = "InternalServerException";
434
- const _K = "Key";
435
- const _LB = "LatestBlockers";
436
- const _LC = "ListConnections";
437
- const _LCI = "ListConnectionsInput";
438
- const _LCO = "ListConnectionsOutput";
439
- const _LEE = "LimitExceededException";
440
- const _LH = "ListHosts";
441
- const _LHI = "ListHostsInput";
442
- const _LHO = "ListHostsOutput";
443
- const _LRL = "ListRepositoryLinks";
444
- const _LRLI = "ListRepositoryLinksInput";
445
- const _LRLO = "ListRepositoryLinksOutput";
446
- const _LRSD = "ListRepositorySyncDefinitions";
447
- const _LRSDI = "ListRepositorySyncDefinitionsInput";
448
- const _LRSDO = "ListRepositorySyncDefinitionsOutput";
449
- const _LS = "LatestSync";
450
- const _LSBL = "LatestSyncBlockerList";
451
- const _LSC = "ListSyncConfigurations";
452
- const _LSCI = "ListSyncConfigurationsInput";
453
- const _LSCO = "ListSyncConfigurationsOutput";
454
- const _LSS = "LatestSuccessfulSync";
455
- const _LTFR = "ListTagsForResource";
456
- const _LTFRI = "ListTagsForResourceInput";
457
- const _LTFRO = "ListTagsForResourceOutput";
458
- const _M = "Message";
459
- const _MR = "MaxResults";
460
- const _N = "Name";
461
- const _NT = "NextToken";
462
- const _OAI = "OwnerAccountId";
463
- const _OI = "OwnerId";
464
- const _P = "Parent";
465
- const _PDS = "PublishDeploymentStatus";
466
- const _PE = "ProviderEndpoint";
467
- const _PRC = "PullRequestComment";
468
- const _PRN = "ParentResourceName";
469
- const _PT = "ProviderType";
470
- const _PTF = "ProviderTypeFilter";
471
- const _R = "Revision";
472
- const _RA = "RoleArn";
473
- const _RAEE = "ResourceAlreadyExistsException";
474
- const _RAe = "ResourceArn";
475
- const _RAes = "ResolvedAt";
476
- const _RL = "RepositoryLinks";
477
- const _RLA = "RepositoryLinkArn";
478
- const _RLCFE = "RetryLatestCommitFailedException";
479
- const _RLI = "RepositoryLinkInfo";
480
- const _RLIe = "RepositoryLinkId";
481
- const _RLL = "RepositoryLinkList";
482
- const _RN = "RepositoryName";
483
- const _RNFE = "ResourceNotFoundException";
484
- const _RNe = "ResourceName";
485
- const _RR = "ResolvedReason";
486
- const _RSA = "RepositorySyncAttempt";
487
- const _RSAe = "ResourceSyncAttempt";
488
- const _RSD = "RepositorySyncDefinitions";
489
- const _RSDL = "RepositorySyncDefinitionList";
490
- const _RSDe = "RepositorySyncDefinition";
491
- const _RSE = "RepositorySyncEvent";
492
- const _RSEL = "RepositorySyncEventList";
493
- const _RSELe = "ResourceSyncEventList";
494
- const _RSEe = "ResourceSyncEvent";
495
- const _RUE = "ResourceUnavailableException";
496
- const _S = "Status";
497
- const _SA = "StartedAt";
498
- const _SB = "SyncBlocker";
499
- const _SBC = "SyncBlockerContext";
500
- const _SBCL = "SyncBlockerContextList";
501
- const _SBDNEE = "SyncBlockerDoesNotExistException";
502
- const _SBS = "SyncBlockerSummary";
503
- const _SC = "SyncConfiguration";
504
- const _SCL = "SyncConfigurationList";
505
- const _SCSEE = "SyncConfigurationStillExistsException";
506
- const _SCy = "SyncConfigurations";
507
- const _SGI = "SecurityGroupIds";
508
- const _SI = "SubnetIds";
509
- const _SM = "StatusMessage";
510
- const _ST = "SyncType";
511
- const _Sh = "Sha";
512
- const _T = "Tags";
513
- const _TC = "TlsCertificate";
514
- const _TE = "ThrottlingException";
515
- const _TK = "TagKeys";
516
- const _TL = "TagList";
517
- const _TR = "TargetRevision";
518
- const _TRI = "TagResourceInput";
519
- const _TRO = "TagResourceOutput";
520
- const _TRUO = "TriggerResourceUpdateOn";
521
- const _TRa = "TagResource";
522
- const _Ta = "Target";
523
- const _Tag = "Tag";
524
- const _Ti = "Time";
525
- const _Ty = "Type";
526
- const _UH = "UpdateHost";
527
- const _UHI = "UpdateHostInput";
528
- const _UHO = "UpdateHostOutput";
529
- const _UOE = "UnsupportedOperationException";
530
- const _UOOSE = "UpdateOutOfSyncException";
531
- const _UPTE = "UnsupportedProviderTypeException";
532
- const _UR = "UntagResource";
533
- const _URI = "UntagResourceInput";
534
- const _URL = "UpdateRepositoryLink";
535
- const _URLI = "UpdateRepositoryLinkInput";
536
- const _URLO = "UpdateRepositoryLinkOutput";
537
- const _URO = "UntagResourceOutput";
538
- const _USB = "UpdateSyncBlocker";
539
- const _USBI = "UpdateSyncBlockerInput";
540
- const _USBO = "UpdateSyncBlockerOutput";
541
- const _USC = "UpdateSyncConfiguration";
542
- const _USCI = "UpdateSyncConfigurationInput";
543
- const _USCO = "UpdateSyncConfigurationOutput";
544
- const _V = "Value";
545
- const _VC = "VpcConfiguration";
546
- const _VI = "VpcId";
547
- const _c = "client";
548
- const _e = "error";
549
- const _hE = "httpError";
550
- const _s = "server";
551
- const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.codeconnections";
552
- const n0 = "com.amazonaws.codeconnections";
553
- var AccessDeniedException$ = [-3, n0, _ADE,
554
- { [_e]: _c, [_hE]: 403 },
555
- [_M],
556
- [0]
557
- ];
558
- schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
559
- var ConcurrentModificationException$ = [-3, n0, _CME,
560
- { [_e]: _c, [_hE]: 409 },
561
- [_M],
562
- [0]
563
- ];
564
- schema.TypeRegistry.for(n0).registerError(ConcurrentModificationException$, ConcurrentModificationException);
565
- var ConditionalCheckFailedException$ = [-3, n0, _CCFE,
566
- { [_e]: _c, [_hE]: 409 },
567
- [_M],
568
- [0]
569
- ];
570
- schema.TypeRegistry.for(n0).registerError(ConditionalCheckFailedException$, ConditionalCheckFailedException);
571
- var ConflictException$ = [-3, n0, _CE,
572
- { [_e]: _c, [_hE]: 409 },
573
- [_M],
574
- [0]
575
- ];
576
- schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
577
- var Connection$ = [3, n0, _C,
578
- 0,
579
- [_CN, _CA, _PT, _OAI, _CS, _HA],
580
- [0, 0, 0, 0, 0, 0]
581
- ];
582
- var CreateConnectionInput$ = [3, n0, _CCI,
583
- 0,
584
- [_CN, _PT, _T, _HA],
585
- [0, 0, () => TagList, 0], 1
586
- ];
587
- var CreateConnectionOutput$ = [3, n0, _CCO,
588
- 0,
589
- [_CA, _T],
590
- [0, () => TagList], 1
591
- ];
592
- var CreateHostInput$ = [3, n0, _CHI,
593
- 0,
594
- [_N, _PT, _PE, _VC, _T],
595
- [0, 0, 0, () => VpcConfiguration$, () => TagList], 3
596
- ];
597
- var CreateHostOutput$ = [3, n0, _CHO,
598
- 0,
599
- [_HA, _T],
600
- [0, () => TagList]
601
- ];
602
- var CreateRepositoryLinkInput$ = [3, n0, _CRLI,
603
- 0,
604
- [_CA, _OI, _RN, _EKA, _T],
605
- [0, 0, 0, 0, () => TagList], 3
606
- ];
607
- var CreateRepositoryLinkOutput$ = [3, n0, _CRLO,
608
- 0,
609
- [_RLI],
610
- [() => RepositoryLinkInfo$], 1
611
- ];
612
- var CreateSyncConfigurationInput$ = [3, n0, _CSCI,
613
- 0,
614
- [_B, _CF, _RLIe, _RNe, _RA, _ST, _PDS, _TRUO, _PRC],
615
- [0, 0, 0, 0, 0, 0, 0, 0, 0], 6
616
- ];
617
- var CreateSyncConfigurationOutput$ = [3, n0, _CSCO,
618
- 0,
619
- [_SC],
620
- [() => SyncConfiguration$], 1
621
- ];
622
- var DeleteConnectionInput$ = [3, n0, _DCI,
623
- 0,
624
- [_CA],
625
- [0], 1
626
- ];
627
- var DeleteConnectionOutput$ = [3, n0, _DCO,
628
- 0,
629
- [],
630
- []
631
- ];
632
- var DeleteHostInput$ = [3, n0, _DHI,
633
- 0,
634
- [_HA],
635
- [0], 1
636
- ];
637
- var DeleteHostOutput$ = [3, n0, _DHO,
638
- 0,
639
- [],
640
- []
641
- ];
642
- var DeleteRepositoryLinkInput$ = [3, n0, _DRLI,
643
- 0,
644
- [_RLIe],
645
- [0], 1
646
- ];
647
- var DeleteRepositoryLinkOutput$ = [3, n0, _DRLO,
648
- 0,
649
- [],
650
- []
651
- ];
652
- var DeleteSyncConfigurationInput$ = [3, n0, _DSCI,
653
- 0,
654
- [_ST, _RNe],
655
- [0, 0], 2
656
- ];
657
- var DeleteSyncConfigurationOutput$ = [3, n0, _DSCO,
658
- 0,
659
- [],
660
- []
661
- ];
662
- var GetConnectionInput$ = [3, n0, _GCI,
663
- 0,
664
- [_CA],
665
- [0], 1
666
- ];
667
- var GetConnectionOutput$ = [3, n0, _GCO,
668
- 0,
669
- [_C],
670
- [() => Connection$]
671
- ];
672
- var GetHostInput$ = [3, n0, _GHI,
673
- 0,
674
- [_HA],
675
- [0], 1
676
- ];
677
- var GetHostOutput$ = [3, n0, _GHO,
678
- 0,
679
- [_N, _S, _PT, _PE, _VC],
680
- [0, 0, 0, 0, () => VpcConfiguration$]
681
- ];
682
- var GetRepositoryLinkInput$ = [3, n0, _GRLI,
683
- 0,
684
- [_RLIe],
685
- [0], 1
686
- ];
687
- var GetRepositoryLinkOutput$ = [3, n0, _GRLO,
688
- 0,
689
- [_RLI],
690
- [() => RepositoryLinkInfo$], 1
691
- ];
692
- var GetRepositorySyncStatusInput$ = [3, n0, _GRSSI,
693
- 0,
694
- [_B, _RLIe, _ST],
695
- [0, 0, 0], 3
696
- ];
697
- var GetRepositorySyncStatusOutput$ = [3, n0, _GRSSO,
698
- 0,
699
- [_LS],
700
- [() => RepositorySyncAttempt$], 1
701
- ];
702
- var GetResourceSyncStatusInput$ = [3, n0, _GRSSIe,
703
- 0,
704
- [_RNe, _ST],
705
- [0, 0], 2
706
- ];
707
- var GetResourceSyncStatusOutput$ = [3, n0, _GRSSOe,
708
- 0,
709
- [_LS, _DS, _LSS],
710
- [() => ResourceSyncAttempt$, () => Revision$, () => ResourceSyncAttempt$], 1
711
- ];
712
- var GetSyncBlockerSummaryInput$ = [3, n0, _GSBSI,
713
- 0,
714
- [_ST, _RNe],
715
- [0, 0], 2
716
- ];
717
- var GetSyncBlockerSummaryOutput$ = [3, n0, _GSBSO,
718
- 0,
719
- [_SBS],
720
- [() => SyncBlockerSummary$], 1
721
- ];
722
- var GetSyncConfigurationInput$ = [3, n0, _GSCI,
723
- 0,
724
- [_ST, _RNe],
725
- [0, 0], 2
726
- ];
727
- var GetSyncConfigurationOutput$ = [3, n0, _GSCO,
728
- 0,
729
- [_SC],
730
- [() => SyncConfiguration$], 1
731
- ];
732
- var Host$ = [3, n0, _H,
733
- 0,
734
- [_N, _HA, _PT, _PE, _VC, _S, _SM],
735
- [0, 0, 0, 0, () => VpcConfiguration$, 0, 0]
736
- ];
737
- var InternalServerException$ = [-3, n0, _ISE,
738
- { [_e]: _s, [_hE]: 503 },
739
- [_M],
740
- [0]
741
- ];
742
- schema.TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
743
- var InvalidInputException$ = [-3, n0, _IIE,
744
- { [_e]: _c, [_hE]: 400 },
745
- [_M],
746
- [0]
747
- ];
748
- schema.TypeRegistry.for(n0).registerError(InvalidInputException$, InvalidInputException);
749
- var LimitExceededException$ = [-3, n0, _LEE,
750
- { [_e]: _c, [_hE]: 429 },
751
- [_M],
752
- [0]
753
- ];
754
- schema.TypeRegistry.for(n0).registerError(LimitExceededException$, LimitExceededException);
755
- var ListConnectionsInput$ = [3, n0, _LCI,
756
- 0,
757
- [_PTF, _HAF, _MR, _NT],
758
- [0, 0, 1, 0]
759
- ];
760
- var ListConnectionsOutput$ = [3, n0, _LCO,
761
- 0,
762
- [_Co, _NT],
763
- [() => ConnectionList, 0]
764
- ];
765
- var ListHostsInput$ = [3, n0, _LHI,
766
- 0,
767
- [_MR, _NT],
768
- [1, 0]
769
- ];
770
- var ListHostsOutput$ = [3, n0, _LHO,
771
- 0,
772
- [_Ho, _NT],
773
- [() => HostList, 0]
774
- ];
775
- var ListRepositoryLinksInput$ = [3, n0, _LRLI,
776
- 0,
777
- [_MR, _NT],
778
- [1, 0]
779
- ];
780
- var ListRepositoryLinksOutput$ = [3, n0, _LRLO,
781
- 0,
782
- [_RL, _NT],
783
- [() => RepositoryLinkList, 0], 1
784
- ];
785
- var ListRepositorySyncDefinitionsInput$ = [3, n0, _LRSDI,
786
- 0,
787
- [_RLIe, _ST],
788
- [0, 0], 2
789
- ];
790
- var ListRepositorySyncDefinitionsOutput$ = [3, n0, _LRSDO,
791
- 0,
792
- [_RSD, _NT],
793
- [() => RepositorySyncDefinitionList, 0], 1
794
- ];
795
- var ListSyncConfigurationsInput$ = [3, n0, _LSCI,
796
- 0,
797
- [_RLIe, _ST, _MR, _NT],
798
- [0, 0, 1, 0], 2
799
- ];
800
- var ListSyncConfigurationsOutput$ = [3, n0, _LSCO,
801
- 0,
802
- [_SCy, _NT],
803
- [() => SyncConfigurationList, 0], 1
804
- ];
805
- var ListTagsForResourceInput$ = [3, n0, _LTFRI,
806
- 0,
807
- [_RAe],
808
- [0], 1
809
- ];
810
- var ListTagsForResourceOutput$ = [3, n0, _LTFRO,
811
- 0,
812
- [_T],
813
- [() => TagList]
814
- ];
815
- var RepositoryLinkInfo$ = [3, n0, _RLI,
816
- 0,
817
- [_CA, _OI, _PT, _RLA, _RLIe, _RN, _EKA],
818
- [0, 0, 0, 0, 0, 0, 0], 6
819
- ];
820
- var RepositorySyncAttempt$ = [3, n0, _RSA,
821
- 0,
822
- [_SA, _S, _E],
823
- [4, 0, () => RepositorySyncEventList], 3
824
- ];
825
- var RepositorySyncDefinition$ = [3, n0, _RSDe,
826
- 0,
827
- [_B, _D, _P, _Ta],
828
- [0, 0, 0, 0], 4
829
- ];
830
- var RepositorySyncEvent$ = [3, n0, _RSE,
831
- 0,
832
- [_Ev, _Ti, _Ty, _EI],
833
- [0, 4, 0, 0], 3
834
- ];
835
- var ResourceAlreadyExistsException$ = [-3, n0, _RAEE,
836
- { [_e]: _c, [_hE]: 409 },
837
- [_M],
838
- [0]
839
- ];
840
- schema.TypeRegistry.for(n0).registerError(ResourceAlreadyExistsException$, ResourceAlreadyExistsException);
841
- var ResourceNotFoundException$ = [-3, n0, _RNFE,
842
- { [_e]: _c, [_hE]: 404 },
843
- [_M],
844
- [0]
845
- ];
846
- schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
847
- var ResourceSyncAttempt$ = [3, n0, _RSAe,
848
- 0,
849
- [_E, _IR, _SA, _S, _TR, _Ta],
850
- [() => ResourceSyncEventList, () => Revision$, 4, 0, () => Revision$, 0], 6
851
- ];
852
- var ResourceSyncEvent$ = [3, n0, _RSEe,
853
- 0,
854
- [_Ev, _Ti, _Ty, _EI],
855
- [0, 4, 0, 0], 3
856
- ];
857
- var ResourceUnavailableException$ = [-3, n0, _RUE,
858
- { [_e]: _c, [_hE]: 400 },
859
- [_M],
860
- [0]
861
- ];
862
- schema.TypeRegistry.for(n0).registerError(ResourceUnavailableException$, ResourceUnavailableException);
863
- var RetryLatestCommitFailedException$ = [-3, n0, _RLCFE,
864
- { [_e]: _s, [_hE]: 503 },
865
- [_M],
866
- [0]
867
- ];
868
- schema.TypeRegistry.for(n0).registerError(RetryLatestCommitFailedException$, RetryLatestCommitFailedException);
869
- var Revision$ = [3, n0, _R,
870
- 0,
871
- [_B, _D, _OI, _RN, _PT, _Sh],
872
- [0, 0, 0, 0, 0, 0], 6
873
- ];
874
- var SyncBlocker$ = [3, n0, _SB,
875
- 0,
876
- [_I, _Ty, _S, _CR, _CAr, _Con, _RR, _RAes],
877
- [0, 0, 0, 0, 4, () => SyncBlockerContextList, 0, 4], 5
878
- ];
879
- var SyncBlockerContext$ = [3, n0, _SBC,
880
- 0,
881
- [_K, _V],
882
- [0, 0], 2
883
- ];
884
- var SyncBlockerDoesNotExistException$ = [-3, n0, _SBDNEE,
885
- { [_e]: _c, [_hE]: 404 },
886
- [_M],
887
- [0]
888
- ];
889
- schema.TypeRegistry.for(n0).registerError(SyncBlockerDoesNotExistException$, SyncBlockerDoesNotExistException);
890
- var SyncBlockerSummary$ = [3, n0, _SBS,
891
- 0,
892
- [_RNe, _PRN, _LB],
893
- [0, 0, () => LatestSyncBlockerList], 1
894
- ];
895
- var SyncConfiguration$ = [3, n0, _SC,
896
- 0,
897
- [_B, _OI, _PT, _RLIe, _RN, _RNe, _RA, _ST, _CF, _PDS, _TRUO, _PRC],
898
- [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 8
899
- ];
900
- var SyncConfigurationStillExistsException$ = [-3, n0, _SCSEE,
901
- { [_e]: _c, [_hE]: 409 },
902
- [_M],
903
- [0]
904
- ];
905
- schema.TypeRegistry.for(n0).registerError(SyncConfigurationStillExistsException$, SyncConfigurationStillExistsException);
906
- var Tag$ = [3, n0, _Tag,
907
- 0,
908
- [_K, _V],
909
- [0, 0], 2
910
- ];
911
- var TagResourceInput$ = [3, n0, _TRI,
912
- 0,
913
- [_RAe, _T],
914
- [0, () => TagList], 2
915
- ];
916
- var TagResourceOutput$ = [3, n0, _TRO,
917
- 0,
918
- [],
919
- []
920
- ];
921
- var ThrottlingException$ = [-3, n0, _TE,
922
- { [_e]: _c, [_hE]: 429 },
923
- [_M],
924
- [0]
925
- ];
926
- schema.TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
927
- var UnsupportedOperationException$ = [-3, n0, _UOE,
928
- { [_e]: _c, [_hE]: 400 },
929
- [_M],
930
- [0]
931
- ];
932
- schema.TypeRegistry.for(n0).registerError(UnsupportedOperationException$, UnsupportedOperationException);
933
- var UnsupportedProviderTypeException$ = [-3, n0, _UPTE,
934
- { [_e]: _c, [_hE]: 400 },
935
- [_M],
936
- [0]
937
- ];
938
- schema.TypeRegistry.for(n0).registerError(UnsupportedProviderTypeException$, UnsupportedProviderTypeException);
939
- var UntagResourceInput$ = [3, n0, _URI,
940
- 0,
941
- [_RAe, _TK],
942
- [0, 64 | 0], 2
943
- ];
944
- var UntagResourceOutput$ = [3, n0, _URO,
945
- 0,
946
- [],
947
- []
948
- ];
949
- var UpdateHostInput$ = [3, n0, _UHI,
950
- 0,
951
- [_HA, _PE, _VC],
952
- [0, 0, () => VpcConfiguration$], 1
953
- ];
954
- var UpdateHostOutput$ = [3, n0, _UHO,
955
- 0,
956
- [],
957
- []
958
- ];
959
- var UpdateOutOfSyncException$ = [-3, n0, _UOOSE,
960
- { [_e]: _c, [_hE]: 409 },
961
- [_M],
962
- [0]
963
- ];
964
- schema.TypeRegistry.for(n0).registerError(UpdateOutOfSyncException$, UpdateOutOfSyncException);
965
- var UpdateRepositoryLinkInput$ = [3, n0, _URLI,
966
- 0,
967
- [_RLIe, _CA, _EKA],
968
- [0, 0, 0], 1
969
- ];
970
- var UpdateRepositoryLinkOutput$ = [3, n0, _URLO,
971
- 0,
972
- [_RLI],
973
- [() => RepositoryLinkInfo$], 1
974
- ];
975
- var UpdateSyncBlockerInput$ = [3, n0, _USBI,
976
- 0,
977
- [_I, _ST, _RNe, _RR],
978
- [0, 0, 0, 0], 4
979
- ];
980
- var UpdateSyncBlockerOutput$ = [3, n0, _USBO,
981
- 0,
982
- [_RNe, _SB, _PRN],
983
- [0, () => SyncBlocker$, 0], 2
984
- ];
985
- var UpdateSyncConfigurationInput$ = [3, n0, _USCI,
986
- 0,
987
- [_RNe, _ST, _B, _CF, _RLIe, _RA, _PDS, _TRUO, _PRC],
988
- [0, 0, 0, 0, 0, 0, 0, 0, 0], 2
989
- ];
990
- var UpdateSyncConfigurationOutput$ = [3, n0, _USCO,
991
- 0,
992
- [_SC],
993
- [() => SyncConfiguration$], 1
994
- ];
995
- var VpcConfiguration$ = [3, n0, _VC,
996
- 0,
997
- [_VI, _SI, _SGI, _TC],
998
- [0, 64 | 0, 64 | 0, 0], 3
999
- ];
1000
- var CodeConnectionsServiceException$ = [-3, _sm, "CodeConnectionsServiceException", 0, [], []];
1001
- schema.TypeRegistry.for(_sm).registerError(CodeConnectionsServiceException$, CodeConnectionsServiceException);
1002
- var ConnectionList = [1, n0, _CL,
1003
- 0, () => Connection$
1004
- ];
1005
- var HostList = [1, n0, _HL,
1006
- 0, () => Host$
1007
- ];
1008
- var LatestSyncBlockerList = [1, n0, _LSBL,
1009
- 0, () => SyncBlocker$
1010
- ];
1011
- var RepositoryLinkList = [1, n0, _RLL,
1012
- 0, () => RepositoryLinkInfo$
1013
- ];
1014
- var RepositorySyncDefinitionList = [1, n0, _RSDL,
1015
- 0, () => RepositorySyncDefinition$
1016
- ];
1017
- var RepositorySyncEventList = [1, n0, _RSEL,
1018
- 0, () => RepositorySyncEvent$
1019
- ];
1020
- var ResourceSyncEventList = [1, n0, _RSELe,
1021
- 0, () => ResourceSyncEvent$
1022
- ];
1023
- var SyncBlockerContextList = [1, n0, _SBCL,
1024
- 0, () => SyncBlockerContext$
1025
- ];
1026
- var SyncConfigurationList = [1, n0, _SCL,
1027
- 0, () => SyncConfiguration$
1028
- ];
1029
- var TagList = [1, n0, _TL,
1030
- 0, () => Tag$
1031
- ];
1032
- var CreateConnection$ = [9, n0, _CC,
1033
- 0, () => CreateConnectionInput$, () => CreateConnectionOutput$
1034
- ];
1035
- var CreateHost$ = [9, n0, _CH,
1036
- 0, () => CreateHostInput$, () => CreateHostOutput$
1037
- ];
1038
- var CreateRepositoryLink$ = [9, n0, _CRL,
1039
- 0, () => CreateRepositoryLinkInput$, () => CreateRepositoryLinkOutput$
1040
- ];
1041
- var CreateSyncConfiguration$ = [9, n0, _CSC,
1042
- 0, () => CreateSyncConfigurationInput$, () => CreateSyncConfigurationOutput$
1043
- ];
1044
- var DeleteConnection$ = [9, n0, _DC,
1045
- 0, () => DeleteConnectionInput$, () => DeleteConnectionOutput$
1046
- ];
1047
- var DeleteHost$ = [9, n0, _DH,
1048
- 0, () => DeleteHostInput$, () => DeleteHostOutput$
1049
- ];
1050
- var DeleteRepositoryLink$ = [9, n0, _DRL,
1051
- 0, () => DeleteRepositoryLinkInput$, () => DeleteRepositoryLinkOutput$
1052
- ];
1053
- var DeleteSyncConfiguration$ = [9, n0, _DSC,
1054
- 0, () => DeleteSyncConfigurationInput$, () => DeleteSyncConfigurationOutput$
1055
- ];
1056
- var GetConnection$ = [9, n0, _GC,
1057
- 0, () => GetConnectionInput$, () => GetConnectionOutput$
1058
- ];
1059
- var GetHost$ = [9, n0, _GH,
1060
- 0, () => GetHostInput$, () => GetHostOutput$
1061
- ];
1062
- var GetRepositoryLink$ = [9, n0, _GRL,
1063
- 0, () => GetRepositoryLinkInput$, () => GetRepositoryLinkOutput$
1064
- ];
1065
- var GetRepositorySyncStatus$ = [9, n0, _GRSS,
1066
- 0, () => GetRepositorySyncStatusInput$, () => GetRepositorySyncStatusOutput$
1067
- ];
1068
- var GetResourceSyncStatus$ = [9, n0, _GRSSe,
1069
- 0, () => GetResourceSyncStatusInput$, () => GetResourceSyncStatusOutput$
1070
- ];
1071
- var GetSyncBlockerSummary$ = [9, n0, _GSBS,
1072
- 0, () => GetSyncBlockerSummaryInput$, () => GetSyncBlockerSummaryOutput$
1073
- ];
1074
- var GetSyncConfiguration$ = [9, n0, _GSC,
1075
- 0, () => GetSyncConfigurationInput$, () => GetSyncConfigurationOutput$
1076
- ];
1077
- var ListConnections$ = [9, n0, _LC,
1078
- 0, () => ListConnectionsInput$, () => ListConnectionsOutput$
1079
- ];
1080
- var ListHosts$ = [9, n0, _LH,
1081
- 0, () => ListHostsInput$, () => ListHostsOutput$
1082
- ];
1083
- var ListRepositoryLinks$ = [9, n0, _LRL,
1084
- 0, () => ListRepositoryLinksInput$, () => ListRepositoryLinksOutput$
1085
- ];
1086
- var ListRepositorySyncDefinitions$ = [9, n0, _LRSD,
1087
- 0, () => ListRepositorySyncDefinitionsInput$, () => ListRepositorySyncDefinitionsOutput$
1088
- ];
1089
- var ListSyncConfigurations$ = [9, n0, _LSC,
1090
- 0, () => ListSyncConfigurationsInput$, () => ListSyncConfigurationsOutput$
1091
- ];
1092
- var ListTagsForResource$ = [9, n0, _LTFR,
1093
- 0, () => ListTagsForResourceInput$, () => ListTagsForResourceOutput$
1094
- ];
1095
- var TagResource$ = [9, n0, _TRa,
1096
- 0, () => TagResourceInput$, () => TagResourceOutput$
1097
- ];
1098
- var UntagResource$ = [9, n0, _UR,
1099
- 0, () => UntagResourceInput$, () => UntagResourceOutput$
1100
- ];
1101
- var UpdateHost$ = [9, n0, _UH,
1102
- 0, () => UpdateHostInput$, () => UpdateHostOutput$
1103
- ];
1104
- var UpdateRepositoryLink$ = [9, n0, _URL,
1105
- 0, () => UpdateRepositoryLinkInput$, () => UpdateRepositoryLinkOutput$
1106
- ];
1107
- var UpdateSyncBlocker$ = [9, n0, _USB,
1108
- 0, () => UpdateSyncBlockerInput$, () => UpdateSyncBlockerOutput$
1109
- ];
1110
- var UpdateSyncConfiguration$ = [9, n0, _USC,
1111
- 0, () => UpdateSyncConfigurationInput$, () => UpdateSyncConfigurationOutput$
1112
- ];
1113
-
1114
116
  class CreateConnectionCommand extends smithyClient.Command
1115
117
  .classBuilder()
1116
118
  .ep(commonParams)
@@ -1119,7 +121,7 @@ class CreateConnectionCommand extends smithyClient.Command
1119
121
  })
1120
122
  .s("CodeConnections_20231201", "CreateConnection", {})
1121
123
  .n("CodeConnectionsClient", "CreateConnectionCommand")
1122
- .sc(CreateConnection$)
124
+ .sc(schemas_0.CreateConnection$)
1123
125
  .build() {
1124
126
  }
1125
127
 
@@ -1131,7 +133,7 @@ class CreateHostCommand extends smithyClient.Command
1131
133
  })
1132
134
  .s("CodeConnections_20231201", "CreateHost", {})
1133
135
  .n("CodeConnectionsClient", "CreateHostCommand")
1134
- .sc(CreateHost$)
136
+ .sc(schemas_0.CreateHost$)
1135
137
  .build() {
1136
138
  }
1137
139
 
@@ -1143,7 +145,7 @@ class CreateRepositoryLinkCommand extends smithyClient.Command
1143
145
  })
1144
146
  .s("CodeConnections_20231201", "CreateRepositoryLink", {})
1145
147
  .n("CodeConnectionsClient", "CreateRepositoryLinkCommand")
1146
- .sc(CreateRepositoryLink$)
148
+ .sc(schemas_0.CreateRepositoryLink$)
1147
149
  .build() {
1148
150
  }
1149
151
 
@@ -1155,7 +157,7 @@ class CreateSyncConfigurationCommand extends smithyClient.Command
1155
157
  })
1156
158
  .s("CodeConnections_20231201", "CreateSyncConfiguration", {})
1157
159
  .n("CodeConnectionsClient", "CreateSyncConfigurationCommand")
1158
- .sc(CreateSyncConfiguration$)
160
+ .sc(schemas_0.CreateSyncConfiguration$)
1159
161
  .build() {
1160
162
  }
1161
163
 
@@ -1167,7 +169,7 @@ class DeleteConnectionCommand extends smithyClient.Command
1167
169
  })
1168
170
  .s("CodeConnections_20231201", "DeleteConnection", {})
1169
171
  .n("CodeConnectionsClient", "DeleteConnectionCommand")
1170
- .sc(DeleteConnection$)
172
+ .sc(schemas_0.DeleteConnection$)
1171
173
  .build() {
1172
174
  }
1173
175
 
@@ -1179,7 +181,7 @@ class DeleteHostCommand extends smithyClient.Command
1179
181
  })
1180
182
  .s("CodeConnections_20231201", "DeleteHost", {})
1181
183
  .n("CodeConnectionsClient", "DeleteHostCommand")
1182
- .sc(DeleteHost$)
184
+ .sc(schemas_0.DeleteHost$)
1183
185
  .build() {
1184
186
  }
1185
187
 
@@ -1191,7 +193,7 @@ class DeleteRepositoryLinkCommand extends smithyClient.Command
1191
193
  })
1192
194
  .s("CodeConnections_20231201", "DeleteRepositoryLink", {})
1193
195
  .n("CodeConnectionsClient", "DeleteRepositoryLinkCommand")
1194
- .sc(DeleteRepositoryLink$)
196
+ .sc(schemas_0.DeleteRepositoryLink$)
1195
197
  .build() {
1196
198
  }
1197
199
 
@@ -1203,7 +205,7 @@ class DeleteSyncConfigurationCommand extends smithyClient.Command
1203
205
  })
1204
206
  .s("CodeConnections_20231201", "DeleteSyncConfiguration", {})
1205
207
  .n("CodeConnectionsClient", "DeleteSyncConfigurationCommand")
1206
- .sc(DeleteSyncConfiguration$)
208
+ .sc(schemas_0.DeleteSyncConfiguration$)
1207
209
  .build() {
1208
210
  }
1209
211
 
@@ -1215,7 +217,7 @@ class GetConnectionCommand extends smithyClient.Command
1215
217
  })
1216
218
  .s("CodeConnections_20231201", "GetConnection", {})
1217
219
  .n("CodeConnectionsClient", "GetConnectionCommand")
1218
- .sc(GetConnection$)
220
+ .sc(schemas_0.GetConnection$)
1219
221
  .build() {
1220
222
  }
1221
223
 
@@ -1227,7 +229,7 @@ class GetHostCommand extends smithyClient.Command
1227
229
  })
1228
230
  .s("CodeConnections_20231201", "GetHost", {})
1229
231
  .n("CodeConnectionsClient", "GetHostCommand")
1230
- .sc(GetHost$)
232
+ .sc(schemas_0.GetHost$)
1231
233
  .build() {
1232
234
  }
1233
235
 
@@ -1239,7 +241,7 @@ class GetRepositoryLinkCommand extends smithyClient.Command
1239
241
  })
1240
242
  .s("CodeConnections_20231201", "GetRepositoryLink", {})
1241
243
  .n("CodeConnectionsClient", "GetRepositoryLinkCommand")
1242
- .sc(GetRepositoryLink$)
244
+ .sc(schemas_0.GetRepositoryLink$)
1243
245
  .build() {
1244
246
  }
1245
247
 
@@ -1251,7 +253,7 @@ class GetRepositorySyncStatusCommand extends smithyClient.Command
1251
253
  })
1252
254
  .s("CodeConnections_20231201", "GetRepositorySyncStatus", {})
1253
255
  .n("CodeConnectionsClient", "GetRepositorySyncStatusCommand")
1254
- .sc(GetRepositorySyncStatus$)
256
+ .sc(schemas_0.GetRepositorySyncStatus$)
1255
257
  .build() {
1256
258
  }
1257
259
 
@@ -1263,7 +265,7 @@ class GetResourceSyncStatusCommand extends smithyClient.Command
1263
265
  })
1264
266
  .s("CodeConnections_20231201", "GetResourceSyncStatus", {})
1265
267
  .n("CodeConnectionsClient", "GetResourceSyncStatusCommand")
1266
- .sc(GetResourceSyncStatus$)
268
+ .sc(schemas_0.GetResourceSyncStatus$)
1267
269
  .build() {
1268
270
  }
1269
271
 
@@ -1275,7 +277,7 @@ class GetSyncBlockerSummaryCommand extends smithyClient.Command
1275
277
  })
1276
278
  .s("CodeConnections_20231201", "GetSyncBlockerSummary", {})
1277
279
  .n("CodeConnectionsClient", "GetSyncBlockerSummaryCommand")
1278
- .sc(GetSyncBlockerSummary$)
280
+ .sc(schemas_0.GetSyncBlockerSummary$)
1279
281
  .build() {
1280
282
  }
1281
283
 
@@ -1287,7 +289,7 @@ class GetSyncConfigurationCommand extends smithyClient.Command
1287
289
  })
1288
290
  .s("CodeConnections_20231201", "GetSyncConfiguration", {})
1289
291
  .n("CodeConnectionsClient", "GetSyncConfigurationCommand")
1290
- .sc(GetSyncConfiguration$)
292
+ .sc(schemas_0.GetSyncConfiguration$)
1291
293
  .build() {
1292
294
  }
1293
295
 
@@ -1299,7 +301,7 @@ class ListConnectionsCommand extends smithyClient.Command
1299
301
  })
1300
302
  .s("CodeConnections_20231201", "ListConnections", {})
1301
303
  .n("CodeConnectionsClient", "ListConnectionsCommand")
1302
- .sc(ListConnections$)
304
+ .sc(schemas_0.ListConnections$)
1303
305
  .build() {
1304
306
  }
1305
307
 
@@ -1311,7 +313,7 @@ class ListHostsCommand extends smithyClient.Command
1311
313
  })
1312
314
  .s("CodeConnections_20231201", "ListHosts", {})
1313
315
  .n("CodeConnectionsClient", "ListHostsCommand")
1314
- .sc(ListHosts$)
316
+ .sc(schemas_0.ListHosts$)
1315
317
  .build() {
1316
318
  }
1317
319
 
@@ -1323,7 +325,7 @@ class ListRepositoryLinksCommand extends smithyClient.Command
1323
325
  })
1324
326
  .s("CodeConnections_20231201", "ListRepositoryLinks", {})
1325
327
  .n("CodeConnectionsClient", "ListRepositoryLinksCommand")
1326
- .sc(ListRepositoryLinks$)
328
+ .sc(schemas_0.ListRepositoryLinks$)
1327
329
  .build() {
1328
330
  }
1329
331
 
@@ -1335,7 +337,7 @@ class ListRepositorySyncDefinitionsCommand extends smithyClient.Command
1335
337
  })
1336
338
  .s("CodeConnections_20231201", "ListRepositorySyncDefinitions", {})
1337
339
  .n("CodeConnectionsClient", "ListRepositorySyncDefinitionsCommand")
1338
- .sc(ListRepositorySyncDefinitions$)
340
+ .sc(schemas_0.ListRepositorySyncDefinitions$)
1339
341
  .build() {
1340
342
  }
1341
343
 
@@ -1347,7 +349,7 @@ class ListSyncConfigurationsCommand extends smithyClient.Command
1347
349
  })
1348
350
  .s("CodeConnections_20231201", "ListSyncConfigurations", {})
1349
351
  .n("CodeConnectionsClient", "ListSyncConfigurationsCommand")
1350
- .sc(ListSyncConfigurations$)
352
+ .sc(schemas_0.ListSyncConfigurations$)
1351
353
  .build() {
1352
354
  }
1353
355
 
@@ -1359,7 +361,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
1359
361
  })
1360
362
  .s("CodeConnections_20231201", "ListTagsForResource", {})
1361
363
  .n("CodeConnectionsClient", "ListTagsForResourceCommand")
1362
- .sc(ListTagsForResource$)
364
+ .sc(schemas_0.ListTagsForResource$)
1363
365
  .build() {
1364
366
  }
1365
367
 
@@ -1371,7 +373,7 @@ class TagResourceCommand extends smithyClient.Command
1371
373
  })
1372
374
  .s("CodeConnections_20231201", "TagResource", {})
1373
375
  .n("CodeConnectionsClient", "TagResourceCommand")
1374
- .sc(TagResource$)
376
+ .sc(schemas_0.TagResource$)
1375
377
  .build() {
1376
378
  }
1377
379
 
@@ -1383,7 +385,7 @@ class UntagResourceCommand extends smithyClient.Command
1383
385
  })
1384
386
  .s("CodeConnections_20231201", "UntagResource", {})
1385
387
  .n("CodeConnectionsClient", "UntagResourceCommand")
1386
- .sc(UntagResource$)
388
+ .sc(schemas_0.UntagResource$)
1387
389
  .build() {
1388
390
  }
1389
391
 
@@ -1395,7 +397,7 @@ class UpdateHostCommand extends smithyClient.Command
1395
397
  })
1396
398
  .s("CodeConnections_20231201", "UpdateHost", {})
1397
399
  .n("CodeConnectionsClient", "UpdateHostCommand")
1398
- .sc(UpdateHost$)
400
+ .sc(schemas_0.UpdateHost$)
1399
401
  .build() {
1400
402
  }
1401
403
 
@@ -1407,7 +409,7 @@ class UpdateRepositoryLinkCommand extends smithyClient.Command
1407
409
  })
1408
410
  .s("CodeConnections_20231201", "UpdateRepositoryLink", {})
1409
411
  .n("CodeConnectionsClient", "UpdateRepositoryLinkCommand")
1410
- .sc(UpdateRepositoryLink$)
412
+ .sc(schemas_0.UpdateRepositoryLink$)
1411
413
  .build() {
1412
414
  }
1413
415
 
@@ -1419,7 +421,7 @@ class UpdateSyncBlockerCommand extends smithyClient.Command
1419
421
  })
1420
422
  .s("CodeConnections_20231201", "UpdateSyncBlocker", {})
1421
423
  .n("CodeConnectionsClient", "UpdateSyncBlockerCommand")
1422
- .sc(UpdateSyncBlocker$)
424
+ .sc(schemas_0.UpdateSyncBlocker$)
1423
425
  .build() {
1424
426
  }
1425
427
 
@@ -1431,7 +433,7 @@ class UpdateSyncConfigurationCommand extends smithyClient.Command
1431
433
  })
1432
434
  .s("CodeConnections_20231201", "UpdateSyncConfiguration", {})
1433
435
  .n("CodeConnectionsClient", "UpdateSyncConfigurationCommand")
1434
- .sc(UpdateSyncConfiguration$)
436
+ .sc(schemas_0.UpdateSyncConfiguration$)
1435
437
  .build() {
1436
438
  }
1437
439
 
@@ -1539,178 +541,62 @@ Object.defineProperty(exports, "__Client", {
1539
541
  enumerable: true,
1540
542
  get: function () { return smithyClient.Client; }
1541
543
  });
1542
- exports.AccessDeniedException = AccessDeniedException;
1543
- exports.AccessDeniedException$ = AccessDeniedException$;
544
+ Object.defineProperty(exports, "CodeConnectionsServiceException", {
545
+ enumerable: true,
546
+ get: function () { return CodeConnectionsServiceException.CodeConnectionsServiceException; }
547
+ });
1544
548
  exports.BlockerStatus = BlockerStatus;
1545
549
  exports.BlockerType = BlockerType;
1546
550
  exports.CodeConnections = CodeConnections;
1547
551
  exports.CodeConnectionsClient = CodeConnectionsClient;
1548
- exports.CodeConnectionsServiceException = CodeConnectionsServiceException;
1549
- exports.CodeConnectionsServiceException$ = CodeConnectionsServiceException$;
1550
- exports.ConcurrentModificationException = ConcurrentModificationException;
1551
- exports.ConcurrentModificationException$ = ConcurrentModificationException$;
1552
- exports.ConditionalCheckFailedException = ConditionalCheckFailedException;
1553
- exports.ConditionalCheckFailedException$ = ConditionalCheckFailedException$;
1554
- exports.ConflictException = ConflictException;
1555
- exports.ConflictException$ = ConflictException$;
1556
- exports.Connection$ = Connection$;
1557
552
  exports.ConnectionStatus = ConnectionStatus;
1558
- exports.CreateConnection$ = CreateConnection$;
1559
553
  exports.CreateConnectionCommand = CreateConnectionCommand;
1560
- exports.CreateConnectionInput$ = CreateConnectionInput$;
1561
- exports.CreateConnectionOutput$ = CreateConnectionOutput$;
1562
- exports.CreateHost$ = CreateHost$;
1563
554
  exports.CreateHostCommand = CreateHostCommand;
1564
- exports.CreateHostInput$ = CreateHostInput$;
1565
- exports.CreateHostOutput$ = CreateHostOutput$;
1566
- exports.CreateRepositoryLink$ = CreateRepositoryLink$;
1567
555
  exports.CreateRepositoryLinkCommand = CreateRepositoryLinkCommand;
1568
- exports.CreateRepositoryLinkInput$ = CreateRepositoryLinkInput$;
1569
- exports.CreateRepositoryLinkOutput$ = CreateRepositoryLinkOutput$;
1570
- exports.CreateSyncConfiguration$ = CreateSyncConfiguration$;
1571
556
  exports.CreateSyncConfigurationCommand = CreateSyncConfigurationCommand;
1572
- exports.CreateSyncConfigurationInput$ = CreateSyncConfigurationInput$;
1573
- exports.CreateSyncConfigurationOutput$ = CreateSyncConfigurationOutput$;
1574
- exports.DeleteConnection$ = DeleteConnection$;
1575
557
  exports.DeleteConnectionCommand = DeleteConnectionCommand;
1576
- exports.DeleteConnectionInput$ = DeleteConnectionInput$;
1577
- exports.DeleteConnectionOutput$ = DeleteConnectionOutput$;
1578
- exports.DeleteHost$ = DeleteHost$;
1579
558
  exports.DeleteHostCommand = DeleteHostCommand;
1580
- exports.DeleteHostInput$ = DeleteHostInput$;
1581
- exports.DeleteHostOutput$ = DeleteHostOutput$;
1582
- exports.DeleteRepositoryLink$ = DeleteRepositoryLink$;
1583
559
  exports.DeleteRepositoryLinkCommand = DeleteRepositoryLinkCommand;
1584
- exports.DeleteRepositoryLinkInput$ = DeleteRepositoryLinkInput$;
1585
- exports.DeleteRepositoryLinkOutput$ = DeleteRepositoryLinkOutput$;
1586
- exports.DeleteSyncConfiguration$ = DeleteSyncConfiguration$;
1587
560
  exports.DeleteSyncConfigurationCommand = DeleteSyncConfigurationCommand;
1588
- exports.DeleteSyncConfigurationInput$ = DeleteSyncConfigurationInput$;
1589
- exports.DeleteSyncConfigurationOutput$ = DeleteSyncConfigurationOutput$;
1590
- exports.GetConnection$ = GetConnection$;
1591
561
  exports.GetConnectionCommand = GetConnectionCommand;
1592
- exports.GetConnectionInput$ = GetConnectionInput$;
1593
- exports.GetConnectionOutput$ = GetConnectionOutput$;
1594
- exports.GetHost$ = GetHost$;
1595
562
  exports.GetHostCommand = GetHostCommand;
1596
- exports.GetHostInput$ = GetHostInput$;
1597
- exports.GetHostOutput$ = GetHostOutput$;
1598
- exports.GetRepositoryLink$ = GetRepositoryLink$;
1599
563
  exports.GetRepositoryLinkCommand = GetRepositoryLinkCommand;
1600
- exports.GetRepositoryLinkInput$ = GetRepositoryLinkInput$;
1601
- exports.GetRepositoryLinkOutput$ = GetRepositoryLinkOutput$;
1602
- exports.GetRepositorySyncStatus$ = GetRepositorySyncStatus$;
1603
564
  exports.GetRepositorySyncStatusCommand = GetRepositorySyncStatusCommand;
1604
- exports.GetRepositorySyncStatusInput$ = GetRepositorySyncStatusInput$;
1605
- exports.GetRepositorySyncStatusOutput$ = GetRepositorySyncStatusOutput$;
1606
- exports.GetResourceSyncStatus$ = GetResourceSyncStatus$;
1607
565
  exports.GetResourceSyncStatusCommand = GetResourceSyncStatusCommand;
1608
- exports.GetResourceSyncStatusInput$ = GetResourceSyncStatusInput$;
1609
- exports.GetResourceSyncStatusOutput$ = GetResourceSyncStatusOutput$;
1610
- exports.GetSyncBlockerSummary$ = GetSyncBlockerSummary$;
1611
566
  exports.GetSyncBlockerSummaryCommand = GetSyncBlockerSummaryCommand;
1612
- exports.GetSyncBlockerSummaryInput$ = GetSyncBlockerSummaryInput$;
1613
- exports.GetSyncBlockerSummaryOutput$ = GetSyncBlockerSummaryOutput$;
1614
- exports.GetSyncConfiguration$ = GetSyncConfiguration$;
1615
567
  exports.GetSyncConfigurationCommand = GetSyncConfigurationCommand;
1616
- exports.GetSyncConfigurationInput$ = GetSyncConfigurationInput$;
1617
- exports.GetSyncConfigurationOutput$ = GetSyncConfigurationOutput$;
1618
- exports.Host$ = Host$;
1619
- exports.InternalServerException = InternalServerException;
1620
- exports.InternalServerException$ = InternalServerException$;
1621
- exports.InvalidInputException = InvalidInputException;
1622
- exports.InvalidInputException$ = InvalidInputException$;
1623
- exports.LimitExceededException = LimitExceededException;
1624
- exports.LimitExceededException$ = LimitExceededException$;
1625
- exports.ListConnections$ = ListConnections$;
1626
568
  exports.ListConnectionsCommand = ListConnectionsCommand;
1627
- exports.ListConnectionsInput$ = ListConnectionsInput$;
1628
- exports.ListConnectionsOutput$ = ListConnectionsOutput$;
1629
- exports.ListHosts$ = ListHosts$;
1630
569
  exports.ListHostsCommand = ListHostsCommand;
1631
- exports.ListHostsInput$ = ListHostsInput$;
1632
- exports.ListHostsOutput$ = ListHostsOutput$;
1633
- exports.ListRepositoryLinks$ = ListRepositoryLinks$;
1634
570
  exports.ListRepositoryLinksCommand = ListRepositoryLinksCommand;
1635
- exports.ListRepositoryLinksInput$ = ListRepositoryLinksInput$;
1636
- exports.ListRepositoryLinksOutput$ = ListRepositoryLinksOutput$;
1637
- exports.ListRepositorySyncDefinitions$ = ListRepositorySyncDefinitions$;
1638
571
  exports.ListRepositorySyncDefinitionsCommand = ListRepositorySyncDefinitionsCommand;
1639
- exports.ListRepositorySyncDefinitionsInput$ = ListRepositorySyncDefinitionsInput$;
1640
- exports.ListRepositorySyncDefinitionsOutput$ = ListRepositorySyncDefinitionsOutput$;
1641
- exports.ListSyncConfigurations$ = ListSyncConfigurations$;
1642
572
  exports.ListSyncConfigurationsCommand = ListSyncConfigurationsCommand;
1643
- exports.ListSyncConfigurationsInput$ = ListSyncConfigurationsInput$;
1644
- exports.ListSyncConfigurationsOutput$ = ListSyncConfigurationsOutput$;
1645
- exports.ListTagsForResource$ = ListTagsForResource$;
1646
573
  exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
1647
- exports.ListTagsForResourceInput$ = ListTagsForResourceInput$;
1648
- exports.ListTagsForResourceOutput$ = ListTagsForResourceOutput$;
1649
574
  exports.ProviderType = ProviderType;
1650
575
  exports.PublishDeploymentStatus = PublishDeploymentStatus;
1651
576
  exports.PullRequestComment = PullRequestComment;
1652
- exports.RepositoryLinkInfo$ = RepositoryLinkInfo$;
1653
- exports.RepositorySyncAttempt$ = RepositorySyncAttempt$;
1654
- exports.RepositorySyncDefinition$ = RepositorySyncDefinition$;
1655
- exports.RepositorySyncEvent$ = RepositorySyncEvent$;
1656
577
  exports.RepositorySyncStatus = RepositorySyncStatus;
1657
- exports.ResourceAlreadyExistsException = ResourceAlreadyExistsException;
1658
- exports.ResourceAlreadyExistsException$ = ResourceAlreadyExistsException$;
1659
- exports.ResourceNotFoundException = ResourceNotFoundException;
1660
- exports.ResourceNotFoundException$ = ResourceNotFoundException$;
1661
- exports.ResourceSyncAttempt$ = ResourceSyncAttempt$;
1662
- exports.ResourceSyncEvent$ = ResourceSyncEvent$;
1663
578
  exports.ResourceSyncStatus = ResourceSyncStatus;
1664
- exports.ResourceUnavailableException = ResourceUnavailableException;
1665
- exports.ResourceUnavailableException$ = ResourceUnavailableException$;
1666
- exports.RetryLatestCommitFailedException = RetryLatestCommitFailedException;
1667
- exports.RetryLatestCommitFailedException$ = RetryLatestCommitFailedException$;
1668
- exports.Revision$ = Revision$;
1669
- exports.SyncBlocker$ = SyncBlocker$;
1670
- exports.SyncBlockerContext$ = SyncBlockerContext$;
1671
- exports.SyncBlockerDoesNotExistException = SyncBlockerDoesNotExistException;
1672
- exports.SyncBlockerDoesNotExistException$ = SyncBlockerDoesNotExistException$;
1673
- exports.SyncBlockerSummary$ = SyncBlockerSummary$;
1674
- exports.SyncConfiguration$ = SyncConfiguration$;
1675
- exports.SyncConfigurationStillExistsException = SyncConfigurationStillExistsException;
1676
- exports.SyncConfigurationStillExistsException$ = SyncConfigurationStillExistsException$;
1677
579
  exports.SyncConfigurationType = SyncConfigurationType;
1678
- exports.Tag$ = Tag$;
1679
- exports.TagResource$ = TagResource$;
1680
580
  exports.TagResourceCommand = TagResourceCommand;
1681
- exports.TagResourceInput$ = TagResourceInput$;
1682
- exports.TagResourceOutput$ = TagResourceOutput$;
1683
- exports.ThrottlingException = ThrottlingException;
1684
- exports.ThrottlingException$ = ThrottlingException$;
1685
581
  exports.TriggerResourceUpdateOn = TriggerResourceUpdateOn;
1686
- exports.UnsupportedOperationException = UnsupportedOperationException;
1687
- exports.UnsupportedOperationException$ = UnsupportedOperationException$;
1688
- exports.UnsupportedProviderTypeException = UnsupportedProviderTypeException;
1689
- exports.UnsupportedProviderTypeException$ = UnsupportedProviderTypeException$;
1690
- exports.UntagResource$ = UntagResource$;
1691
582
  exports.UntagResourceCommand = UntagResourceCommand;
1692
- exports.UntagResourceInput$ = UntagResourceInput$;
1693
- exports.UntagResourceOutput$ = UntagResourceOutput$;
1694
- exports.UpdateHost$ = UpdateHost$;
1695
583
  exports.UpdateHostCommand = UpdateHostCommand;
1696
- exports.UpdateHostInput$ = UpdateHostInput$;
1697
- exports.UpdateHostOutput$ = UpdateHostOutput$;
1698
- exports.UpdateOutOfSyncException = UpdateOutOfSyncException;
1699
- exports.UpdateOutOfSyncException$ = UpdateOutOfSyncException$;
1700
- exports.UpdateRepositoryLink$ = UpdateRepositoryLink$;
1701
584
  exports.UpdateRepositoryLinkCommand = UpdateRepositoryLinkCommand;
1702
- exports.UpdateRepositoryLinkInput$ = UpdateRepositoryLinkInput$;
1703
- exports.UpdateRepositoryLinkOutput$ = UpdateRepositoryLinkOutput$;
1704
- exports.UpdateSyncBlocker$ = UpdateSyncBlocker$;
1705
585
  exports.UpdateSyncBlockerCommand = UpdateSyncBlockerCommand;
1706
- exports.UpdateSyncBlockerInput$ = UpdateSyncBlockerInput$;
1707
- exports.UpdateSyncBlockerOutput$ = UpdateSyncBlockerOutput$;
1708
- exports.UpdateSyncConfiguration$ = UpdateSyncConfiguration$;
1709
586
  exports.UpdateSyncConfigurationCommand = UpdateSyncConfigurationCommand;
1710
- exports.UpdateSyncConfigurationInput$ = UpdateSyncConfigurationInput$;
1711
- exports.UpdateSyncConfigurationOutput$ = UpdateSyncConfigurationOutput$;
1712
- exports.VpcConfiguration$ = VpcConfiguration$;
1713
587
  exports.paginateListConnections = paginateListConnections;
1714
588
  exports.paginateListHosts = paginateListHosts;
1715
589
  exports.paginateListRepositoryLinks = paginateListRepositoryLinks;
1716
590
  exports.paginateListSyncConfigurations = paginateListSyncConfigurations;
591
+ Object.keys(schemas_0).forEach(function (k) {
592
+ if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
593
+ enumerable: true,
594
+ get: function () { return schemas_0[k]; }
595
+ });
596
+ });
597
+ Object.keys(errors).forEach(function (k) {
598
+ if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
599
+ enumerable: true,
600
+ get: function () { return errors[k]; }
601
+ });
602
+ });