@aws-sdk/client-codecatalyst 3.952.0 → 3.953.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 (58) hide show
  1. package/dist-cjs/index.js +487 -335
  2. package/dist-cjs/runtimeConfig.shared.js +6 -1
  3. package/dist-es/commands/CreateAccessTokenCommand.js +2 -2
  4. package/dist-es/commands/CreateDevEnvironmentCommand.js +2 -2
  5. package/dist-es/commands/CreateProjectCommand.js +2 -2
  6. package/dist-es/commands/CreateSourceRepositoryBranchCommand.js +2 -2
  7. package/dist-es/commands/CreateSourceRepositoryCommand.js +2 -2
  8. package/dist-es/commands/DeleteAccessTokenCommand.js +2 -2
  9. package/dist-es/commands/DeleteDevEnvironmentCommand.js +2 -2
  10. package/dist-es/commands/DeleteProjectCommand.js +2 -2
  11. package/dist-es/commands/DeleteSourceRepositoryCommand.js +2 -2
  12. package/dist-es/commands/DeleteSpaceCommand.js +2 -2
  13. package/dist-es/commands/GetDevEnvironmentCommand.js +2 -2
  14. package/dist-es/commands/GetProjectCommand.js +2 -2
  15. package/dist-es/commands/GetSourceRepositoryCloneUrlsCommand.js +2 -2
  16. package/dist-es/commands/GetSourceRepositoryCommand.js +2 -2
  17. package/dist-es/commands/GetSpaceCommand.js +2 -2
  18. package/dist-es/commands/GetSubscriptionCommand.js +2 -2
  19. package/dist-es/commands/GetUserDetailsCommand.js +2 -2
  20. package/dist-es/commands/GetWorkflowCommand.js +2 -2
  21. package/dist-es/commands/GetWorkflowRunCommand.js +2 -2
  22. package/dist-es/commands/ListAccessTokensCommand.js +2 -2
  23. package/dist-es/commands/ListDevEnvironmentSessionsCommand.js +2 -2
  24. package/dist-es/commands/ListDevEnvironmentsCommand.js +2 -2
  25. package/dist-es/commands/ListEventLogsCommand.js +2 -2
  26. package/dist-es/commands/ListProjectsCommand.js +2 -2
  27. package/dist-es/commands/ListSourceRepositoriesCommand.js +2 -2
  28. package/dist-es/commands/ListSourceRepositoryBranchesCommand.js +2 -2
  29. package/dist-es/commands/ListSpacesCommand.js +2 -2
  30. package/dist-es/commands/ListWorkflowRunsCommand.js +2 -2
  31. package/dist-es/commands/ListWorkflowsCommand.js +2 -2
  32. package/dist-es/commands/StartDevEnvironmentCommand.js +2 -2
  33. package/dist-es/commands/StartDevEnvironmentSessionCommand.js +2 -2
  34. package/dist-es/commands/StartWorkflowRunCommand.js +2 -2
  35. package/dist-es/commands/StopDevEnvironmentCommand.js +2 -2
  36. package/dist-es/commands/StopDevEnvironmentSessionCommand.js +2 -2
  37. package/dist-es/commands/UpdateDevEnvironmentCommand.js +2 -2
  38. package/dist-es/commands/UpdateProjectCommand.js +2 -2
  39. package/dist-es/commands/UpdateSpaceCommand.js +2 -2
  40. package/dist-es/commands/VerifySessionCommand.js +2 -2
  41. package/dist-es/index.js +1 -0
  42. package/dist-es/runtimeConfig.shared.js +6 -1
  43. package/dist-es/schemas/schemas_0.js +286 -284
  44. package/dist-types/CodeCatalystClient.d.ts +1 -10
  45. package/dist-types/index.d.ts +1 -0
  46. package/dist-types/runtimeConfig.browser.d.ts +6 -2
  47. package/dist-types/runtimeConfig.d.ts +6 -2
  48. package/dist-types/runtimeConfig.native.d.ts +6 -2
  49. package/dist-types/runtimeConfig.shared.d.ts +6 -1
  50. package/dist-types/schemas/schemas_0.d.ts +151 -175
  51. package/dist-types/ts3.4/CodeCatalystClient.d.ts +0 -4
  52. package/dist-types/ts3.4/index.d.ts +1 -0
  53. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
  54. package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
  55. package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
  56. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
  57. package/dist-types/ts3.4/schemas/schemas_0.d.ts +150 -176
  58. package/package.json +34 -34
package/dist-cjs/index.js CHANGED
@@ -108,14 +108,14 @@ class CodeCatalystClient extends smithyClient.Client {
108
108
  }
109
109
  }
110
110
 
111
- let CodeCatalystServiceException$1 = class CodeCatalystServiceException extends smithyClient.ServiceException {
111
+ class CodeCatalystServiceException extends smithyClient.ServiceException {
112
112
  constructor(options) {
113
113
  super(options);
114
114
  Object.setPrototypeOf(this, CodeCatalystServiceException.prototype);
115
115
  }
116
- };
116
+ }
117
117
 
118
- let AccessDeniedException$1 = class AccessDeniedException extends CodeCatalystServiceException$1 {
118
+ class AccessDeniedException extends CodeCatalystServiceException {
119
119
  name = "AccessDeniedException";
120
120
  $fault = "client";
121
121
  constructor(opts) {
@@ -126,8 +126,8 @@ let AccessDeniedException$1 = class AccessDeniedException extends CodeCatalystSe
126
126
  });
127
127
  Object.setPrototypeOf(this, AccessDeniedException.prototype);
128
128
  }
129
- };
130
- let ConflictException$1 = class ConflictException extends CodeCatalystServiceException$1 {
129
+ }
130
+ class ConflictException extends CodeCatalystServiceException {
131
131
  name = "ConflictException";
132
132
  $fault = "client";
133
133
  constructor(opts) {
@@ -138,8 +138,8 @@ let ConflictException$1 = class ConflictException extends CodeCatalystServiceExc
138
138
  });
139
139
  Object.setPrototypeOf(this, ConflictException.prototype);
140
140
  }
141
- };
142
- let ResourceNotFoundException$1 = class ResourceNotFoundException extends CodeCatalystServiceException$1 {
141
+ }
142
+ class ResourceNotFoundException extends CodeCatalystServiceException {
143
143
  name = "ResourceNotFoundException";
144
144
  $fault = "client";
145
145
  constructor(opts) {
@@ -150,8 +150,8 @@ let ResourceNotFoundException$1 = class ResourceNotFoundException extends CodeCa
150
150
  });
151
151
  Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
152
152
  }
153
- };
154
- let ServiceQuotaExceededException$1 = class ServiceQuotaExceededException extends CodeCatalystServiceException$1 {
153
+ }
154
+ class ServiceQuotaExceededException extends CodeCatalystServiceException {
155
155
  name = "ServiceQuotaExceededException";
156
156
  $fault = "client";
157
157
  constructor(opts) {
@@ -162,8 +162,8 @@ let ServiceQuotaExceededException$1 = class ServiceQuotaExceededException extend
162
162
  });
163
163
  Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
164
164
  }
165
- };
166
- let ThrottlingException$1 = class ThrottlingException extends CodeCatalystServiceException$1 {
165
+ }
166
+ class ThrottlingException extends CodeCatalystServiceException {
167
167
  name = "ThrottlingException";
168
168
  $fault = "client";
169
169
  $retryable = {};
@@ -175,8 +175,8 @@ let ThrottlingException$1 = class ThrottlingException extends CodeCatalystServic
175
175
  });
176
176
  Object.setPrototypeOf(this, ThrottlingException.prototype);
177
177
  }
178
- };
179
- let ValidationException$1 = class ValidationException extends CodeCatalystServiceException$1 {
178
+ }
179
+ class ValidationException extends CodeCatalystServiceException {
180
180
  name = "ValidationException";
181
181
  $fault = "client";
182
182
  constructor(opts) {
@@ -187,7 +187,7 @@ let ValidationException$1 = class ValidationException extends CodeCatalystServic
187
187
  });
188
188
  Object.setPrototypeOf(this, ValidationException.prototype);
189
189
  }
190
- };
190
+ }
191
191
 
192
192
  const _ADE = "AccessDeniedException";
193
193
  const _ATS = "AccessTokenSecret";
@@ -459,13 +459,13 @@ const _wN = "workflowName";
459
459
  const n0 = "com.amazonaws.codecatalyst";
460
460
  var AccessTokenSecret = [0, n0, _ATS, 8, 0];
461
461
  var SensitiveString = [0, n0, _SS, 8, 0];
462
- var AccessDeniedException = [-3, n0, _ADE, { [_e]: _c, [_hE]: 403 }, [_m], [0]];
463
- schema.TypeRegistry.for(n0).registerError(AccessDeniedException, AccessDeniedException$1);
464
- var AccessTokenSummary = [3, n0, _ATSc, 0, [_i, _n, _eT], [0, 0, 5]];
465
- var ConflictException = [-3, n0, _CE, { [_e]: _c, [_hE]: 409 }, [_m], [0]];
466
- schema.TypeRegistry.for(n0).registerError(ConflictException, ConflictException$1);
467
- var CreateAccessTokenRequest = [3, n0, _CATR, 0, [_n, _eT], [0, 5]];
468
- var CreateAccessTokenResponse = [
462
+ var AccessDeniedException$ = [-3, n0, _ADE, { [_e]: _c, [_hE]: 403 }, [_m], [0]];
463
+ schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
464
+ var AccessTokenSummary$ = [3, n0, _ATSc, 0, [_i, _n, _eT], [0, 0, 5]];
465
+ var ConflictException$ = [-3, n0, _CE, { [_e]: _c, [_hE]: 409 }, [_m], [0]];
466
+ schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
467
+ var CreateAccessTokenRequest$ = [3, n0, _CATR, 0, [_n, _eT], [0, 5]];
468
+ var CreateAccessTokenResponse$ = [
469
469
  3,
470
470
  n0,
471
471
  _CATRr,
@@ -473,7 +473,7 @@ var CreateAccessTokenResponse = [
473
473
  [_s, _n, _eT, _aTI],
474
474
  [[() => AccessTokenSecret, 0], 0, 5, 0],
475
475
  ];
476
- var CreateDevEnvironmentRequest = [
476
+ var CreateDevEnvironmentRequest$ = [
477
477
  3,
478
478
  n0,
479
479
  _CDER,
@@ -488,14 +488,21 @@ var CreateDevEnvironmentRequest = [
488
488
  () => IdeConfigurationList,
489
489
  0,
490
490
  1,
491
- () => PersistentStorageConfiguration,
491
+ () => PersistentStorageConfiguration$,
492
492
  0,
493
493
  ],
494
494
  ];
495
- var CreateDevEnvironmentResponse = [3, n0, _CDERr, 0, [_sN, _pN, _i, _vCN], [0, 0, 0, 0]];
496
- var CreateProjectRequest = [3, n0, _CPR, 0, [_sN, _dN, _d], [[0, 1], 0, 0]];
497
- var CreateProjectResponse = [3, n0, _CPRr, 0, [_sN, _n, _dN, _d], [0, 0, 0, 0]];
498
- var CreateSourceRepositoryBranchRequest = [
495
+ var CreateDevEnvironmentResponse$ = [
496
+ 3,
497
+ n0,
498
+ _CDERr,
499
+ 0,
500
+ [_sN, _pN, _i, _vCN],
501
+ [0, 0, 0, 0],
502
+ ];
503
+ var CreateProjectRequest$ = [3, n0, _CPR, 0, [_sN, _dN, _d], [[0, 1], 0, 0]];
504
+ var CreateProjectResponse$ = [3, n0, _CPRr, 0, [_sN, _n, _dN, _d], [0, 0, 0, 0]];
505
+ var CreateSourceRepositoryBranchRequest$ = [
499
506
  3,
500
507
  n0,
501
508
  _CSRBR,
@@ -503,7 +510,7 @@ var CreateSourceRepositoryBranchRequest = [
503
510
  [_sN, _pN, _sRN, _n, _hCI],
504
511
  [[0, 1], [0, 1], [0, 1], [0, 1], 0],
505
512
  ];
506
- var CreateSourceRepositoryBranchResponse = [
513
+ var CreateSourceRepositoryBranchResponse$ = [
507
514
  3,
508
515
  n0,
509
516
  _CSRBRr,
@@ -511,7 +518,7 @@ var CreateSourceRepositoryBranchResponse = [
511
518
  [_re, _n, _lUT, _hCI],
512
519
  [0, 0, 5, 0],
513
520
  ];
514
- var CreateSourceRepositoryRequest = [
521
+ var CreateSourceRepositoryRequest$ = [
515
522
  3,
516
523
  n0,
517
524
  _CSRR,
@@ -519,10 +526,17 @@ var CreateSourceRepositoryRequest = [
519
526
  [_sN, _pN, _n, _d],
520
527
  [[0, 1], [0, 1], [0, 1], 0],
521
528
  ];
522
- var CreateSourceRepositoryResponse = [3, n0, _CSRRr, 0, [_sN, _pN, _n, _d], [0, 0, 0, 0]];
523
- var DeleteAccessTokenRequest = [3, n0, _DATR, 0, [_i], [[0, 1]]];
524
- var DeleteAccessTokenResponse = [3, n0, _DATRe, 0, [], []];
525
- var DeleteDevEnvironmentRequest = [
529
+ var CreateSourceRepositoryResponse$ = [
530
+ 3,
531
+ n0,
532
+ _CSRRr,
533
+ 0,
534
+ [_sN, _pN, _n, _d],
535
+ [0, 0, 0, 0],
536
+ ];
537
+ var DeleteAccessTokenRequest$ = [3, n0, _DATR, 0, [_i], [[0, 1]]];
538
+ var DeleteAccessTokenResponse$ = [3, n0, _DATRe, 0, [], []];
539
+ var DeleteDevEnvironmentRequest$ = [
526
540
  3,
527
541
  n0,
528
542
  _DDER,
@@ -534,8 +548,8 @@ var DeleteDevEnvironmentRequest = [
534
548
  [0, 1],
535
549
  ],
536
550
  ];
537
- var DeleteDevEnvironmentResponse = [3, n0, _DDERe, 0, [_sN, _pN, _i], [0, 0, 0]];
538
- var DeleteProjectRequest = [
551
+ var DeleteDevEnvironmentResponse$ = [3, n0, _DDERe, 0, [_sN, _pN, _i], [0, 0, 0]];
552
+ var DeleteProjectRequest$ = [
539
553
  3,
540
554
  n0,
541
555
  _DPR,
@@ -546,8 +560,8 @@ var DeleteProjectRequest = [
546
560
  [0, 1],
547
561
  ],
548
562
  ];
549
- var DeleteProjectResponse = [3, n0, _DPRe, 0, [_sN, _n, _dN], [0, 0, 0]];
550
- var DeleteSourceRepositoryRequest = [
563
+ var DeleteProjectResponse$ = [3, n0, _DPRe, 0, [_sN, _n, _dN], [0, 0, 0]];
564
+ var DeleteSourceRepositoryRequest$ = [
551
565
  3,
552
566
  n0,
553
567
  _DSRR,
@@ -559,10 +573,10 @@ var DeleteSourceRepositoryRequest = [
559
573
  [0, 1],
560
574
  ],
561
575
  ];
562
- var DeleteSourceRepositoryResponse = [3, n0, _DSRRe, 0, [_sN, _pN, _n], [0, 0, 0]];
563
- var DeleteSpaceRequest = [3, n0, _DSR, 0, [_n], [[0, 1]]];
564
- var DeleteSpaceResponse = [3, n0, _DSRe, 0, [_n, _dN], [0, 0]];
565
- var DevEnvironmentAccessDetails = [
576
+ var DeleteSourceRepositoryResponse$ = [3, n0, _DSRRe, 0, [_sN, _pN, _n], [0, 0, 0]];
577
+ var DeleteSpaceRequest$ = [3, n0, _DSR, 0, [_n], [[0, 1]]];
578
+ var DeleteSpaceResponse$ = [3, n0, _DSRe, 0, [_n, _dN], [0, 0]];
579
+ var DevEnvironmentAccessDetails$ = [
566
580
  3,
567
581
  n0,
568
582
  _DEAD,
@@ -573,16 +587,16 @@ var DevEnvironmentAccessDetails = [
573
587
  [() => SensitiveString, 0],
574
588
  ],
575
589
  ];
576
- var DevEnvironmentRepositorySummary = [3, n0, _DERS, 0, [_rN, _bN], [0, 0]];
577
- var DevEnvironmentSessionConfiguration = [
590
+ var DevEnvironmentRepositorySummary$ = [3, n0, _DERS, 0, [_rN, _bN], [0, 0]];
591
+ var DevEnvironmentSessionConfiguration$ = [
578
592
  3,
579
593
  n0,
580
594
  _DESC,
581
595
  0,
582
596
  [_sT, _eCSC],
583
- [0, () => ExecuteCommandSessionConfiguration],
597
+ [0, () => ExecuteCommandSessionConfiguration$],
584
598
  ];
585
- var DevEnvironmentSessionSummary = [
599
+ var DevEnvironmentSessionSummary$ = [
586
600
  3,
587
601
  n0,
588
602
  _DESS,
@@ -590,16 +604,16 @@ var DevEnvironmentSessionSummary = [
590
604
  [_sN, _pN, _dEI, _sTt, _i],
591
605
  [0, 0, 0, 5, 0],
592
606
  ];
593
- var DevEnvironmentSummary = [
607
+ var DevEnvironmentSummary$ = [
594
608
  3,
595
609
  n0,
596
610
  _DES,
597
611
  0,
598
612
  [_sN, _pN, _i, _lUT, _cI, _st, _sR, _r, _a, _id, _iT, _iTM, _pS, _vCN],
599
- [0, 0, 0, 5, 0, 0, 0, () => DevEnvironmentRepositorySummaries, 0, () => Ides, 0, 1, () => PersistentStorage, 0],
613
+ [0, 0, 0, 5, 0, 0, 0, () => DevEnvironmentRepositorySummaries, 0, () => Ides, 0, 1, () => PersistentStorage$, 0],
600
614
  ];
601
- var EmailAddress = [3, n0, _EA, 0, [_em, _v], [0, 2]];
602
- var EventLogEntry = [
615
+ var EmailAddress$ = [3, n0, _EA, 0, [_em, _v], [0, 2]];
616
+ var EventLogEntry$ = [
603
617
  3,
604
618
  n0,
605
619
  _ELE,
@@ -613,20 +627,20 @@ var EventLogEntry = [
613
627
  0,
614
628
  5,
615
629
  0,
616
- () => UserIdentity,
617
- () => ProjectInformation,
630
+ () => UserIdentity$,
631
+ () => ProjectInformation$,
618
632
  0,
619
- () => EventPayload,
620
- () => EventPayload,
633
+ () => EventPayload$,
634
+ () => EventPayload$,
621
635
  0,
622
636
  0,
623
637
  0,
624
638
  ],
625
639
  ];
626
- var EventPayload = [3, n0, _EP, 0, [_cTo, _da], [0, 0]];
627
- var ExecuteCommandSessionConfiguration = [3, n0, _ECSC, 0, [_co, _ar], [0, 64 | 0]];
628
- var Filter = [3, n0, _F, 0, [_k, _va, _cO], [0, 64 | 0, 0]];
629
- var GetDevEnvironmentRequest = [
640
+ var EventPayload$ = [3, n0, _EP, 0, [_cTo, _da], [0, 0]];
641
+ var ExecuteCommandSessionConfiguration$ = [3, n0, _ECSC, 0, [_co, _ar], [0, 64 | 0]];
642
+ var Filter$ = [3, n0, _F, 0, [_k, _va, _cO], [0, 64 | 0, 0]];
643
+ var GetDevEnvironmentRequest$ = [
630
644
  3,
631
645
  n0,
632
646
  _GDER,
@@ -638,15 +652,15 @@ var GetDevEnvironmentRequest = [
638
652
  [0, 1],
639
653
  ],
640
654
  ];
641
- var GetDevEnvironmentResponse = [
655
+ var GetDevEnvironmentResponse$ = [
642
656
  3,
643
657
  n0,
644
658
  _GDERe,
645
659
  0,
646
660
  [_sN, _pN, _i, _lUT, _cI, _st, _sR, _r, _a, _id, _iT, _iTM, _pS, _vCN],
647
- [0, 0, 0, 5, 0, 0, 0, () => DevEnvironmentRepositorySummaries, 0, () => Ides, 0, 1, () => PersistentStorage, 0],
661
+ [0, 0, 0, 5, 0, 0, 0, () => DevEnvironmentRepositorySummaries, 0, () => Ides, 0, 1, () => PersistentStorage$, 0],
648
662
  ];
649
- var GetProjectRequest = [
663
+ var GetProjectRequest$ = [
650
664
  3,
651
665
  n0,
652
666
  _GPR,
@@ -657,8 +671,8 @@ var GetProjectRequest = [
657
671
  [0, 1],
658
672
  ],
659
673
  ];
660
- var GetProjectResponse = [3, n0, _GPRe, 0, [_sN, _n, _dN, _d], [0, 0, 0, 0]];
661
- var GetSourceRepositoryCloneUrlsRequest = [
674
+ var GetProjectResponse$ = [3, n0, _GPRe, 0, [_sN, _n, _dN, _d], [0, 0, 0, 0]];
675
+ var GetSourceRepositoryCloneUrlsRequest$ = [
662
676
  3,
663
677
  n0,
664
678
  _GSRCUR,
@@ -670,8 +684,8 @@ var GetSourceRepositoryCloneUrlsRequest = [
670
684
  [0, 1],
671
685
  ],
672
686
  ];
673
- var GetSourceRepositoryCloneUrlsResponse = [3, n0, _GSRCURe, 0, [_h], [0]];
674
- var GetSourceRepositoryRequest = [
687
+ var GetSourceRepositoryCloneUrlsResponse$ = [3, n0, _GSRCURe, 0, [_h], [0]];
688
+ var GetSourceRepositoryRequest$ = [
675
689
  3,
676
690
  n0,
677
691
  _GSRR,
@@ -683,7 +697,7 @@ var GetSourceRepositoryRequest = [
683
697
  [0, 1],
684
698
  ],
685
699
  ];
686
- var GetSourceRepositoryResponse = [
700
+ var GetSourceRepositoryResponse$ = [
687
701
  3,
688
702
  n0,
689
703
  _GSRRe,
@@ -691,10 +705,10 @@ var GetSourceRepositoryResponse = [
691
705
  [_sN, _pN, _n, _d, _lUT, _cTr],
692
706
  [0, 0, 0, 0, 5, 5],
693
707
  ];
694
- var GetSpaceRequest = [3, n0, _GSR, 0, [_n], [[0, 1]]];
695
- var GetSpaceResponse = [3, n0, _GSRe, 0, [_n, _rNe, _dN, _d], [0, 0, 0, 0]];
696
- var GetSubscriptionRequest = [3, n0, _GSRet, 0, [_sN], [[0, 1]]];
697
- var GetSubscriptionResponse = [
708
+ var GetSpaceRequest$ = [3, n0, _GSR, 0, [_n], [[0, 1]]];
709
+ var GetSpaceResponse$ = [3, n0, _GSRe, 0, [_n, _rNe, _dN, _d], [0, 0, 0, 0]];
710
+ var GetSubscriptionRequest$ = [3, n0, _GSRet, 0, [_sN], [[0, 1]]];
711
+ var GetSubscriptionResponse$ = [
698
712
  3,
699
713
  n0,
700
714
  _GSRetu,
@@ -702,7 +716,7 @@ var GetSubscriptionResponse = [
702
716
  [_sTu, _aAN, _pST, _pSST],
703
717
  [0, 0, 0, 5],
704
718
  ];
705
- var GetUserDetailsRequest = [
719
+ var GetUserDetailsRequest$ = [
706
720
  3,
707
721
  n0,
708
722
  _GUDR,
@@ -713,15 +727,15 @@ var GetUserDetailsRequest = [
713
727
  [0, { [_hQ]: _uN }],
714
728
  ],
715
729
  ];
716
- var GetUserDetailsResponse = [
730
+ var GetUserDetailsResponse$ = [
717
731
  3,
718
732
  n0,
719
733
  _GUDRe,
720
734
  0,
721
735
  [_uIs, _uN, _dN, _pE, _ve],
722
- [0, 0, 0, () => EmailAddress, 0],
736
+ [0, 0, 0, () => EmailAddress$, 0],
723
737
  ];
724
- var GetWorkflowRequest = [
738
+ var GetWorkflowRequest$ = [
725
739
  3,
726
740
  n0,
727
741
  _GWR,
@@ -733,15 +747,15 @@ var GetWorkflowRequest = [
733
747
  [0, 1],
734
748
  ],
735
749
  ];
736
- var GetWorkflowResponse = [
750
+ var GetWorkflowResponse$ = [
737
751
  3,
738
752
  n0,
739
753
  _GWRe,
740
754
  0,
741
755
  [_sN, _pN, _i, _n, _sRN, _sBN, _de, _cTr, _lUT, _rM, _st],
742
- [0, 0, 0, 0, 0, 0, () => WorkflowDefinition, 5, 5, 0, 0],
756
+ [0, 0, 0, 0, 0, 0, () => WorkflowDefinition$, 5, 5, 0, 0],
743
757
  ];
744
- var GetWorkflowRunRequest = [
758
+ var GetWorkflowRunRequest$ = [
745
759
  3,
746
760
  n0,
747
761
  _GWRR,
@@ -753,7 +767,7 @@ var GetWorkflowRunRequest = [
753
767
  [0, 1],
754
768
  ],
755
769
  ];
756
- var GetWorkflowRunResponse = [
770
+ var GetWorkflowRunResponse$ = [
757
771
  3,
758
772
  n0,
759
773
  _GWRRe,
@@ -761,10 +775,10 @@ var GetWorkflowRunResponse = [
761
775
  [_sN, _pN, _i, _wI, _st, _sRt, _sTta, _eTn, _lUT],
762
776
  [0, 0, 0, 0, 0, () => WorkflowRunStatusReasons, 5, 5, 5],
763
777
  ];
764
- var Ide = [3, n0, _I, 0, [_ru, _n], [0, 0]];
765
- var IdeConfiguration = [3, n0, _IC, 0, [_ru, _n], [0, 0]];
766
- var ListAccessTokensRequest = [3, n0, _LATR, 0, [_mR, _nT], [1, 0]];
767
- var ListAccessTokensResponse = [
778
+ var Ide$ = [3, n0, _I, 0, [_ru, _n], [0, 0]];
779
+ var IdeConfiguration$ = [3, n0, _IC, 0, [_ru, _n], [0, 0]];
780
+ var ListAccessTokensRequest$ = [3, n0, _LATR, 0, [_mR, _nT], [1, 0]];
781
+ var ListAccessTokensResponse$ = [
768
782
  3,
769
783
  n0,
770
784
  _LATRi,
@@ -772,7 +786,7 @@ var ListAccessTokensResponse = [
772
786
  [_it, _nT],
773
787
  [() => AccessTokenSummaries, 0],
774
788
  ];
775
- var ListDevEnvironmentSessionsRequest = [
789
+ var ListDevEnvironmentSessionsRequest$ = [
776
790
  3,
777
791
  n0,
778
792
  _LDESR,
@@ -780,7 +794,7 @@ var ListDevEnvironmentSessionsRequest = [
780
794
  [_sN, _pN, _dEI, _nT, _mR],
781
795
  [[0, 1], [0, 1], [0, 1], 0, 1],
782
796
  ];
783
- var ListDevEnvironmentSessionsResponse = [
797
+ var ListDevEnvironmentSessionsResponse$ = [
784
798
  3,
785
799
  n0,
786
800
  _LDESRi,
@@ -788,7 +802,7 @@ var ListDevEnvironmentSessionsResponse = [
788
802
  [_it, _nT],
789
803
  [() => DevEnvironmentSessionsSummaryList, 0],
790
804
  ];
791
- var ListDevEnvironmentsRequest = [
805
+ var ListDevEnvironmentsRequest$ = [
792
806
  3,
793
807
  n0,
794
808
  _LDER,
@@ -796,7 +810,7 @@ var ListDevEnvironmentsRequest = [
796
810
  [_sN, _pN, _f, _nT, _mR],
797
811
  [[0, 1], 0, () => Filters, 0, 1],
798
812
  ];
799
- var ListDevEnvironmentsResponse = [
813
+ var ListDevEnvironmentsResponse$ = [
800
814
  3,
801
815
  n0,
802
816
  _LDERi,
@@ -804,7 +818,7 @@ var ListDevEnvironmentsResponse = [
804
818
  [_it, _nT],
805
819
  [() => DevEnvironmentSummaryList, 0],
806
820
  ];
807
- var ListEventLogsRequest = [
821
+ var ListEventLogsRequest$ = [
808
822
  3,
809
823
  n0,
810
824
  _LELR,
@@ -812,8 +826,8 @@ var ListEventLogsRequest = [
812
826
  [_sN, _sTta, _eTn, _eN, _nT, _mR],
813
827
  [[0, 1], 5, 5, 0, 0, 1],
814
828
  ];
815
- var ListEventLogsResponse = [3, n0, _LELRi, 0, [_nT, _it], [0, () => EventLogEntries]];
816
- var ListProjectsRequest = [
829
+ var ListEventLogsResponse$ = [3, n0, _LELRi, 0, [_nT, _it], [0, () => EventLogEntries]];
830
+ var ListProjectsRequest$ = [
817
831
  3,
818
832
  n0,
819
833
  _LPR,
@@ -821,8 +835,8 @@ var ListProjectsRequest = [
821
835
  [_sN, _nT, _mR, _f],
822
836
  [[0, 1], 0, 1, () => ProjectListFilters],
823
837
  ];
824
- var ListProjectsResponse = [3, n0, _LPRi, 0, [_nT, _it], [0, () => ProjectSummaries]];
825
- var ListSourceRepositoriesItem = [
838
+ var ListProjectsResponse$ = [3, n0, _LPRi, 0, [_nT, _it], [0, () => ProjectSummaries]];
839
+ var ListSourceRepositoriesItem$ = [
826
840
  3,
827
841
  n0,
828
842
  _LSRI,
@@ -830,7 +844,7 @@ var ListSourceRepositoriesItem = [
830
844
  [_i, _n, _d, _lUT, _cTr],
831
845
  [0, 0, 0, 5, 5],
832
846
  ];
833
- var ListSourceRepositoriesRequest = [
847
+ var ListSourceRepositoriesRequest$ = [
834
848
  3,
835
849
  n0,
836
850
  _LSRR,
@@ -838,7 +852,7 @@ var ListSourceRepositoriesRequest = [
838
852
  [_sN, _pN, _nT, _mR],
839
853
  [[0, 1], [0, 1], 0, 1],
840
854
  ];
841
- var ListSourceRepositoriesResponse = [
855
+ var ListSourceRepositoriesResponse$ = [
842
856
  3,
843
857
  n0,
844
858
  _LSRRi,
@@ -846,7 +860,7 @@ var ListSourceRepositoriesResponse = [
846
860
  [_it, _nT],
847
861
  [() => ListSourceRepositoriesItems, 0],
848
862
  ];
849
- var ListSourceRepositoryBranchesItem = [
863
+ var ListSourceRepositoryBranchesItem$ = [
850
864
  3,
851
865
  n0,
852
866
  _LSRBI,
@@ -854,7 +868,7 @@ var ListSourceRepositoryBranchesItem = [
854
868
  [_re, _n, _lUT, _hCI],
855
869
  [0, 0, 5, 0],
856
870
  ];
857
- var ListSourceRepositoryBranchesRequest = [
871
+ var ListSourceRepositoryBranchesRequest$ = [
858
872
  3,
859
873
  n0,
860
874
  _LSRBR,
@@ -862,7 +876,7 @@ var ListSourceRepositoryBranchesRequest = [
862
876
  [_sN, _pN, _sRN, _nT, _mR],
863
877
  [[0, 1], [0, 1], [0, 1], 0, 1],
864
878
  ];
865
- var ListSourceRepositoryBranchesResponse = [
879
+ var ListSourceRepositoryBranchesResponse$ = [
866
880
  3,
867
881
  n0,
868
882
  _LSRBRi,
@@ -870,9 +884,9 @@ var ListSourceRepositoryBranchesResponse = [
870
884
  [_nT, _it],
871
885
  [0, () => ListSourceRepositoryBranchesItems],
872
886
  ];
873
- var ListSpacesRequest = [3, n0, _LSR, 0, [_nT], [0]];
874
- var ListSpacesResponse = [3, n0, _LSRi, 0, [_nT, _it], [0, () => SpaceSummaries]];
875
- var ListWorkflowRunsRequest = [
887
+ var ListSpacesRequest$ = [3, n0, _LSR, 0, [_nT], [0]];
888
+ var ListSpacesResponse$ = [3, n0, _LSRi, 0, [_nT, _it], [0, () => SpaceSummaries]];
889
+ var ListWorkflowRunsRequest$ = [
876
890
  3,
877
891
  n0,
878
892
  _LWRR,
@@ -880,7 +894,7 @@ var ListWorkflowRunsRequest = [
880
894
  [_sN, _wI, _pN, _nT, _mR, _sB],
881
895
  [[0, 1], [0, { [_hQ]: _wI }], [0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }], () => WorkflowRunSortCriteriaList],
882
896
  ];
883
- var ListWorkflowRunsResponse = [
897
+ var ListWorkflowRunsResponse$ = [
884
898
  3,
885
899
  n0,
886
900
  _LWRRi,
@@ -888,7 +902,7 @@ var ListWorkflowRunsResponse = [
888
902
  [_nT, _it],
889
903
  [0, () => WorkflowRunSummaries],
890
904
  ];
891
- var ListWorkflowsRequest = [
905
+ var ListWorkflowsRequest$ = [
892
906
  3,
893
907
  n0,
894
908
  _LWR,
@@ -896,19 +910,19 @@ var ListWorkflowsRequest = [
896
910
  [_sN, _pN, _nT, _mR, _sB],
897
911
  [[0, 1], [0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }], () => WorkflowSortCriteriaList],
898
912
  ];
899
- var ListWorkflowsResponse = [3, n0, _LWRi, 0, [_nT, _it], [0, () => WorkflowSummaries]];
900
- var PersistentStorage = [3, n0, _PS, 0, [_sIGB], [1]];
901
- var PersistentStorageConfiguration = [3, n0, _PSC, 0, [_sIGB], [1]];
902
- var ProjectInformation = [3, n0, _PI, 0, [_n, _pIr], [0, 0]];
903
- var ProjectListFilter = [3, n0, _PLF, 0, [_k, _va, _cO], [0, 64 | 0, 0]];
904
- var ProjectSummary = [3, n0, _PSr, 0, [_n, _dN, _d], [0, 0, 0]];
905
- var RepositoryInput = [3, n0, _RI, 0, [_rN, _bN], [0, 0]];
906
- var ResourceNotFoundException = [-3, n0, _RNFE, { [_e]: _c, [_hE]: 404 }, [_m], [0]];
907
- schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException, ResourceNotFoundException$1);
908
- var ServiceQuotaExceededException = [-3, n0, _SQEE, { [_e]: _c, [_hE]: 402 }, [_m], [0]];
909
- schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException, ServiceQuotaExceededException$1);
910
- var SpaceSummary = [3, n0, _SSp, 0, [_n, _rNe, _dN, _d], [0, 0, 0, 0]];
911
- var StartDevEnvironmentRequest = [
913
+ var ListWorkflowsResponse$ = [3, n0, _LWRi, 0, [_nT, _it], [0, () => WorkflowSummaries]];
914
+ var PersistentStorage$ = [3, n0, _PS, 0, [_sIGB], [1]];
915
+ var PersistentStorageConfiguration$ = [3, n0, _PSC, 0, [_sIGB], [1]];
916
+ var ProjectInformation$ = [3, n0, _PI, 0, [_n, _pIr], [0, 0]];
917
+ var ProjectListFilter$ = [3, n0, _PLF, 0, [_k, _va, _cO], [0, 64 | 0, 0]];
918
+ var ProjectSummary$ = [3, n0, _PSr, 0, [_n, _dN, _d], [0, 0, 0]];
919
+ var RepositoryInput$ = [3, n0, _RI, 0, [_rN, _bN], [0, 0]];
920
+ var ResourceNotFoundException$ = [-3, n0, _RNFE, { [_e]: _c, [_hE]: 404 }, [_m], [0]];
921
+ schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
922
+ var ServiceQuotaExceededException$ = [-3, n0, _SQEE, { [_e]: _c, [_hE]: 402 }, [_m], [0]];
923
+ schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
924
+ var SpaceSummary$ = [3, n0, _SSp, 0, [_n, _rNe, _dN, _d], [0, 0, 0, 0]];
925
+ var StartDevEnvironmentRequest$ = [
912
926
  3,
913
927
  n0,
914
928
  _SDER,
@@ -916,24 +930,24 @@ var StartDevEnvironmentRequest = [
916
930
  [_sN, _pN, _i, _id, _iT, _iTM],
917
931
  [[0, 1], [0, 1], [0, 1], () => IdeConfigurationList, 0, 1],
918
932
  ];
919
- var StartDevEnvironmentResponse = [3, n0, _SDERt, 0, [_sN, _pN, _i, _st], [0, 0, 0, 0]];
920
- var StartDevEnvironmentSessionRequest = [
933
+ var StartDevEnvironmentResponse$ = [3, n0, _SDERt, 0, [_sN, _pN, _i, _st], [0, 0, 0, 0]];
934
+ var StartDevEnvironmentSessionRequest$ = [
921
935
  3,
922
936
  n0,
923
937
  _SDESR,
924
938
  0,
925
939
  [_sN, _pN, _i, _sC],
926
- [[0, 1], [0, 1], [0, 1], () => DevEnvironmentSessionConfiguration],
940
+ [[0, 1], [0, 1], [0, 1], () => DevEnvironmentSessionConfiguration$],
927
941
  ];
928
- var StartDevEnvironmentSessionResponse = [
942
+ var StartDevEnvironmentSessionResponse$ = [
929
943
  3,
930
944
  n0,
931
945
  _SDESRt,
932
946
  0,
933
947
  [_aD, _sI, _sN, _pN, _i],
934
- [[() => DevEnvironmentAccessDetails, 0], 0, 0, 0, 0],
948
+ [[() => DevEnvironmentAccessDetails$, 0], 0, 0, 0, 0],
935
949
  ];
936
- var StartWorkflowRunRequest = [
950
+ var StartWorkflowRunRequest$ = [
937
951
  3,
938
952
  n0,
939
953
  _SWRR,
@@ -946,8 +960,8 @@ var StartWorkflowRunRequest = [
946
960
  [0, 4],
947
961
  ],
948
962
  ];
949
- var StartWorkflowRunResponse = [3, n0, _SWRRt, 0, [_sN, _pN, _i, _wI], [0, 0, 0, 0]];
950
- var StopDevEnvironmentRequest = [
963
+ var StartWorkflowRunResponse$ = [3, n0, _SWRRt, 0, [_sN, _pN, _i, _wI], [0, 0, 0, 0]];
964
+ var StopDevEnvironmentRequest$ = [
951
965
  3,
952
966
  n0,
953
967
  _SDERto,
@@ -959,8 +973,8 @@ var StopDevEnvironmentRequest = [
959
973
  [0, 1],
960
974
  ],
961
975
  ];
962
- var StopDevEnvironmentResponse = [3, n0, _SDERtop, 0, [_sN, _pN, _i, _st], [0, 0, 0, 0]];
963
- var StopDevEnvironmentSessionRequest = [
976
+ var StopDevEnvironmentResponse$ = [3, n0, _SDERtop, 0, [_sN, _pN, _i, _st], [0, 0, 0, 0]];
977
+ var StopDevEnvironmentSessionRequest$ = [
964
978
  3,
965
979
  n0,
966
980
  _SDESRto,
@@ -973,7 +987,7 @@ var StopDevEnvironmentSessionRequest = [
973
987
  [0, 1],
974
988
  ],
975
989
  ];
976
- var StopDevEnvironmentSessionResponse = [
990
+ var StopDevEnvironmentSessionResponse$ = [
977
991
  3,
978
992
  n0,
979
993
  _SDESRtop,
@@ -981,9 +995,9 @@ var StopDevEnvironmentSessionResponse = [
981
995
  [_sN, _pN, _i, _sI],
982
996
  [0, 0, 0, 0],
983
997
  ];
984
- var ThrottlingException = [-3, n0, _TE, { [_e]: _c, [_hE]: 429 }, [_m], [0]];
985
- schema.TypeRegistry.for(n0).registerError(ThrottlingException, ThrottlingException$1);
986
- var UpdateDevEnvironmentRequest = [
998
+ var ThrottlingException$ = [-3, n0, _TE, { [_e]: _c, [_hE]: 429 }, [_m], [0]];
999
+ schema.TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
1000
+ var UpdateDevEnvironmentRequest$ = [
987
1001
  3,
988
1002
  n0,
989
1003
  _UDER,
@@ -991,7 +1005,7 @@ var UpdateDevEnvironmentRequest = [
991
1005
  [_sN, _pN, _i, _a, _id, _iT, _iTM, _cT],
992
1006
  [[0, 1], [0, 1], [0, 1], 0, () => IdeConfigurationList, 0, 1, 0],
993
1007
  ];
994
- var UpdateDevEnvironmentResponse = [
1008
+ var UpdateDevEnvironmentResponse$ = [
995
1009
  3,
996
1010
  n0,
997
1011
  _UDERp,
@@ -999,19 +1013,19 @@ var UpdateDevEnvironmentResponse = [
999
1013
  [_i, _sN, _pN, _a, _id, _iT, _iTM, _cT],
1000
1014
  [0, 0, 0, 0, () => IdeConfigurationList, 0, 1, 0],
1001
1015
  ];
1002
- var UpdateProjectRequest = [3, n0, _UPR, 0, [_sN, _n, _d], [[0, 1], [0, 1], 0]];
1003
- var UpdateProjectResponse = [3, n0, _UPRp, 0, [_sN, _n, _dN, _d], [0, 0, 0, 0]];
1004
- var UpdateSpaceRequest = [3, n0, _USR, 0, [_n, _d], [[0, 1], 0]];
1005
- var UpdateSpaceResponse = [3, n0, _USRp, 0, [_n, _dN, _d], [0, 0, 0]];
1006
- var UserIdentity = [3, n0, _UI, 0, [_uT, _pIri, _uN, _aAI], [0, 0, 0, 0]];
1007
- var ValidationException = [-3, n0, _VE, { [_e]: _c, [_hE]: 400 }, [_m], [0]];
1008
- schema.TypeRegistry.for(n0).registerError(ValidationException, ValidationException$1);
1009
- var VerifySessionResponse = [3, n0, _VSR, 0, [_ide], [0]];
1010
- var WorkflowDefinition = [3, n0, _WD, 0, [_p], [0]];
1011
- var WorkflowDefinitionSummary = [3, n0, _WDS, 0, [_p], [0]];
1012
- var WorkflowRunSortCriteria = [3, n0, _WRSC, 0, [], []];
1013
- var WorkflowRunStatusReason = [3, n0, _WRSR, 0, [], []];
1014
- var WorkflowRunSummary = [
1016
+ var UpdateProjectRequest$ = [3, n0, _UPR, 0, [_sN, _n, _d], [[0, 1], [0, 1], 0]];
1017
+ var UpdateProjectResponse$ = [3, n0, _UPRp, 0, [_sN, _n, _dN, _d], [0, 0, 0, 0]];
1018
+ var UpdateSpaceRequest$ = [3, n0, _USR, 0, [_n, _d], [[0, 1], 0]];
1019
+ var UpdateSpaceResponse$ = [3, n0, _USRp, 0, [_n, _dN, _d], [0, 0, 0]];
1020
+ var UserIdentity$ = [3, n0, _UI, 0, [_uT, _pIri, _uN, _aAI], [0, 0, 0, 0]];
1021
+ var ValidationException$ = [-3, n0, _VE, { [_e]: _c, [_hE]: 400 }, [_m], [0]];
1022
+ schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
1023
+ var VerifySessionResponse$ = [3, n0, _VSR, 0, [_ide], [0]];
1024
+ var WorkflowDefinition$ = [3, n0, _WD, 0, [_p], [0]];
1025
+ var WorkflowDefinitionSummary$ = [3, n0, _WDS, 0, [_p], [0]];
1026
+ var WorkflowRunSortCriteria$ = [3, n0, _WRSC, 0, [], []];
1027
+ var WorkflowRunStatusReason$ = [3, n0, _WRSR, 0, [], []];
1028
+ var WorkflowRunSummary$ = [
1015
1029
  3,
1016
1030
  n0,
1017
1031
  _WRS,
@@ -1019,82 +1033,70 @@ var WorkflowRunSummary = [
1019
1033
  [_i, _wI, _wN, _st, _sRt, _sTta, _eTn, _lUT],
1020
1034
  [0, 0, 0, 0, () => WorkflowRunStatusReasons, 5, 5, 5],
1021
1035
  ];
1022
- var WorkflowSortCriteria = [3, n0, _WSC, 0, [], []];
1023
- var WorkflowSummary = [
1036
+ var WorkflowSortCriteria$ = [3, n0, _WSC, 0, [], []];
1037
+ var WorkflowSummary$ = [
1024
1038
  3,
1025
1039
  n0,
1026
1040
  _WS,
1027
1041
  0,
1028
1042
  [_i, _n, _sRN, _sBN, _de, _cTr, _lUT, _rM, _st],
1029
- [0, 0, 0, 0, () => WorkflowDefinitionSummary, 5, 5, 0, 0],
1043
+ [0, 0, 0, 0, () => WorkflowDefinitionSummary$, 5, 5, 0, 0],
1030
1044
  ];
1031
1045
  var __Unit = "unit";
1032
- var CodeCatalystServiceException = [-3, _sm, "CodeCatalystServiceException", 0, [], []];
1033
- schema.TypeRegistry.for(_sm).registerError(CodeCatalystServiceException, CodeCatalystServiceException$1);
1034
- var AccessTokenSummaries = [1, n0, _ATScc, 0, () => AccessTokenSummary];
1035
- var DevEnvironmentRepositorySummaries = [
1036
- 1,
1037
- n0,
1038
- _DERSe,
1039
- 0,
1040
- () => DevEnvironmentRepositorySummary,
1041
- ];
1042
- var DevEnvironmentSessionsSummaryList = [1, n0, _DESSL, 0, () => DevEnvironmentSessionSummary];
1043
- var DevEnvironmentSummaryList = [1, n0, _DESL, 0, () => DevEnvironmentSummary];
1044
- var EventLogEntries = [1, n0, _ELEv, 0, () => EventLogEntry];
1045
- var Filters = [1, n0, _Fi, 0, () => Filter];
1046
- var IdeConfigurationList = [1, n0, _ICL, 0, () => IdeConfiguration];
1047
- var Ides = [1, n0, _Id, 0, () => Ide];
1048
- var ListSourceRepositoriesItems = [1, n0, _LSRIi, 0, () => ListSourceRepositoriesItem];
1049
- var ListSourceRepositoryBranchesItems = [
1050
- 1,
1051
- n0,
1052
- _LSRBIi,
1053
- 0,
1054
- () => ListSourceRepositoryBranchesItem,
1055
- ];
1056
- var ProjectListFilters = [1, n0, _PLFr, 0, () => ProjectListFilter];
1057
- var ProjectSummaries = [1, n0, _PSro, 0, () => ProjectSummary];
1058
- var RepositoriesInput = [1, n0, _RIe, 0, () => RepositoryInput];
1059
- var SpaceSummaries = [1, n0, _SSpa, 0, () => SpaceSummary];
1060
- var WorkflowRunSortCriteriaList = [1, n0, _WRSCL, 0, () => WorkflowRunSortCriteria];
1061
- var WorkflowRunStatusReasons = [1, n0, _WRSRo, 0, () => WorkflowRunStatusReason];
1062
- var WorkflowRunSummaries = [1, n0, _WRSo, 0, () => WorkflowRunSummary];
1063
- var WorkflowSortCriteriaList = [1, n0, _WSCL, 0, () => WorkflowSortCriteria];
1064
- var WorkflowSummaries = [1, n0, _WSo, 0, () => WorkflowSummary];
1065
- var CreateAccessToken = [
1046
+ var CodeCatalystServiceException$ = [-3, _sm, "CodeCatalystServiceException", 0, [], []];
1047
+ schema.TypeRegistry.for(_sm).registerError(CodeCatalystServiceException$, CodeCatalystServiceException);
1048
+ var AccessTokenSummaries = [1, n0, _ATScc, 0, () => AccessTokenSummary$];
1049
+ var DevEnvironmentRepositorySummaries = [1, n0, _DERSe, 0, () => DevEnvironmentRepositorySummary$];
1050
+ var DevEnvironmentSessionsSummaryList = [1, n0, _DESSL, 0, () => DevEnvironmentSessionSummary$];
1051
+ var DevEnvironmentSummaryList = [1, n0, _DESL, 0, () => DevEnvironmentSummary$];
1052
+ var EventLogEntries = [1, n0, _ELEv, 0, () => EventLogEntry$];
1053
+ var Filters = [1, n0, _Fi, 0, () => Filter$];
1054
+ var IdeConfigurationList = [1, n0, _ICL, 0, () => IdeConfiguration$];
1055
+ var Ides = [1, n0, _Id, 0, () => Ide$];
1056
+ var ListSourceRepositoriesItems = [1, n0, _LSRIi, 0, () => ListSourceRepositoriesItem$];
1057
+ var ListSourceRepositoryBranchesItems = [1, n0, _LSRBIi, 0, () => ListSourceRepositoryBranchesItem$];
1058
+ var ProjectListFilters = [1, n0, _PLFr, 0, () => ProjectListFilter$];
1059
+ var ProjectSummaries = [1, n0, _PSro, 0, () => ProjectSummary$];
1060
+ var RepositoriesInput = [1, n0, _RIe, 0, () => RepositoryInput$];
1061
+ var SpaceSummaries = [1, n0, _SSpa, 0, () => SpaceSummary$];
1062
+ var WorkflowRunSortCriteriaList = [1, n0, _WRSCL, 0, () => WorkflowRunSortCriteria$];
1063
+ var WorkflowRunStatusReasons = [1, n0, _WRSRo, 0, () => WorkflowRunStatusReason$];
1064
+ var WorkflowRunSummaries = [1, n0, _WRSo, 0, () => WorkflowRunSummary$];
1065
+ var WorkflowSortCriteriaList = [1, n0, _WSCL, 0, () => WorkflowSortCriteria$];
1066
+ var WorkflowSummaries = [1, n0, _WSo, 0, () => WorkflowSummary$];
1067
+ var CreateAccessToken$ = [
1066
1068
  9,
1067
1069
  n0,
1068
1070
  _CAT,
1069
1071
  { [_ht]: ["PUT", "/v1/accessTokens", 201] },
1070
- () => CreateAccessTokenRequest,
1071
- () => CreateAccessTokenResponse,
1072
+ () => CreateAccessTokenRequest$,
1073
+ () => CreateAccessTokenResponse$,
1072
1074
  ];
1073
- var CreateDevEnvironment = [
1075
+ var CreateDevEnvironment$ = [
1074
1076
  9,
1075
1077
  n0,
1076
1078
  _CDE,
1077
1079
  { [_ht]: ["PUT", "/v1/spaces/{spaceName}/projects/{projectName}/devEnvironments", 201] },
1078
- () => CreateDevEnvironmentRequest,
1079
- () => CreateDevEnvironmentResponse,
1080
+ () => CreateDevEnvironmentRequest$,
1081
+ () => CreateDevEnvironmentResponse$,
1080
1082
  ];
1081
- var CreateProject = [
1083
+ var CreateProject$ = [
1082
1084
  9,
1083
1085
  n0,
1084
1086
  _CP,
1085
1087
  { [_ht]: ["PUT", "/v1/spaces/{spaceName}/projects", 201] },
1086
- () => CreateProjectRequest,
1087
- () => CreateProjectResponse,
1088
+ () => CreateProjectRequest$,
1089
+ () => CreateProjectResponse$,
1088
1090
  ];
1089
- var CreateSourceRepository = [
1091
+ var CreateSourceRepository$ = [
1090
1092
  9,
1091
1093
  n0,
1092
1094
  _CSR,
1093
1095
  { [_ht]: ["PUT", "/v1/spaces/{spaceName}/projects/{projectName}/sourceRepositories/{name}", 201] },
1094
- () => CreateSourceRepositoryRequest,
1095
- () => CreateSourceRepositoryResponse,
1096
+ () => CreateSourceRepositoryRequest$,
1097
+ () => CreateSourceRepositoryResponse$,
1096
1098
  ];
1097
- var CreateSourceRepositoryBranch = [
1099
+ var CreateSourceRepositoryBranch$ = [
1098
1100
  9,
1099
1101
  n0,
1100
1102
  _CSRB,
@@ -1105,74 +1107,74 @@ var CreateSourceRepositoryBranch = [
1105
1107
  201,
1106
1108
  ],
1107
1109
  },
1108
- () => CreateSourceRepositoryBranchRequest,
1109
- () => CreateSourceRepositoryBranchResponse,
1110
+ () => CreateSourceRepositoryBranchRequest$,
1111
+ () => CreateSourceRepositoryBranchResponse$,
1110
1112
  ];
1111
- var DeleteAccessToken = [
1113
+ var DeleteAccessToken$ = [
1112
1114
  9,
1113
1115
  n0,
1114
1116
  _DAT,
1115
1117
  { [_ht]: ["DELETE", "/v1/accessTokens/{id}", 200] },
1116
- () => DeleteAccessTokenRequest,
1117
- () => DeleteAccessTokenResponse,
1118
+ () => DeleteAccessTokenRequest$,
1119
+ () => DeleteAccessTokenResponse$,
1118
1120
  ];
1119
- var DeleteDevEnvironment = [
1121
+ var DeleteDevEnvironment$ = [
1120
1122
  9,
1121
1123
  n0,
1122
1124
  _DDE,
1123
1125
  { [_ht]: ["DELETE", "/v1/spaces/{spaceName}/projects/{projectName}/devEnvironments/{id}", 200] },
1124
- () => DeleteDevEnvironmentRequest,
1125
- () => DeleteDevEnvironmentResponse,
1126
+ () => DeleteDevEnvironmentRequest$,
1127
+ () => DeleteDevEnvironmentResponse$,
1126
1128
  ];
1127
- var DeleteProject = [
1129
+ var DeleteProject$ = [
1128
1130
  9,
1129
1131
  n0,
1130
1132
  _DP,
1131
1133
  { [_ht]: ["DELETE", "/v1/spaces/{spaceName}/projects/{name}", 200] },
1132
- () => DeleteProjectRequest,
1133
- () => DeleteProjectResponse,
1134
+ () => DeleteProjectRequest$,
1135
+ () => DeleteProjectResponse$,
1134
1136
  ];
1135
- var DeleteSourceRepository = [
1137
+ var DeleteSourceRepository$ = [
1136
1138
  9,
1137
1139
  n0,
1138
1140
  _DSRel,
1139
1141
  { [_ht]: ["DELETE", "/v1/spaces/{spaceName}/projects/{projectName}/sourceRepositories/{name}", 200] },
1140
- () => DeleteSourceRepositoryRequest,
1141
- () => DeleteSourceRepositoryResponse,
1142
+ () => DeleteSourceRepositoryRequest$,
1143
+ () => DeleteSourceRepositoryResponse$,
1142
1144
  ];
1143
- var DeleteSpace = [
1145
+ var DeleteSpace$ = [
1144
1146
  9,
1145
1147
  n0,
1146
1148
  _DS,
1147
1149
  { [_ht]: ["DELETE", "/v1/spaces/{name}", 200] },
1148
- () => DeleteSpaceRequest,
1149
- () => DeleteSpaceResponse,
1150
+ () => DeleteSpaceRequest$,
1151
+ () => DeleteSpaceResponse$,
1150
1152
  ];
1151
- var GetDevEnvironment = [
1153
+ var GetDevEnvironment$ = [
1152
1154
  9,
1153
1155
  n0,
1154
1156
  _GDE,
1155
1157
  { [_ht]: ["GET", "/v1/spaces/{spaceName}/projects/{projectName}/devEnvironments/{id}", 200] },
1156
- () => GetDevEnvironmentRequest,
1157
- () => GetDevEnvironmentResponse,
1158
+ () => GetDevEnvironmentRequest$,
1159
+ () => GetDevEnvironmentResponse$,
1158
1160
  ];
1159
- var GetProject = [
1161
+ var GetProject$ = [
1160
1162
  9,
1161
1163
  n0,
1162
1164
  _GP,
1163
1165
  { [_ht]: ["GET", "/v1/spaces/{spaceName}/projects/{name}", 200] },
1164
- () => GetProjectRequest,
1165
- () => GetProjectResponse,
1166
+ () => GetProjectRequest$,
1167
+ () => GetProjectResponse$,
1166
1168
  ];
1167
- var GetSourceRepository = [
1169
+ var GetSourceRepository$ = [
1168
1170
  9,
1169
1171
  n0,
1170
1172
  _GSReto,
1171
1173
  { [_ht]: ["GET", "/v1/spaces/{spaceName}/projects/{projectName}/sourceRepositories/{name}", 200] },
1172
- () => GetSourceRepositoryRequest,
1173
- () => GetSourceRepositoryResponse,
1174
+ () => GetSourceRepositoryRequest$,
1175
+ () => GetSourceRepositoryResponse$,
1174
1176
  ];
1175
- var GetSourceRepositoryCloneUrls = [
1177
+ var GetSourceRepositoryCloneUrls$ = [
1176
1178
  9,
1177
1179
  n0,
1178
1180
  _GSRCU,
@@ -1183,98 +1185,98 @@ var GetSourceRepositoryCloneUrls = [
1183
1185
  200,
1184
1186
  ],
1185
1187
  },
1186
- () => GetSourceRepositoryCloneUrlsRequest,
1187
- () => GetSourceRepositoryCloneUrlsResponse,
1188
+ () => GetSourceRepositoryCloneUrlsRequest$,
1189
+ () => GetSourceRepositoryCloneUrlsResponse$,
1188
1190
  ];
1189
- var GetSpace = [
1191
+ var GetSpace$ = [
1190
1192
  9,
1191
1193
  n0,
1192
1194
  _GS,
1193
1195
  { [_ht]: ["GET", "/v1/spaces/{name}", 200] },
1194
- () => GetSpaceRequest,
1195
- () => GetSpaceResponse,
1196
+ () => GetSpaceRequest$,
1197
+ () => GetSpaceResponse$,
1196
1198
  ];
1197
- var GetSubscription = [
1199
+ var GetSubscription$ = [
1198
1200
  9,
1199
1201
  n0,
1200
1202
  _GSe,
1201
1203
  { [_ht]: ["GET", "/v1/spaces/{spaceName}/subscription", 200] },
1202
- () => GetSubscriptionRequest,
1203
- () => GetSubscriptionResponse,
1204
+ () => GetSubscriptionRequest$,
1205
+ () => GetSubscriptionResponse$,
1204
1206
  ];
1205
- var GetUserDetails = [
1207
+ var GetUserDetails$ = [
1206
1208
  9,
1207
1209
  n0,
1208
1210
  _GUD,
1209
1211
  { [_ht]: ["GET", "/userDetails", 200] },
1210
- () => GetUserDetailsRequest,
1211
- () => GetUserDetailsResponse,
1212
+ () => GetUserDetailsRequest$,
1213
+ () => GetUserDetailsResponse$,
1212
1214
  ];
1213
- var GetWorkflow = [
1215
+ var GetWorkflow$ = [
1214
1216
  9,
1215
1217
  n0,
1216
1218
  _GW,
1217
1219
  { [_ht]: ["GET", "/v1/spaces/{spaceName}/projects/{projectName}/workflows/{id}", 200] },
1218
- () => GetWorkflowRequest,
1219
- () => GetWorkflowResponse,
1220
+ () => GetWorkflowRequest$,
1221
+ () => GetWorkflowResponse$,
1220
1222
  ];
1221
- var GetWorkflowRun = [
1223
+ var GetWorkflowRun$ = [
1222
1224
  9,
1223
1225
  n0,
1224
1226
  _GWRet,
1225
1227
  { [_ht]: ["GET", "/v1/spaces/{spaceName}/projects/{projectName}/workflowRuns/{id}", 200] },
1226
- () => GetWorkflowRunRequest,
1227
- () => GetWorkflowRunResponse,
1228
+ () => GetWorkflowRunRequest$,
1229
+ () => GetWorkflowRunResponse$,
1228
1230
  ];
1229
- var ListAccessTokens = [
1231
+ var ListAccessTokens$ = [
1230
1232
  9,
1231
1233
  n0,
1232
1234
  _LAT,
1233
1235
  { [_ht]: ["POST", "/v1/accessTokens", 200] },
1234
- () => ListAccessTokensRequest,
1235
- () => ListAccessTokensResponse,
1236
+ () => ListAccessTokensRequest$,
1237
+ () => ListAccessTokensResponse$,
1236
1238
  ];
1237
- var ListDevEnvironments = [
1239
+ var ListDevEnvironments$ = [
1238
1240
  9,
1239
1241
  n0,
1240
1242
  _LDE,
1241
1243
  { [_ht]: ["POST", "/v1/spaces/{spaceName}/devEnvironments", 200] },
1242
- () => ListDevEnvironmentsRequest,
1243
- () => ListDevEnvironmentsResponse,
1244
+ () => ListDevEnvironmentsRequest$,
1245
+ () => ListDevEnvironmentsResponse$,
1244
1246
  ];
1245
- var ListDevEnvironmentSessions = [
1247
+ var ListDevEnvironmentSessions$ = [
1246
1248
  9,
1247
1249
  n0,
1248
1250
  _LDES,
1249
1251
  { [_ht]: ["POST", "/v1/spaces/{spaceName}/projects/{projectName}/devEnvironments/{devEnvironmentId}/sessions", 200] },
1250
- () => ListDevEnvironmentSessionsRequest,
1251
- () => ListDevEnvironmentSessionsResponse,
1252
+ () => ListDevEnvironmentSessionsRequest$,
1253
+ () => ListDevEnvironmentSessionsResponse$,
1252
1254
  ];
1253
- var ListEventLogs = [
1255
+ var ListEventLogs$ = [
1254
1256
  9,
1255
1257
  n0,
1256
1258
  _LEL,
1257
1259
  { [_ht]: ["POST", "/v1/spaces/{spaceName}/eventLogs", 200] },
1258
- () => ListEventLogsRequest,
1259
- () => ListEventLogsResponse,
1260
+ () => ListEventLogsRequest$,
1261
+ () => ListEventLogsResponse$,
1260
1262
  ];
1261
- var ListProjects = [
1263
+ var ListProjects$ = [
1262
1264
  9,
1263
1265
  n0,
1264
1266
  _LP,
1265
1267
  { [_ht]: ["POST", "/v1/spaces/{spaceName}/projects", 200] },
1266
- () => ListProjectsRequest,
1267
- () => ListProjectsResponse,
1268
+ () => ListProjectsRequest$,
1269
+ () => ListProjectsResponse$,
1268
1270
  ];
1269
- var ListSourceRepositories = [
1271
+ var ListSourceRepositories$ = [
1270
1272
  9,
1271
1273
  n0,
1272
1274
  _LSRis,
1273
1275
  { [_ht]: ["POST", "/v1/spaces/{spaceName}/projects/{projectName}/sourceRepositories", 200] },
1274
- () => ListSourceRepositoriesRequest,
1275
- () => ListSourceRepositoriesResponse,
1276
+ () => ListSourceRepositoriesRequest$,
1277
+ () => ListSourceRepositoriesResponse$,
1276
1278
  ];
1277
- var ListSourceRepositoryBranches = [
1279
+ var ListSourceRepositoryBranches$ = [
1278
1280
  9,
1279
1281
  n0,
1280
1282
  _LSRB,
@@ -1285,104 +1287,104 @@ var ListSourceRepositoryBranches = [
1285
1287
  200,
1286
1288
  ],
1287
1289
  },
1288
- () => ListSourceRepositoryBranchesRequest,
1289
- () => ListSourceRepositoryBranchesResponse,
1290
+ () => ListSourceRepositoryBranchesRequest$,
1291
+ () => ListSourceRepositoryBranchesResponse$,
1290
1292
  ];
1291
- var ListSpaces = [
1293
+ var ListSpaces$ = [
1292
1294
  9,
1293
1295
  n0,
1294
1296
  _LS,
1295
1297
  { [_ht]: ["POST", "/v1/spaces", 200] },
1296
- () => ListSpacesRequest,
1297
- () => ListSpacesResponse,
1298
+ () => ListSpacesRequest$,
1299
+ () => ListSpacesResponse$,
1298
1300
  ];
1299
- var ListWorkflowRuns = [
1301
+ var ListWorkflowRuns$ = [
1300
1302
  9,
1301
1303
  n0,
1302
1304
  _LWRis,
1303
1305
  { [_ht]: ["POST", "/v1/spaces/{spaceName}/projects/{projectName}/workflowRuns", 200] },
1304
- () => ListWorkflowRunsRequest,
1305
- () => ListWorkflowRunsResponse,
1306
+ () => ListWorkflowRunsRequest$,
1307
+ () => ListWorkflowRunsResponse$,
1306
1308
  ];
1307
- var ListWorkflows = [
1309
+ var ListWorkflows$ = [
1308
1310
  9,
1309
1311
  n0,
1310
1312
  _LW,
1311
1313
  { [_ht]: ["POST", "/v1/spaces/{spaceName}/projects/{projectName}/workflows", 200] },
1312
- () => ListWorkflowsRequest,
1313
- () => ListWorkflowsResponse,
1314
+ () => ListWorkflowsRequest$,
1315
+ () => ListWorkflowsResponse$,
1314
1316
  ];
1315
- var StartDevEnvironment = [
1317
+ var StartDevEnvironment$ = [
1316
1318
  9,
1317
1319
  n0,
1318
1320
  _SDE,
1319
1321
  { [_ht]: ["PUT", "/v1/spaces/{spaceName}/projects/{projectName}/devEnvironments/{id}/start", 200] },
1320
- () => StartDevEnvironmentRequest,
1321
- () => StartDevEnvironmentResponse,
1322
+ () => StartDevEnvironmentRequest$,
1323
+ () => StartDevEnvironmentResponse$,
1322
1324
  ];
1323
- var StartDevEnvironmentSession = [
1325
+ var StartDevEnvironmentSession$ = [
1324
1326
  9,
1325
1327
  n0,
1326
1328
  _SDES,
1327
1329
  { [_ht]: ["PUT", "/v1/spaces/{spaceName}/projects/{projectName}/devEnvironments/{id}/session", 200] },
1328
- () => StartDevEnvironmentSessionRequest,
1329
- () => StartDevEnvironmentSessionResponse,
1330
+ () => StartDevEnvironmentSessionRequest$,
1331
+ () => StartDevEnvironmentSessionResponse$,
1330
1332
  ];
1331
- var StartWorkflowRun = [
1333
+ var StartWorkflowRun$ = [
1332
1334
  9,
1333
1335
  n0,
1334
1336
  _SWR,
1335
1337
  { [_ht]: ["PUT", "/v1/spaces/{spaceName}/projects/{projectName}/workflowRuns", 200] },
1336
- () => StartWorkflowRunRequest,
1337
- () => StartWorkflowRunResponse,
1338
+ () => StartWorkflowRunRequest$,
1339
+ () => StartWorkflowRunResponse$,
1338
1340
  ];
1339
- var StopDevEnvironment = [
1341
+ var StopDevEnvironment$ = [
1340
1342
  9,
1341
1343
  n0,
1342
1344
  _SDEt,
1343
1345
  { [_ht]: ["PUT", "/v1/spaces/{spaceName}/projects/{projectName}/devEnvironments/{id}/stop", 200] },
1344
- () => StopDevEnvironmentRequest,
1345
- () => StopDevEnvironmentResponse,
1346
+ () => StopDevEnvironmentRequest$,
1347
+ () => StopDevEnvironmentResponse$,
1346
1348
  ];
1347
- var StopDevEnvironmentSession = [
1349
+ var StopDevEnvironmentSession$ = [
1348
1350
  9,
1349
1351
  n0,
1350
1352
  _SDESt,
1351
1353
  { [_ht]: ["DELETE", "/v1/spaces/{spaceName}/projects/{projectName}/devEnvironments/{id}/session/{sessionId}", 200] },
1352
- () => StopDevEnvironmentSessionRequest,
1353
- () => StopDevEnvironmentSessionResponse,
1354
+ () => StopDevEnvironmentSessionRequest$,
1355
+ () => StopDevEnvironmentSessionResponse$,
1354
1356
  ];
1355
- var UpdateDevEnvironment = [
1357
+ var UpdateDevEnvironment$ = [
1356
1358
  9,
1357
1359
  n0,
1358
1360
  _UDE,
1359
1361
  { [_ht]: ["PATCH", "/v1/spaces/{spaceName}/projects/{projectName}/devEnvironments/{id}", 200] },
1360
- () => UpdateDevEnvironmentRequest,
1361
- () => UpdateDevEnvironmentResponse,
1362
+ () => UpdateDevEnvironmentRequest$,
1363
+ () => UpdateDevEnvironmentResponse$,
1362
1364
  ];
1363
- var UpdateProject = [
1365
+ var UpdateProject$ = [
1364
1366
  9,
1365
1367
  n0,
1366
1368
  _UP,
1367
1369
  { [_ht]: ["PATCH", "/v1/spaces/{spaceName}/projects/{name}", 200] },
1368
- () => UpdateProjectRequest,
1369
- () => UpdateProjectResponse,
1370
+ () => UpdateProjectRequest$,
1371
+ () => UpdateProjectResponse$,
1370
1372
  ];
1371
- var UpdateSpace = [
1373
+ var UpdateSpace$ = [
1372
1374
  9,
1373
1375
  n0,
1374
1376
  _US,
1375
1377
  { [_ht]: ["PATCH", "/v1/spaces/{name}", 200] },
1376
- () => UpdateSpaceRequest,
1377
- () => UpdateSpaceResponse,
1378
+ () => UpdateSpaceRequest$,
1379
+ () => UpdateSpaceResponse$,
1378
1380
  ];
1379
- var VerifySession = [
1381
+ var VerifySession$ = [
1380
1382
  9,
1381
1383
  n0,
1382
1384
  _VS,
1383
1385
  { [_ht]: ["GET", "/session", 200] },
1384
1386
  () => __Unit,
1385
- () => VerifySessionResponse,
1387
+ () => VerifySessionResponse$,
1386
1388
  ];
1387
1389
 
1388
1390
  class CreateAccessTokenCommand extends smithyClient.Command
@@ -1393,7 +1395,7 @@ class CreateAccessTokenCommand extends smithyClient.Command
1393
1395
  })
1394
1396
  .s("CodeCatalyst", "CreateAccessToken", {})
1395
1397
  .n("CodeCatalystClient", "CreateAccessTokenCommand")
1396
- .sc(CreateAccessToken)
1398
+ .sc(CreateAccessToken$)
1397
1399
  .build() {
1398
1400
  }
1399
1401
 
@@ -1405,7 +1407,7 @@ class CreateDevEnvironmentCommand extends smithyClient.Command
1405
1407
  })
1406
1408
  .s("CodeCatalyst", "CreateDevEnvironment", {})
1407
1409
  .n("CodeCatalystClient", "CreateDevEnvironmentCommand")
1408
- .sc(CreateDevEnvironment)
1410
+ .sc(CreateDevEnvironment$)
1409
1411
  .build() {
1410
1412
  }
1411
1413
 
@@ -1417,7 +1419,7 @@ class CreateProjectCommand extends smithyClient.Command
1417
1419
  })
1418
1420
  .s("CodeCatalyst", "CreateProject", {})
1419
1421
  .n("CodeCatalystClient", "CreateProjectCommand")
1420
- .sc(CreateProject)
1422
+ .sc(CreateProject$)
1421
1423
  .build() {
1422
1424
  }
1423
1425
 
@@ -1429,7 +1431,7 @@ class CreateSourceRepositoryBranchCommand extends smithyClient.Command
1429
1431
  })
1430
1432
  .s("CodeCatalyst", "CreateSourceRepositoryBranch", {})
1431
1433
  .n("CodeCatalystClient", "CreateSourceRepositoryBranchCommand")
1432
- .sc(CreateSourceRepositoryBranch)
1434
+ .sc(CreateSourceRepositoryBranch$)
1433
1435
  .build() {
1434
1436
  }
1435
1437
 
@@ -1441,7 +1443,7 @@ class CreateSourceRepositoryCommand extends smithyClient.Command
1441
1443
  })
1442
1444
  .s("CodeCatalyst", "CreateSourceRepository", {})
1443
1445
  .n("CodeCatalystClient", "CreateSourceRepositoryCommand")
1444
- .sc(CreateSourceRepository)
1446
+ .sc(CreateSourceRepository$)
1445
1447
  .build() {
1446
1448
  }
1447
1449
 
@@ -1453,7 +1455,7 @@ class DeleteAccessTokenCommand extends smithyClient.Command
1453
1455
  })
1454
1456
  .s("CodeCatalyst", "DeleteAccessToken", {})
1455
1457
  .n("CodeCatalystClient", "DeleteAccessTokenCommand")
1456
- .sc(DeleteAccessToken)
1458
+ .sc(DeleteAccessToken$)
1457
1459
  .build() {
1458
1460
  }
1459
1461
 
@@ -1465,7 +1467,7 @@ class DeleteDevEnvironmentCommand extends smithyClient.Command
1465
1467
  })
1466
1468
  .s("CodeCatalyst", "DeleteDevEnvironment", {})
1467
1469
  .n("CodeCatalystClient", "DeleteDevEnvironmentCommand")
1468
- .sc(DeleteDevEnvironment)
1470
+ .sc(DeleteDevEnvironment$)
1469
1471
  .build() {
1470
1472
  }
1471
1473
 
@@ -1477,7 +1479,7 @@ class DeleteProjectCommand extends smithyClient.Command
1477
1479
  })
1478
1480
  .s("CodeCatalyst", "DeleteProject", {})
1479
1481
  .n("CodeCatalystClient", "DeleteProjectCommand")
1480
- .sc(DeleteProject)
1482
+ .sc(DeleteProject$)
1481
1483
  .build() {
1482
1484
  }
1483
1485
 
@@ -1489,7 +1491,7 @@ class DeleteSourceRepositoryCommand extends smithyClient.Command
1489
1491
  })
1490
1492
  .s("CodeCatalyst", "DeleteSourceRepository", {})
1491
1493
  .n("CodeCatalystClient", "DeleteSourceRepositoryCommand")
1492
- .sc(DeleteSourceRepository)
1494
+ .sc(DeleteSourceRepository$)
1493
1495
  .build() {
1494
1496
  }
1495
1497
 
@@ -1501,7 +1503,7 @@ class DeleteSpaceCommand extends smithyClient.Command
1501
1503
  })
1502
1504
  .s("CodeCatalyst", "DeleteSpace", {})
1503
1505
  .n("CodeCatalystClient", "DeleteSpaceCommand")
1504
- .sc(DeleteSpace)
1506
+ .sc(DeleteSpace$)
1505
1507
  .build() {
1506
1508
  }
1507
1509
 
@@ -1513,7 +1515,7 @@ class GetDevEnvironmentCommand extends smithyClient.Command
1513
1515
  })
1514
1516
  .s("CodeCatalyst", "GetDevEnvironment", {})
1515
1517
  .n("CodeCatalystClient", "GetDevEnvironmentCommand")
1516
- .sc(GetDevEnvironment)
1518
+ .sc(GetDevEnvironment$)
1517
1519
  .build() {
1518
1520
  }
1519
1521
 
@@ -1525,7 +1527,7 @@ class GetProjectCommand extends smithyClient.Command
1525
1527
  })
1526
1528
  .s("CodeCatalyst", "GetProject", {})
1527
1529
  .n("CodeCatalystClient", "GetProjectCommand")
1528
- .sc(GetProject)
1530
+ .sc(GetProject$)
1529
1531
  .build() {
1530
1532
  }
1531
1533
 
@@ -1537,7 +1539,7 @@ class GetSourceRepositoryCloneUrlsCommand extends smithyClient.Command
1537
1539
  })
1538
1540
  .s("CodeCatalyst", "GetSourceRepositoryCloneUrls", {})
1539
1541
  .n("CodeCatalystClient", "GetSourceRepositoryCloneUrlsCommand")
1540
- .sc(GetSourceRepositoryCloneUrls)
1542
+ .sc(GetSourceRepositoryCloneUrls$)
1541
1543
  .build() {
1542
1544
  }
1543
1545
 
@@ -1549,7 +1551,7 @@ class GetSourceRepositoryCommand extends smithyClient.Command
1549
1551
  })
1550
1552
  .s("CodeCatalyst", "GetSourceRepository", {})
1551
1553
  .n("CodeCatalystClient", "GetSourceRepositoryCommand")
1552
- .sc(GetSourceRepository)
1554
+ .sc(GetSourceRepository$)
1553
1555
  .build() {
1554
1556
  }
1555
1557
 
@@ -1561,7 +1563,7 @@ class GetSpaceCommand extends smithyClient.Command
1561
1563
  })
1562
1564
  .s("CodeCatalyst", "GetSpace", {})
1563
1565
  .n("CodeCatalystClient", "GetSpaceCommand")
1564
- .sc(GetSpace)
1566
+ .sc(GetSpace$)
1565
1567
  .build() {
1566
1568
  }
1567
1569
 
@@ -1573,7 +1575,7 @@ class GetSubscriptionCommand extends smithyClient.Command
1573
1575
  })
1574
1576
  .s("CodeCatalyst", "GetSubscription", {})
1575
1577
  .n("CodeCatalystClient", "GetSubscriptionCommand")
1576
- .sc(GetSubscription)
1578
+ .sc(GetSubscription$)
1577
1579
  .build() {
1578
1580
  }
1579
1581
 
@@ -1585,7 +1587,7 @@ class GetUserDetailsCommand extends smithyClient.Command
1585
1587
  })
1586
1588
  .s("CodeCatalyst", "GetUserDetails", {})
1587
1589
  .n("CodeCatalystClient", "GetUserDetailsCommand")
1588
- .sc(GetUserDetails)
1590
+ .sc(GetUserDetails$)
1589
1591
  .build() {
1590
1592
  }
1591
1593
 
@@ -1597,7 +1599,7 @@ class GetWorkflowCommand extends smithyClient.Command
1597
1599
  })
1598
1600
  .s("CodeCatalyst", "GetWorkflow", {})
1599
1601
  .n("CodeCatalystClient", "GetWorkflowCommand")
1600
- .sc(GetWorkflow)
1602
+ .sc(GetWorkflow$)
1601
1603
  .build() {
1602
1604
  }
1603
1605
 
@@ -1609,7 +1611,7 @@ class GetWorkflowRunCommand extends smithyClient.Command
1609
1611
  })
1610
1612
  .s("CodeCatalyst", "GetWorkflowRun", {})
1611
1613
  .n("CodeCatalystClient", "GetWorkflowRunCommand")
1612
- .sc(GetWorkflowRun)
1614
+ .sc(GetWorkflowRun$)
1613
1615
  .build() {
1614
1616
  }
1615
1617
 
@@ -1621,7 +1623,7 @@ class ListAccessTokensCommand extends smithyClient.Command
1621
1623
  })
1622
1624
  .s("CodeCatalyst", "ListAccessTokens", {})
1623
1625
  .n("CodeCatalystClient", "ListAccessTokensCommand")
1624
- .sc(ListAccessTokens)
1626
+ .sc(ListAccessTokens$)
1625
1627
  .build() {
1626
1628
  }
1627
1629
 
@@ -1633,7 +1635,7 @@ class ListDevEnvironmentsCommand extends smithyClient.Command
1633
1635
  })
1634
1636
  .s("CodeCatalyst", "ListDevEnvironments", {})
1635
1637
  .n("CodeCatalystClient", "ListDevEnvironmentsCommand")
1636
- .sc(ListDevEnvironments)
1638
+ .sc(ListDevEnvironments$)
1637
1639
  .build() {
1638
1640
  }
1639
1641
 
@@ -1645,7 +1647,7 @@ class ListDevEnvironmentSessionsCommand extends smithyClient.Command
1645
1647
  })
1646
1648
  .s("CodeCatalyst", "ListDevEnvironmentSessions", {})
1647
1649
  .n("CodeCatalystClient", "ListDevEnvironmentSessionsCommand")
1648
- .sc(ListDevEnvironmentSessions)
1650
+ .sc(ListDevEnvironmentSessions$)
1649
1651
  .build() {
1650
1652
  }
1651
1653
 
@@ -1657,7 +1659,7 @@ class ListEventLogsCommand extends smithyClient.Command
1657
1659
  })
1658
1660
  .s("CodeCatalyst", "ListEventLogs", {})
1659
1661
  .n("CodeCatalystClient", "ListEventLogsCommand")
1660
- .sc(ListEventLogs)
1662
+ .sc(ListEventLogs$)
1661
1663
  .build() {
1662
1664
  }
1663
1665
 
@@ -1669,7 +1671,7 @@ class ListProjectsCommand extends smithyClient.Command
1669
1671
  })
1670
1672
  .s("CodeCatalyst", "ListProjects", {})
1671
1673
  .n("CodeCatalystClient", "ListProjectsCommand")
1672
- .sc(ListProjects)
1674
+ .sc(ListProjects$)
1673
1675
  .build() {
1674
1676
  }
1675
1677
 
@@ -1681,7 +1683,7 @@ class ListSourceRepositoriesCommand extends smithyClient.Command
1681
1683
  })
1682
1684
  .s("CodeCatalyst", "ListSourceRepositories", {})
1683
1685
  .n("CodeCatalystClient", "ListSourceRepositoriesCommand")
1684
- .sc(ListSourceRepositories)
1686
+ .sc(ListSourceRepositories$)
1685
1687
  .build() {
1686
1688
  }
1687
1689
 
@@ -1693,7 +1695,7 @@ class ListSourceRepositoryBranchesCommand extends smithyClient.Command
1693
1695
  })
1694
1696
  .s("CodeCatalyst", "ListSourceRepositoryBranches", {})
1695
1697
  .n("CodeCatalystClient", "ListSourceRepositoryBranchesCommand")
1696
- .sc(ListSourceRepositoryBranches)
1698
+ .sc(ListSourceRepositoryBranches$)
1697
1699
  .build() {
1698
1700
  }
1699
1701
 
@@ -1705,7 +1707,7 @@ class ListSpacesCommand extends smithyClient.Command
1705
1707
  })
1706
1708
  .s("CodeCatalyst", "ListSpaces", {})
1707
1709
  .n("CodeCatalystClient", "ListSpacesCommand")
1708
- .sc(ListSpaces)
1710
+ .sc(ListSpaces$)
1709
1711
  .build() {
1710
1712
  }
1711
1713
 
@@ -1717,7 +1719,7 @@ class ListWorkflowRunsCommand extends smithyClient.Command
1717
1719
  })
1718
1720
  .s("CodeCatalyst", "ListWorkflowRuns", {})
1719
1721
  .n("CodeCatalystClient", "ListWorkflowRunsCommand")
1720
- .sc(ListWorkflowRuns)
1722
+ .sc(ListWorkflowRuns$)
1721
1723
  .build() {
1722
1724
  }
1723
1725
 
@@ -1729,7 +1731,7 @@ class ListWorkflowsCommand extends smithyClient.Command
1729
1731
  })
1730
1732
  .s("CodeCatalyst", "ListWorkflows", {})
1731
1733
  .n("CodeCatalystClient", "ListWorkflowsCommand")
1732
- .sc(ListWorkflows)
1734
+ .sc(ListWorkflows$)
1733
1735
  .build() {
1734
1736
  }
1735
1737
 
@@ -1741,7 +1743,7 @@ class StartDevEnvironmentCommand extends smithyClient.Command
1741
1743
  })
1742
1744
  .s("CodeCatalyst", "StartDevEnvironment", {})
1743
1745
  .n("CodeCatalystClient", "StartDevEnvironmentCommand")
1744
- .sc(StartDevEnvironment)
1746
+ .sc(StartDevEnvironment$)
1745
1747
  .build() {
1746
1748
  }
1747
1749
 
@@ -1753,7 +1755,7 @@ class StartDevEnvironmentSessionCommand extends smithyClient.Command
1753
1755
  })
1754
1756
  .s("CodeCatalyst", "StartDevEnvironmentSession", {})
1755
1757
  .n("CodeCatalystClient", "StartDevEnvironmentSessionCommand")
1756
- .sc(StartDevEnvironmentSession)
1758
+ .sc(StartDevEnvironmentSession$)
1757
1759
  .build() {
1758
1760
  }
1759
1761
 
@@ -1765,7 +1767,7 @@ class StartWorkflowRunCommand extends smithyClient.Command
1765
1767
  })
1766
1768
  .s("CodeCatalyst", "StartWorkflowRun", {})
1767
1769
  .n("CodeCatalystClient", "StartWorkflowRunCommand")
1768
- .sc(StartWorkflowRun)
1770
+ .sc(StartWorkflowRun$)
1769
1771
  .build() {
1770
1772
  }
1771
1773
 
@@ -1777,7 +1779,7 @@ class StopDevEnvironmentCommand extends smithyClient.Command
1777
1779
  })
1778
1780
  .s("CodeCatalyst", "StopDevEnvironment", {})
1779
1781
  .n("CodeCatalystClient", "StopDevEnvironmentCommand")
1780
- .sc(StopDevEnvironment)
1782
+ .sc(StopDevEnvironment$)
1781
1783
  .build() {
1782
1784
  }
1783
1785
 
@@ -1789,7 +1791,7 @@ class StopDevEnvironmentSessionCommand extends smithyClient.Command
1789
1791
  })
1790
1792
  .s("CodeCatalyst", "StopDevEnvironmentSession", {})
1791
1793
  .n("CodeCatalystClient", "StopDevEnvironmentSessionCommand")
1792
- .sc(StopDevEnvironmentSession)
1794
+ .sc(StopDevEnvironmentSession$)
1793
1795
  .build() {
1794
1796
  }
1795
1797
 
@@ -1801,7 +1803,7 @@ class UpdateDevEnvironmentCommand extends smithyClient.Command
1801
1803
  })
1802
1804
  .s("CodeCatalyst", "UpdateDevEnvironment", {})
1803
1805
  .n("CodeCatalystClient", "UpdateDevEnvironmentCommand")
1804
- .sc(UpdateDevEnvironment)
1806
+ .sc(UpdateDevEnvironment$)
1805
1807
  .build() {
1806
1808
  }
1807
1809
 
@@ -1813,7 +1815,7 @@ class UpdateProjectCommand extends smithyClient.Command
1813
1815
  })
1814
1816
  .s("CodeCatalyst", "UpdateProject", {})
1815
1817
  .n("CodeCatalystClient", "UpdateProjectCommand")
1816
- .sc(UpdateProject)
1818
+ .sc(UpdateProject$)
1817
1819
  .build() {
1818
1820
  }
1819
1821
 
@@ -1825,7 +1827,7 @@ class UpdateSpaceCommand extends smithyClient.Command
1825
1827
  })
1826
1828
  .s("CodeCatalyst", "UpdateSpace", {})
1827
1829
  .n("CodeCatalystClient", "UpdateSpaceCommand")
1828
- .sc(UpdateSpace)
1830
+ .sc(UpdateSpace$)
1829
1831
  .build() {
1830
1832
  }
1831
1833
 
@@ -1837,7 +1839,7 @@ class VerifySessionCommand extends smithyClient.Command
1837
1839
  })
1838
1840
  .s("CodeCatalyst", "VerifySession", {})
1839
1841
  .n("CodeCatalystClient", "VerifySessionCommand")
1840
- .sc(VerifySession)
1842
+ .sc(VerifySession$)
1841
1843
  .build() {
1842
1844
  }
1843
1845
 
@@ -1977,62 +1979,212 @@ Object.defineProperty(exports, "__Client", {
1977
1979
  enumerable: true,
1978
1980
  get: function () { return smithyClient.Client; }
1979
1981
  });
1980
- exports.AccessDeniedException = AccessDeniedException$1;
1982
+ exports.AccessDeniedException = AccessDeniedException;
1983
+ exports.AccessDeniedException$ = AccessDeniedException$;
1984
+ exports.AccessTokenSummary$ = AccessTokenSummary$;
1981
1985
  exports.CodeCatalyst = CodeCatalyst;
1982
1986
  exports.CodeCatalystClient = CodeCatalystClient;
1983
- exports.CodeCatalystServiceException = CodeCatalystServiceException$1;
1987
+ exports.CodeCatalystServiceException = CodeCatalystServiceException;
1988
+ exports.CodeCatalystServiceException$ = CodeCatalystServiceException$;
1984
1989
  exports.ComparisonOperator = ComparisonOperator;
1985
- exports.ConflictException = ConflictException$1;
1990
+ exports.ConflictException = ConflictException;
1991
+ exports.ConflictException$ = ConflictException$;
1992
+ exports.CreateAccessToken$ = CreateAccessToken$;
1986
1993
  exports.CreateAccessTokenCommand = CreateAccessTokenCommand;
1994
+ exports.CreateAccessTokenRequest$ = CreateAccessTokenRequest$;
1995
+ exports.CreateAccessTokenResponse$ = CreateAccessTokenResponse$;
1996
+ exports.CreateDevEnvironment$ = CreateDevEnvironment$;
1987
1997
  exports.CreateDevEnvironmentCommand = CreateDevEnvironmentCommand;
1998
+ exports.CreateDevEnvironmentRequest$ = CreateDevEnvironmentRequest$;
1999
+ exports.CreateDevEnvironmentResponse$ = CreateDevEnvironmentResponse$;
2000
+ exports.CreateProject$ = CreateProject$;
1988
2001
  exports.CreateProjectCommand = CreateProjectCommand;
2002
+ exports.CreateProjectRequest$ = CreateProjectRequest$;
2003
+ exports.CreateProjectResponse$ = CreateProjectResponse$;
2004
+ exports.CreateSourceRepository$ = CreateSourceRepository$;
2005
+ exports.CreateSourceRepositoryBranch$ = CreateSourceRepositoryBranch$;
1989
2006
  exports.CreateSourceRepositoryBranchCommand = CreateSourceRepositoryBranchCommand;
2007
+ exports.CreateSourceRepositoryBranchRequest$ = CreateSourceRepositoryBranchRequest$;
2008
+ exports.CreateSourceRepositoryBranchResponse$ = CreateSourceRepositoryBranchResponse$;
1990
2009
  exports.CreateSourceRepositoryCommand = CreateSourceRepositoryCommand;
2010
+ exports.CreateSourceRepositoryRequest$ = CreateSourceRepositoryRequest$;
2011
+ exports.CreateSourceRepositoryResponse$ = CreateSourceRepositoryResponse$;
2012
+ exports.DeleteAccessToken$ = DeleteAccessToken$;
1991
2013
  exports.DeleteAccessTokenCommand = DeleteAccessTokenCommand;
2014
+ exports.DeleteAccessTokenRequest$ = DeleteAccessTokenRequest$;
2015
+ exports.DeleteAccessTokenResponse$ = DeleteAccessTokenResponse$;
2016
+ exports.DeleteDevEnvironment$ = DeleteDevEnvironment$;
1992
2017
  exports.DeleteDevEnvironmentCommand = DeleteDevEnvironmentCommand;
2018
+ exports.DeleteDevEnvironmentRequest$ = DeleteDevEnvironmentRequest$;
2019
+ exports.DeleteDevEnvironmentResponse$ = DeleteDevEnvironmentResponse$;
2020
+ exports.DeleteProject$ = DeleteProject$;
1993
2021
  exports.DeleteProjectCommand = DeleteProjectCommand;
2022
+ exports.DeleteProjectRequest$ = DeleteProjectRequest$;
2023
+ exports.DeleteProjectResponse$ = DeleteProjectResponse$;
2024
+ exports.DeleteSourceRepository$ = DeleteSourceRepository$;
1994
2025
  exports.DeleteSourceRepositoryCommand = DeleteSourceRepositoryCommand;
2026
+ exports.DeleteSourceRepositoryRequest$ = DeleteSourceRepositoryRequest$;
2027
+ exports.DeleteSourceRepositoryResponse$ = DeleteSourceRepositoryResponse$;
2028
+ exports.DeleteSpace$ = DeleteSpace$;
1995
2029
  exports.DeleteSpaceCommand = DeleteSpaceCommand;
2030
+ exports.DeleteSpaceRequest$ = DeleteSpaceRequest$;
2031
+ exports.DeleteSpaceResponse$ = DeleteSpaceResponse$;
2032
+ exports.DevEnvironmentAccessDetails$ = DevEnvironmentAccessDetails$;
2033
+ exports.DevEnvironmentRepositorySummary$ = DevEnvironmentRepositorySummary$;
2034
+ exports.DevEnvironmentSessionConfiguration$ = DevEnvironmentSessionConfiguration$;
2035
+ exports.DevEnvironmentSessionSummary$ = DevEnvironmentSessionSummary$;
1996
2036
  exports.DevEnvironmentSessionType = DevEnvironmentSessionType;
1997
2037
  exports.DevEnvironmentStatus = DevEnvironmentStatus;
2038
+ exports.DevEnvironmentSummary$ = DevEnvironmentSummary$;
2039
+ exports.EmailAddress$ = EmailAddress$;
2040
+ exports.EventLogEntry$ = EventLogEntry$;
2041
+ exports.EventPayload$ = EventPayload$;
2042
+ exports.ExecuteCommandSessionConfiguration$ = ExecuteCommandSessionConfiguration$;
2043
+ exports.Filter$ = Filter$;
1998
2044
  exports.FilterKey = FilterKey;
2045
+ exports.GetDevEnvironment$ = GetDevEnvironment$;
1999
2046
  exports.GetDevEnvironmentCommand = GetDevEnvironmentCommand;
2047
+ exports.GetDevEnvironmentRequest$ = GetDevEnvironmentRequest$;
2048
+ exports.GetDevEnvironmentResponse$ = GetDevEnvironmentResponse$;
2049
+ exports.GetProject$ = GetProject$;
2000
2050
  exports.GetProjectCommand = GetProjectCommand;
2051
+ exports.GetProjectRequest$ = GetProjectRequest$;
2052
+ exports.GetProjectResponse$ = GetProjectResponse$;
2053
+ exports.GetSourceRepository$ = GetSourceRepository$;
2054
+ exports.GetSourceRepositoryCloneUrls$ = GetSourceRepositoryCloneUrls$;
2001
2055
  exports.GetSourceRepositoryCloneUrlsCommand = GetSourceRepositoryCloneUrlsCommand;
2056
+ exports.GetSourceRepositoryCloneUrlsRequest$ = GetSourceRepositoryCloneUrlsRequest$;
2057
+ exports.GetSourceRepositoryCloneUrlsResponse$ = GetSourceRepositoryCloneUrlsResponse$;
2002
2058
  exports.GetSourceRepositoryCommand = GetSourceRepositoryCommand;
2059
+ exports.GetSourceRepositoryRequest$ = GetSourceRepositoryRequest$;
2060
+ exports.GetSourceRepositoryResponse$ = GetSourceRepositoryResponse$;
2061
+ exports.GetSpace$ = GetSpace$;
2003
2062
  exports.GetSpaceCommand = GetSpaceCommand;
2063
+ exports.GetSpaceRequest$ = GetSpaceRequest$;
2064
+ exports.GetSpaceResponse$ = GetSpaceResponse$;
2065
+ exports.GetSubscription$ = GetSubscription$;
2004
2066
  exports.GetSubscriptionCommand = GetSubscriptionCommand;
2067
+ exports.GetSubscriptionRequest$ = GetSubscriptionRequest$;
2068
+ exports.GetSubscriptionResponse$ = GetSubscriptionResponse$;
2069
+ exports.GetUserDetails$ = GetUserDetails$;
2005
2070
  exports.GetUserDetailsCommand = GetUserDetailsCommand;
2071
+ exports.GetUserDetailsRequest$ = GetUserDetailsRequest$;
2072
+ exports.GetUserDetailsResponse$ = GetUserDetailsResponse$;
2073
+ exports.GetWorkflow$ = GetWorkflow$;
2006
2074
  exports.GetWorkflowCommand = GetWorkflowCommand;
2075
+ exports.GetWorkflowRequest$ = GetWorkflowRequest$;
2076
+ exports.GetWorkflowResponse$ = GetWorkflowResponse$;
2077
+ exports.GetWorkflowRun$ = GetWorkflowRun$;
2007
2078
  exports.GetWorkflowRunCommand = GetWorkflowRunCommand;
2079
+ exports.GetWorkflowRunRequest$ = GetWorkflowRunRequest$;
2080
+ exports.GetWorkflowRunResponse$ = GetWorkflowRunResponse$;
2081
+ exports.Ide$ = Ide$;
2082
+ exports.IdeConfiguration$ = IdeConfiguration$;
2083
+ exports.ListAccessTokens$ = ListAccessTokens$;
2008
2084
  exports.ListAccessTokensCommand = ListAccessTokensCommand;
2085
+ exports.ListAccessTokensRequest$ = ListAccessTokensRequest$;
2086
+ exports.ListAccessTokensResponse$ = ListAccessTokensResponse$;
2087
+ exports.ListDevEnvironmentSessions$ = ListDevEnvironmentSessions$;
2009
2088
  exports.ListDevEnvironmentSessionsCommand = ListDevEnvironmentSessionsCommand;
2089
+ exports.ListDevEnvironmentSessionsRequest$ = ListDevEnvironmentSessionsRequest$;
2090
+ exports.ListDevEnvironmentSessionsResponse$ = ListDevEnvironmentSessionsResponse$;
2091
+ exports.ListDevEnvironments$ = ListDevEnvironments$;
2010
2092
  exports.ListDevEnvironmentsCommand = ListDevEnvironmentsCommand;
2093
+ exports.ListDevEnvironmentsRequest$ = ListDevEnvironmentsRequest$;
2094
+ exports.ListDevEnvironmentsResponse$ = ListDevEnvironmentsResponse$;
2095
+ exports.ListEventLogs$ = ListEventLogs$;
2011
2096
  exports.ListEventLogsCommand = ListEventLogsCommand;
2097
+ exports.ListEventLogsRequest$ = ListEventLogsRequest$;
2098
+ exports.ListEventLogsResponse$ = ListEventLogsResponse$;
2099
+ exports.ListProjects$ = ListProjects$;
2012
2100
  exports.ListProjectsCommand = ListProjectsCommand;
2101
+ exports.ListProjectsRequest$ = ListProjectsRequest$;
2102
+ exports.ListProjectsResponse$ = ListProjectsResponse$;
2103
+ exports.ListSourceRepositories$ = ListSourceRepositories$;
2013
2104
  exports.ListSourceRepositoriesCommand = ListSourceRepositoriesCommand;
2105
+ exports.ListSourceRepositoriesItem$ = ListSourceRepositoriesItem$;
2106
+ exports.ListSourceRepositoriesRequest$ = ListSourceRepositoriesRequest$;
2107
+ exports.ListSourceRepositoriesResponse$ = ListSourceRepositoriesResponse$;
2108
+ exports.ListSourceRepositoryBranches$ = ListSourceRepositoryBranches$;
2014
2109
  exports.ListSourceRepositoryBranchesCommand = ListSourceRepositoryBranchesCommand;
2110
+ exports.ListSourceRepositoryBranchesItem$ = ListSourceRepositoryBranchesItem$;
2111
+ exports.ListSourceRepositoryBranchesRequest$ = ListSourceRepositoryBranchesRequest$;
2112
+ exports.ListSourceRepositoryBranchesResponse$ = ListSourceRepositoryBranchesResponse$;
2113
+ exports.ListSpaces$ = ListSpaces$;
2015
2114
  exports.ListSpacesCommand = ListSpacesCommand;
2115
+ exports.ListSpacesRequest$ = ListSpacesRequest$;
2116
+ exports.ListSpacesResponse$ = ListSpacesResponse$;
2117
+ exports.ListWorkflowRuns$ = ListWorkflowRuns$;
2016
2118
  exports.ListWorkflowRunsCommand = ListWorkflowRunsCommand;
2119
+ exports.ListWorkflowRunsRequest$ = ListWorkflowRunsRequest$;
2120
+ exports.ListWorkflowRunsResponse$ = ListWorkflowRunsResponse$;
2121
+ exports.ListWorkflows$ = ListWorkflows$;
2017
2122
  exports.ListWorkflowsCommand = ListWorkflowsCommand;
2123
+ exports.ListWorkflowsRequest$ = ListWorkflowsRequest$;
2124
+ exports.ListWorkflowsResponse$ = ListWorkflowsResponse$;
2018
2125
  exports.OperationType = OperationType;
2019
- exports.ResourceNotFoundException = ResourceNotFoundException$1;
2020
- exports.ServiceQuotaExceededException = ServiceQuotaExceededException$1;
2126
+ exports.PersistentStorage$ = PersistentStorage$;
2127
+ exports.PersistentStorageConfiguration$ = PersistentStorageConfiguration$;
2128
+ exports.ProjectInformation$ = ProjectInformation$;
2129
+ exports.ProjectListFilter$ = ProjectListFilter$;
2130
+ exports.ProjectSummary$ = ProjectSummary$;
2131
+ exports.RepositoryInput$ = RepositoryInput$;
2132
+ exports.ResourceNotFoundException = ResourceNotFoundException;
2133
+ exports.ResourceNotFoundException$ = ResourceNotFoundException$;
2134
+ exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
2135
+ exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
2136
+ exports.SpaceSummary$ = SpaceSummary$;
2137
+ exports.StartDevEnvironment$ = StartDevEnvironment$;
2021
2138
  exports.StartDevEnvironmentCommand = StartDevEnvironmentCommand;
2139
+ exports.StartDevEnvironmentRequest$ = StartDevEnvironmentRequest$;
2140
+ exports.StartDevEnvironmentResponse$ = StartDevEnvironmentResponse$;
2141
+ exports.StartDevEnvironmentSession$ = StartDevEnvironmentSession$;
2022
2142
  exports.StartDevEnvironmentSessionCommand = StartDevEnvironmentSessionCommand;
2143
+ exports.StartDevEnvironmentSessionRequest$ = StartDevEnvironmentSessionRequest$;
2144
+ exports.StartDevEnvironmentSessionResponse$ = StartDevEnvironmentSessionResponse$;
2145
+ exports.StartWorkflowRun$ = StartWorkflowRun$;
2023
2146
  exports.StartWorkflowRunCommand = StartWorkflowRunCommand;
2147
+ exports.StartWorkflowRunRequest$ = StartWorkflowRunRequest$;
2148
+ exports.StartWorkflowRunResponse$ = StartWorkflowRunResponse$;
2149
+ exports.StopDevEnvironment$ = StopDevEnvironment$;
2024
2150
  exports.StopDevEnvironmentCommand = StopDevEnvironmentCommand;
2151
+ exports.StopDevEnvironmentRequest$ = StopDevEnvironmentRequest$;
2152
+ exports.StopDevEnvironmentResponse$ = StopDevEnvironmentResponse$;
2153
+ exports.StopDevEnvironmentSession$ = StopDevEnvironmentSession$;
2025
2154
  exports.StopDevEnvironmentSessionCommand = StopDevEnvironmentSessionCommand;
2026
- exports.ThrottlingException = ThrottlingException$1;
2155
+ exports.StopDevEnvironmentSessionRequest$ = StopDevEnvironmentSessionRequest$;
2156
+ exports.StopDevEnvironmentSessionResponse$ = StopDevEnvironmentSessionResponse$;
2157
+ exports.ThrottlingException = ThrottlingException;
2158
+ exports.ThrottlingException$ = ThrottlingException$;
2159
+ exports.UpdateDevEnvironment$ = UpdateDevEnvironment$;
2027
2160
  exports.UpdateDevEnvironmentCommand = UpdateDevEnvironmentCommand;
2161
+ exports.UpdateDevEnvironmentRequest$ = UpdateDevEnvironmentRequest$;
2162
+ exports.UpdateDevEnvironmentResponse$ = UpdateDevEnvironmentResponse$;
2163
+ exports.UpdateProject$ = UpdateProject$;
2028
2164
  exports.UpdateProjectCommand = UpdateProjectCommand;
2165
+ exports.UpdateProjectRequest$ = UpdateProjectRequest$;
2166
+ exports.UpdateProjectResponse$ = UpdateProjectResponse$;
2167
+ exports.UpdateSpace$ = UpdateSpace$;
2029
2168
  exports.UpdateSpaceCommand = UpdateSpaceCommand;
2169
+ exports.UpdateSpaceRequest$ = UpdateSpaceRequest$;
2170
+ exports.UpdateSpaceResponse$ = UpdateSpaceResponse$;
2171
+ exports.UserIdentity$ = UserIdentity$;
2030
2172
  exports.UserType = UserType;
2031
- exports.ValidationException = ValidationException$1;
2173
+ exports.ValidationException = ValidationException;
2174
+ exports.ValidationException$ = ValidationException$;
2175
+ exports.VerifySession$ = VerifySession$;
2032
2176
  exports.VerifySessionCommand = VerifySessionCommand;
2177
+ exports.VerifySessionResponse$ = VerifySessionResponse$;
2178
+ exports.WorkflowDefinition$ = WorkflowDefinition$;
2179
+ exports.WorkflowDefinitionSummary$ = WorkflowDefinitionSummary$;
2033
2180
  exports.WorkflowRunMode = WorkflowRunMode;
2181
+ exports.WorkflowRunSortCriteria$ = WorkflowRunSortCriteria$;
2034
2182
  exports.WorkflowRunStatus = WorkflowRunStatus;
2183
+ exports.WorkflowRunStatusReason$ = WorkflowRunStatusReason$;
2184
+ exports.WorkflowRunSummary$ = WorkflowRunSummary$;
2185
+ exports.WorkflowSortCriteria$ = WorkflowSortCriteria$;
2035
2186
  exports.WorkflowStatus = WorkflowStatus;
2187
+ exports.WorkflowSummary$ = WorkflowSummary$;
2036
2188
  exports._InstanceType = _InstanceType;
2037
2189
  exports.paginateListAccessTokens = paginateListAccessTokens;
2038
2190
  exports.paginateListDevEnvironmentSessions = paginateListDevEnvironmentSessions;