@aws-sdk/client-kafkaconnect 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 (38) hide show
  1. package/dist-cjs/index.js +383 -257
  2. package/dist-cjs/runtimeConfig.shared.js +6 -1
  3. package/dist-es/commands/CreateConnectorCommand.js +2 -2
  4. package/dist-es/commands/CreateCustomPluginCommand.js +2 -2
  5. package/dist-es/commands/CreateWorkerConfigurationCommand.js +2 -2
  6. package/dist-es/commands/DeleteConnectorCommand.js +2 -2
  7. package/dist-es/commands/DeleteCustomPluginCommand.js +2 -2
  8. package/dist-es/commands/DeleteWorkerConfigurationCommand.js +2 -2
  9. package/dist-es/commands/DescribeConnectorCommand.js +2 -2
  10. package/dist-es/commands/DescribeConnectorOperationCommand.js +2 -2
  11. package/dist-es/commands/DescribeCustomPluginCommand.js +2 -2
  12. package/dist-es/commands/DescribeWorkerConfigurationCommand.js +2 -2
  13. package/dist-es/commands/ListConnectorOperationsCommand.js +2 -2
  14. package/dist-es/commands/ListConnectorsCommand.js +2 -2
  15. package/dist-es/commands/ListCustomPluginsCommand.js +2 -2
  16. package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
  17. package/dist-es/commands/ListWorkerConfigurationsCommand.js +2 -2
  18. package/dist-es/commands/TagResourceCommand.js +2 -2
  19. package/dist-es/commands/UntagResourceCommand.js +2 -2
  20. package/dist-es/commands/UpdateConnectorCommand.js +2 -2
  21. package/dist-es/index.js +1 -0
  22. package/dist-es/runtimeConfig.shared.js +6 -1
  23. package/dist-es/schemas/schemas_0.js +229 -222
  24. package/dist-types/KafkaConnectClient.d.ts +1 -10
  25. package/dist-types/index.d.ts +1 -0
  26. package/dist-types/runtimeConfig.browser.d.ts +6 -2
  27. package/dist-types/runtimeConfig.d.ts +6 -2
  28. package/dist-types/runtimeConfig.native.d.ts +6 -2
  29. package/dist-types/runtimeConfig.shared.d.ts +6 -1
  30. package/dist-types/schemas/schemas_0.d.ts +120 -133
  31. package/dist-types/ts3.4/KafkaConnectClient.d.ts +0 -4
  32. package/dist-types/ts3.4/index.d.ts +1 -0
  33. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
  34. package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
  35. package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
  36. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
  37. package/dist-types/ts3.4/schemas/schemas_0.d.ts +119 -135
  38. package/package.json +34 -34
package/dist-cjs/index.js CHANGED
@@ -110,14 +110,14 @@ class KafkaConnectClient extends smithyClient.Client {
110
110
  }
111
111
  }
112
112
 
113
- let KafkaConnectServiceException$1 = class KafkaConnectServiceException extends smithyClient.ServiceException {
113
+ class KafkaConnectServiceException extends smithyClient.ServiceException {
114
114
  constructor(options) {
115
115
  super(options);
116
116
  Object.setPrototypeOf(this, KafkaConnectServiceException.prototype);
117
117
  }
118
- };
118
+ }
119
119
 
120
- let BadRequestException$1 = class BadRequestException extends KafkaConnectServiceException$1 {
120
+ class BadRequestException extends KafkaConnectServiceException {
121
121
  name = "BadRequestException";
122
122
  $fault = "client";
123
123
  constructor(opts) {
@@ -128,8 +128,8 @@ let BadRequestException$1 = class BadRequestException extends KafkaConnectServic
128
128
  });
129
129
  Object.setPrototypeOf(this, BadRequestException.prototype);
130
130
  }
131
- };
132
- let ConflictException$1 = class ConflictException extends KafkaConnectServiceException$1 {
131
+ }
132
+ class ConflictException extends KafkaConnectServiceException {
133
133
  name = "ConflictException";
134
134
  $fault = "client";
135
135
  constructor(opts) {
@@ -140,8 +140,8 @@ let ConflictException$1 = class ConflictException extends KafkaConnectServiceExc
140
140
  });
141
141
  Object.setPrototypeOf(this, ConflictException.prototype);
142
142
  }
143
- };
144
- let ForbiddenException$1 = class ForbiddenException extends KafkaConnectServiceException$1 {
143
+ }
144
+ class ForbiddenException extends KafkaConnectServiceException {
145
145
  name = "ForbiddenException";
146
146
  $fault = "client";
147
147
  constructor(opts) {
@@ -152,8 +152,8 @@ let ForbiddenException$1 = class ForbiddenException extends KafkaConnectServiceE
152
152
  });
153
153
  Object.setPrototypeOf(this, ForbiddenException.prototype);
154
154
  }
155
- };
156
- let InternalServerErrorException$1 = class InternalServerErrorException extends KafkaConnectServiceException$1 {
155
+ }
156
+ class InternalServerErrorException extends KafkaConnectServiceException {
157
157
  name = "InternalServerErrorException";
158
158
  $fault = "server";
159
159
  constructor(opts) {
@@ -164,8 +164,8 @@ let InternalServerErrorException$1 = class InternalServerErrorException extends
164
164
  });
165
165
  Object.setPrototypeOf(this, InternalServerErrorException.prototype);
166
166
  }
167
- };
168
- let NotFoundException$1 = class NotFoundException extends KafkaConnectServiceException$1 {
167
+ }
168
+ class NotFoundException extends KafkaConnectServiceException {
169
169
  name = "NotFoundException";
170
170
  $fault = "client";
171
171
  constructor(opts) {
@@ -176,8 +176,8 @@ let NotFoundException$1 = class NotFoundException extends KafkaConnectServiceExc
176
176
  });
177
177
  Object.setPrototypeOf(this, NotFoundException.prototype);
178
178
  }
179
- };
180
- let ServiceUnavailableException$1 = class ServiceUnavailableException extends KafkaConnectServiceException$1 {
179
+ }
180
+ class ServiceUnavailableException extends KafkaConnectServiceException {
181
181
  name = "ServiceUnavailableException";
182
182
  $fault = "server";
183
183
  constructor(opts) {
@@ -188,8 +188,8 @@ let ServiceUnavailableException$1 = class ServiceUnavailableException extends Ka
188
188
  });
189
189
  Object.setPrototypeOf(this, ServiceUnavailableException.prototype);
190
190
  }
191
- };
192
- let TooManyRequestsException$1 = class TooManyRequestsException extends KafkaConnectServiceException$1 {
191
+ }
192
+ class TooManyRequestsException extends KafkaConnectServiceException {
193
193
  name = "TooManyRequestsException";
194
194
  $fault = "client";
195
195
  constructor(opts) {
@@ -200,8 +200,8 @@ let TooManyRequestsException$1 = class TooManyRequestsException extends KafkaCon
200
200
  });
201
201
  Object.setPrototypeOf(this, TooManyRequestsException.prototype);
202
202
  }
203
- };
204
- let UnauthorizedException$1 = class UnauthorizedException extends KafkaConnectServiceException$1 {
203
+ }
204
+ class UnauthorizedException extends KafkaConnectServiceException {
205
205
  name = "UnauthorizedException";
206
206
  $fault = "client";
207
207
  constructor(opts) {
@@ -212,7 +212,7 @@ let UnauthorizedException$1 = class UnauthorizedException extends KafkaConnectSe
212
212
  });
213
213
  Object.setPrototypeOf(this, UnauthorizedException.prototype);
214
214
  }
215
- };
215
+ }
216
216
 
217
217
  const _AKC = "ApacheKafkaCluster";
218
218
  const _AKCD = "ApacheKafkaClusterDescription";
@@ -437,64 +437,71 @@ const _wCor = "workerCount";
437
437
  const _wLD = "workerLogDelivery";
438
438
  const n0 = "com.amazonaws.kafkaconnect";
439
439
  var __sensitiveString = [0, n0, _sS, 8, 0];
440
- var ApacheKafkaCluster = [3, n0, _AKC, 0, [_bS, _v], [0, () => Vpc]];
441
- var ApacheKafkaClusterDescription = [
440
+ var ApacheKafkaCluster$ = [3, n0, _AKC, 0, [_bS, _v], [0, () => Vpc$]];
441
+ var ApacheKafkaClusterDescription$ = [
442
442
  3,
443
443
  n0,
444
444
  _AKCD,
445
445
  0,
446
446
  [_bS, _v],
447
- [0, () => VpcDescription],
447
+ [0, () => VpcDescription$],
448
448
  ];
449
- var AutoScaling = [
449
+ var AutoScaling$ = [
450
450
  3,
451
451
  n0,
452
452
  _AS,
453
453
  0,
454
454
  [_mWC, _mC, _mWCi, _sIP, _sOP],
455
- [1, 1, 1, () => ScaleInPolicy, () => ScaleOutPolicy],
455
+ [1, 1, 1, () => ScaleInPolicy$, () => ScaleOutPolicy$],
456
456
  ];
457
- var AutoScalingDescription = [
457
+ var AutoScalingDescription$ = [
458
458
  3,
459
459
  n0,
460
460
  _ASD,
461
461
  0,
462
462
  [_mWC, _mC, _mWCi, _sIP, _sOP],
463
- [1, 1, 1, () => ScaleInPolicyDescription, () => ScaleOutPolicyDescription],
463
+ [1, 1, 1, () => ScaleInPolicyDescription$, () => ScaleOutPolicyDescription$],
464
464
  ];
465
- var AutoScalingUpdate = [
465
+ var AutoScalingUpdate$ = [
466
466
  3,
467
467
  n0,
468
468
  _ASU,
469
469
  0,
470
470
  [_mWC, _mC, _mWCi, _sIP, _sOP],
471
- [1, 1, 1, () => ScaleInPolicyUpdate, () => ScaleOutPolicyUpdate],
471
+ [1, 1, 1, () => ScaleInPolicyUpdate$, () => ScaleOutPolicyUpdate$],
472
+ ];
473
+ var BadRequestException$ = [-3, n0, _BRE, { [_e]: _c, [_hE]: 400 }, [_m], [0]];
474
+ schema.TypeRegistry.for(n0).registerError(BadRequestException$, BadRequestException);
475
+ var Capacity$ = [
476
+ 3,
477
+ n0,
478
+ _C,
479
+ 0,
480
+ [_aS, _pC],
481
+ [() => AutoScaling$, () => ProvisionedCapacity$],
472
482
  ];
473
- var BadRequestException = [-3, n0, _BRE, { [_e]: _c, [_hE]: 400 }, [_m], [0]];
474
- schema.TypeRegistry.for(n0).registerError(BadRequestException, BadRequestException$1);
475
- var Capacity = [3, n0, _C, 0, [_aS, _pC], [() => AutoScaling, () => ProvisionedCapacity]];
476
- var CapacityDescription = [
483
+ var CapacityDescription$ = [
477
484
  3,
478
485
  n0,
479
486
  _CD,
480
487
  0,
481
488
  [_aS, _pC],
482
- [() => AutoScalingDescription, () => ProvisionedCapacityDescription],
489
+ [() => AutoScalingDescription$, () => ProvisionedCapacityDescription$],
483
490
  ];
484
- var CapacityUpdate = [
491
+ var CapacityUpdate$ = [
485
492
  3,
486
493
  n0,
487
494
  _CU,
488
495
  0,
489
496
  [_aS, _pC],
490
- [() => AutoScalingUpdate, () => ProvisionedCapacityUpdate],
497
+ [() => AutoScalingUpdate$, () => ProvisionedCapacityUpdate$],
491
498
  ];
492
- var CloudWatchLogsLogDelivery = [3, n0, _CWLLD, 0, [_en, _lG], [2, 0]];
493
- var CloudWatchLogsLogDeliveryDescription = [3, n0, _CWLLDD, 0, [_en, _lG], [2, 0]];
494
- var ConflictException = [-3, n0, _CE, { [_e]: _c, [_hE]: 409 }, [_m], [0]];
495
- schema.TypeRegistry.for(n0).registerError(ConflictException, ConflictException$1);
496
- var ConnectorOperationStep = [3, n0, _COS, 0, [_sT, _sSt], [0, 0]];
497
- var ConnectorOperationSummary = [
499
+ var CloudWatchLogsLogDelivery$ = [3, n0, _CWLLD, 0, [_en, _lG], [2, 0]];
500
+ var CloudWatchLogsLogDeliveryDescription$ = [3, n0, _CWLLDD, 0, [_en, _lG], [2, 0]];
501
+ var ConflictException$ = [-3, n0, _CE, { [_e]: _c, [_hE]: 409 }, [_m], [0]];
502
+ schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
503
+ var ConnectorOperationStep$ = [3, n0, _COS, 0, [_sT, _sSt], [0, 0]];
504
+ var ConnectorOperationSummary$ = [
498
505
  3,
499
506
  n0,
500
507
  _COSo,
@@ -502,63 +509,63 @@ var ConnectorOperationSummary = [
502
509
  [_cOA, _cOT, _cOS, _cT, _eT],
503
510
  [0, 0, 0, 5, 5],
504
511
  ];
505
- var ConnectorSummary = [
512
+ var ConnectorSummary$ = [
506
513
  3,
507
514
  n0,
508
515
  _CS,
509
516
  0,
510
517
  [_ca, _cA, _cD, _cN, _cS, _cT, _cV, _kC, _kCCA, _kCEIT, _kCV, _lD, _p, _sERA, _wC],
511
518
  [
512
- () => CapacityDescription,
519
+ () => CapacityDescription$,
513
520
  0,
514
521
  0,
515
522
  0,
516
523
  0,
517
524
  5,
518
525
  0,
519
- () => KafkaClusterDescription,
520
- () => KafkaClusterClientAuthenticationDescription,
521
- () => KafkaClusterEncryptionInTransitDescription,
526
+ () => KafkaClusterDescription$,
527
+ () => KafkaClusterClientAuthenticationDescription$,
528
+ () => KafkaClusterEncryptionInTransitDescription$,
522
529
  0,
523
- () => LogDeliveryDescription,
530
+ () => LogDeliveryDescription$,
524
531
  () => __listOfPluginDescription,
525
532
  0,
526
- () => WorkerConfigurationDescription,
533
+ () => WorkerConfigurationDescription$,
527
534
  ],
528
535
  ];
529
- var CreateConnectorRequest = [
536
+ var CreateConnectorRequest$ = [
530
537
  3,
531
538
  n0,
532
539
  _CCR,
533
540
  0,
534
541
  [_ca, _cC, _cD, _cN, _kC, _kCCA, _kCEIT, _kCV, _lD, _p, _sERA, _wC, _t],
535
542
  [
536
- () => Capacity,
543
+ () => Capacity$,
537
544
  [() => ConnectorConfiguration, 0],
538
545
  0,
539
546
  0,
540
- () => KafkaCluster,
541
- () => KafkaClusterClientAuthentication,
542
- () => KafkaClusterEncryptionInTransit,
547
+ () => KafkaCluster$,
548
+ () => KafkaClusterClientAuthentication$,
549
+ () => KafkaClusterEncryptionInTransit$,
543
550
  0,
544
- () => LogDelivery,
551
+ () => LogDelivery$,
545
552
  () => __listOfPlugin,
546
553
  0,
547
- () => WorkerConfiguration,
554
+ () => WorkerConfiguration$,
548
555
  128 | 0,
549
556
  ],
550
557
  ];
551
- var CreateConnectorResponse = [3, n0, _CCRr, 0, [_cA, _cN, _cS], [0, 0, 0]];
552
- var CreateCustomPluginRequest = [
558
+ var CreateConnectorResponse$ = [3, n0, _CCRr, 0, [_cA, _cN, _cS], [0, 0, 0]];
559
+ var CreateCustomPluginRequest$ = [
553
560
  3,
554
561
  n0,
555
562
  _CCPR,
556
563
  0,
557
564
  [_cTo, _d, _l, _n, _t],
558
- [0, 0, () => CustomPluginLocation, 0, 128 | 0],
565
+ [0, 0, () => CustomPluginLocation$, 0, 128 | 0],
559
566
  ];
560
- var CreateCustomPluginResponse = [3, n0, _CCPRr, 0, [_cPA, _cPS, _n, _r], [0, 0, 0, 1]];
561
- var CreateWorkerConfigurationRequest = [
567
+ var CreateCustomPluginResponse$ = [3, n0, _CCPRr, 0, [_cPA, _cPS, _n, _r], [0, 0, 0, 1]];
568
+ var CreateWorkerConfigurationRequest$ = [
562
569
  3,
563
570
  n0,
564
571
  _CWCR,
@@ -566,43 +573,43 @@ var CreateWorkerConfigurationRequest = [
566
573
  [_d, _n, _pFC, _t],
567
574
  [0, 0, [() => __sensitiveString, 0], 128 | 0],
568
575
  ];
569
- var CreateWorkerConfigurationResponse = [
576
+ var CreateWorkerConfigurationResponse$ = [
570
577
  3,
571
578
  n0,
572
579
  _CWCRr,
573
580
  0,
574
581
  [_cT, _lR, _n, _wCA, _wCS],
575
- [5, () => WorkerConfigurationRevisionSummary, 0, 0, 0],
582
+ [5, () => WorkerConfigurationRevisionSummary$, 0, 0, 0],
576
583
  ];
577
- var CustomPlugin = [3, n0, _CP, 0, [_cPA, _r], [0, 1]];
578
- var CustomPluginDescription = [3, n0, _CPD, 0, [_cPA, _r], [0, 1]];
579
- var CustomPluginFileDescription = [3, n0, _CPFD, 0, [_fM, _fS], [0, 1]];
580
- var CustomPluginLocation = [3, n0, _CPL, 0, [_sL], [() => S3Location]];
581
- var CustomPluginLocationDescription = [
584
+ var CustomPlugin$ = [3, n0, _CP, 0, [_cPA, _r], [0, 1]];
585
+ var CustomPluginDescription$ = [3, n0, _CPD, 0, [_cPA, _r], [0, 1]];
586
+ var CustomPluginFileDescription$ = [3, n0, _CPFD, 0, [_fM, _fS], [0, 1]];
587
+ var CustomPluginLocation$ = [3, n0, _CPL, 0, [_sL], [() => S3Location$]];
588
+ var CustomPluginLocationDescription$ = [
582
589
  3,
583
590
  n0,
584
591
  _CPLD,
585
592
  0,
586
593
  [_sL],
587
- [() => S3LocationDescription],
594
+ [() => S3LocationDescription$],
588
595
  ];
589
- var CustomPluginRevisionSummary = [
596
+ var CustomPluginRevisionSummary$ = [
590
597
  3,
591
598
  n0,
592
599
  _CPRS,
593
600
  0,
594
601
  [_cTo, _cT, _d, _fD, _l, _r],
595
- [0, 5, 0, () => CustomPluginFileDescription, () => CustomPluginLocationDescription, 1],
602
+ [0, 5, 0, () => CustomPluginFileDescription$, () => CustomPluginLocationDescription$, 1],
596
603
  ];
597
- var CustomPluginSummary = [
604
+ var CustomPluginSummary$ = [
598
605
  3,
599
606
  n0,
600
607
  _CPS,
601
608
  0,
602
609
  [_cT, _cPA, _cPS, _d, _lR, _n],
603
- [5, 0, 0, 0, () => CustomPluginRevisionSummary, 0],
610
+ [5, 0, 0, 0, () => CustomPluginRevisionSummary$, 0],
604
611
  ];
605
- var DeleteConnectorRequest = [
612
+ var DeleteConnectorRequest$ = [
606
613
  3,
607
614
  n0,
608
615
  _DCR,
@@ -613,13 +620,13 @@ var DeleteConnectorRequest = [
613
620
  [0, { [_hQ]: _cV }],
614
621
  ],
615
622
  ];
616
- var DeleteConnectorResponse = [3, n0, _DCRe, 0, [_cA, _cS], [0, 0]];
617
- var DeleteCustomPluginRequest = [3, n0, _DCPR, 0, [_cPA], [[0, 1]]];
618
- var DeleteCustomPluginResponse = [3, n0, _DCPRe, 0, [_cPA, _cPS], [0, 0]];
619
- var DeleteWorkerConfigurationRequest = [3, n0, _DWCR, 0, [_wCA], [[0, 1]]];
620
- var DeleteWorkerConfigurationResponse = [3, n0, _DWCRe, 0, [_wCA, _wCS], [0, 0]];
621
- var DescribeConnectorOperationRequest = [3, n0, _DCOR, 0, [_cOA], [[0, 1]]];
622
- var DescribeConnectorOperationResponse = [
623
+ var DeleteConnectorResponse$ = [3, n0, _DCRe, 0, [_cA, _cS], [0, 0]];
624
+ var DeleteCustomPluginRequest$ = [3, n0, _DCPR, 0, [_cPA], [[0, 1]]];
625
+ var DeleteCustomPluginResponse$ = [3, n0, _DCPRe, 0, [_cPA, _cPS], [0, 0]];
626
+ var DeleteWorkerConfigurationRequest$ = [3, n0, _DWCR, 0, [_wCA], [[0, 1]]];
627
+ var DeleteWorkerConfigurationResponse$ = [3, n0, _DWCRe, 0, [_wCA, _wCS], [0, 0]];
628
+ var DescribeConnectorOperationRequest$ = [3, n0, _DCOR, 0, [_cOA], [[0, 1]]];
629
+ var DescribeConnectorOperationResponse$ = [
623
630
  3,
624
631
  n0,
625
632
  _DCORe,
@@ -631,24 +638,24 @@ var DescribeConnectorOperationResponse = [
631
638
  0,
632
639
  0,
633
640
  () => __listOfConnectorOperationStep,
634
- () => WorkerSetting,
641
+ () => WorkerSetting$,
635
642
  [() => ConnectorConfiguration, 0],
636
- () => WorkerSetting,
643
+ () => WorkerSetting$,
637
644
  [() => ConnectorConfiguration, 0],
638
- () => StateDescription,
645
+ () => StateDescription$,
639
646
  5,
640
647
  5,
641
648
  ],
642
649
  ];
643
- var DescribeConnectorRequest = [3, n0, _DCRes, 0, [_cA], [[0, 1]]];
644
- var DescribeConnectorResponse = [
650
+ var DescribeConnectorRequest$ = [3, n0, _DCRes, 0, [_cA], [[0, 1]]];
651
+ var DescribeConnectorResponse$ = [
645
652
  3,
646
653
  n0,
647
654
  _DCResc,
648
655
  0,
649
656
  [_ca, _cA, _cC, _cD, _cN, _cS, _cT, _cV, _kC, _kCCA, _kCEIT, _kCV, _lD, _p, _sERA, _wC, _sD],
650
657
  [
651
- () => CapacityDescription,
658
+ () => CapacityDescription$,
652
659
  0,
653
660
  [() => ConnectorConfiguration, 0],
654
661
  0,
@@ -656,55 +663,55 @@ var DescribeConnectorResponse = [
656
663
  0,
657
664
  5,
658
665
  0,
659
- () => KafkaClusterDescription,
660
- () => KafkaClusterClientAuthenticationDescription,
661
- () => KafkaClusterEncryptionInTransitDescription,
666
+ () => KafkaClusterDescription$,
667
+ () => KafkaClusterClientAuthenticationDescription$,
668
+ () => KafkaClusterEncryptionInTransitDescription$,
662
669
  0,
663
- () => LogDeliveryDescription,
670
+ () => LogDeliveryDescription$,
664
671
  () => __listOfPluginDescription,
665
672
  0,
666
- () => WorkerConfigurationDescription,
667
- () => StateDescription,
673
+ () => WorkerConfigurationDescription$,
674
+ () => StateDescription$,
668
675
  ],
669
676
  ];
670
- var DescribeCustomPluginRequest = [3, n0, _DCPRes, 0, [_cPA], [[0, 1]]];
671
- var DescribeCustomPluginResponse = [
677
+ var DescribeCustomPluginRequest$ = [3, n0, _DCPRes, 0, [_cPA], [[0, 1]]];
678
+ var DescribeCustomPluginResponse$ = [
672
679
  3,
673
680
  n0,
674
681
  _DCPResc,
675
682
  0,
676
683
  [_cT, _cPA, _cPS, _d, _lR, _n, _sD],
677
- [5, 0, 0, 0, () => CustomPluginRevisionSummary, 0, () => StateDescription],
684
+ [5, 0, 0, 0, () => CustomPluginRevisionSummary$, 0, () => StateDescription$],
678
685
  ];
679
- var DescribeWorkerConfigurationRequest = [3, n0, _DWCRes, 0, [_wCA], [[0, 1]]];
680
- var DescribeWorkerConfigurationResponse = [
686
+ var DescribeWorkerConfigurationRequest$ = [3, n0, _DWCRes, 0, [_wCA], [[0, 1]]];
687
+ var DescribeWorkerConfigurationResponse$ = [
681
688
  3,
682
689
  n0,
683
690
  _DWCResc,
684
691
  0,
685
692
  [_cT, _d, _lR, _n, _wCA, _wCS],
686
- [5, 0, [() => WorkerConfigurationRevisionDescription, 0], 0, 0, 0],
693
+ [5, 0, [() => WorkerConfigurationRevisionDescription$, 0], 0, 0, 0],
687
694
  ];
688
- var FirehoseLogDelivery = [3, n0, _FLD, 0, [_dS, _en], [0, 2]];
689
- var FirehoseLogDeliveryDescription = [3, n0, _FLDD, 0, [_dS, _en], [0, 2]];
690
- var ForbiddenException = [-3, n0, _FE, { [_e]: _c, [_hE]: 403 }, [_m], [0]];
691
- schema.TypeRegistry.for(n0).registerError(ForbiddenException, ForbiddenException$1);
692
- var InternalServerErrorException = [-3, n0, _ISEE, { [_e]: _s, [_hE]: 500 }, [_m], [0]];
693
- schema.TypeRegistry.for(n0).registerError(InternalServerErrorException, InternalServerErrorException$1);
694
- var KafkaCluster = [3, n0, _KC, 0, [_aKC], [() => ApacheKafkaCluster]];
695
- var KafkaClusterClientAuthentication = [3, n0, _KCCA, 0, [_aT], [0]];
696
- var KafkaClusterClientAuthenticationDescription = [3, n0, _KCCAD, 0, [_aT], [0]];
697
- var KafkaClusterDescription = [
695
+ var FirehoseLogDelivery$ = [3, n0, _FLD, 0, [_dS, _en], [0, 2]];
696
+ var FirehoseLogDeliveryDescription$ = [3, n0, _FLDD, 0, [_dS, _en], [0, 2]];
697
+ var ForbiddenException$ = [-3, n0, _FE, { [_e]: _c, [_hE]: 403 }, [_m], [0]];
698
+ schema.TypeRegistry.for(n0).registerError(ForbiddenException$, ForbiddenException);
699
+ var InternalServerErrorException$ = [-3, n0, _ISEE, { [_e]: _s, [_hE]: 500 }, [_m], [0]];
700
+ schema.TypeRegistry.for(n0).registerError(InternalServerErrorException$, InternalServerErrorException);
701
+ var KafkaCluster$ = [3, n0, _KC, 0, [_aKC], [() => ApacheKafkaCluster$]];
702
+ var KafkaClusterClientAuthentication$ = [3, n0, _KCCA, 0, [_aT], [0]];
703
+ var KafkaClusterClientAuthenticationDescription$ = [3, n0, _KCCAD, 0, [_aT], [0]];
704
+ var KafkaClusterDescription$ = [
698
705
  3,
699
706
  n0,
700
707
  _KCD,
701
708
  0,
702
709
  [_aKC],
703
- [() => ApacheKafkaClusterDescription],
710
+ [() => ApacheKafkaClusterDescription$],
704
711
  ];
705
- var KafkaClusterEncryptionInTransit = [3, n0, _KCEIT, 0, [_eTn], [0]];
706
- var KafkaClusterEncryptionInTransitDescription = [3, n0, _KCEITD, 0, [_eTn], [0]];
707
- var ListConnectorOperationsRequest = [
712
+ var KafkaClusterEncryptionInTransit$ = [3, n0, _KCEIT, 0, [_eTn], [0]];
713
+ var KafkaClusterEncryptionInTransitDescription$ = [3, n0, _KCEITD, 0, [_eTn], [0]];
714
+ var ListConnectorOperationsRequest$ = [
708
715
  3,
709
716
  n0,
710
717
  _LCOR,
@@ -716,7 +723,7 @@ var ListConnectorOperationsRequest = [
716
723
  [0, { [_hQ]: _nT }],
717
724
  ],
718
725
  ];
719
- var ListConnectorOperationsResponse = [
726
+ var ListConnectorOperationsResponse$ = [
720
727
  3,
721
728
  n0,
722
729
  _LCORi,
@@ -724,7 +731,7 @@ var ListConnectorOperationsResponse = [
724
731
  [_cO, _nT],
725
732
  [() => __listOfConnectorOperationSummary, 0],
726
733
  ];
727
- var ListConnectorsRequest = [
734
+ var ListConnectorsRequest$ = [
728
735
  3,
729
736
  n0,
730
737
  _LCR,
@@ -736,7 +743,7 @@ var ListConnectorsRequest = [
736
743
  [0, { [_hQ]: _nT }],
737
744
  ],
738
745
  ];
739
- var ListConnectorsResponse = [
746
+ var ListConnectorsResponse$ = [
740
747
  3,
741
748
  n0,
742
749
  _LCRi,
@@ -744,7 +751,7 @@ var ListConnectorsResponse = [
744
751
  [_co, _nT],
745
752
  [() => __listOfConnectorSummary, 0],
746
753
  ];
747
- var ListCustomPluginsRequest = [
754
+ var ListCustomPluginsRequest$ = [
748
755
  3,
749
756
  n0,
750
757
  _LCPR,
@@ -756,7 +763,7 @@ var ListCustomPluginsRequest = [
756
763
  [0, { [_hQ]: _nP }],
757
764
  ],
758
765
  ];
759
- var ListCustomPluginsResponse = [
766
+ var ListCustomPluginsResponse$ = [
760
767
  3,
761
768
  n0,
762
769
  _LCPRi,
@@ -764,9 +771,9 @@ var ListCustomPluginsResponse = [
764
771
  [_cP, _nT],
765
772
  [() => __listOfCustomPluginSummary, 0],
766
773
  ];
767
- var ListTagsForResourceRequest = [3, n0, _LTFRR, 0, [_rA], [[0, 1]]];
768
- var ListTagsForResourceResponse = [3, n0, _LTFRRi, 0, [_t], [128 | 0]];
769
- var ListWorkerConfigurationsRequest = [
774
+ var ListTagsForResourceRequest$ = [3, n0, _LTFRR, 0, [_rA], [[0, 1]]];
775
+ var ListTagsForResourceResponse$ = [3, n0, _LTFRRi, 0, [_t], [128 | 0]];
776
+ var ListWorkerConfigurationsRequest$ = [
770
777
  3,
771
778
  n0,
772
779
  _LWCR,
@@ -778,7 +785,7 @@ var ListWorkerConfigurationsRequest = [
778
785
  [0, { [_hQ]: _nP }],
779
786
  ],
780
787
  ];
781
- var ListWorkerConfigurationsResponse = [
788
+ var ListWorkerConfigurationsResponse$ = [
782
789
  3,
783
790
  n0,
784
791
  _LWCRi,
@@ -786,42 +793,42 @@ var ListWorkerConfigurationsResponse = [
786
793
  [_nT, _wCo],
787
794
  [0, () => __listOfWorkerConfigurationSummary],
788
795
  ];
789
- var LogDelivery = [3, n0, _LD, 0, [_wLD], [() => WorkerLogDelivery]];
790
- var LogDeliveryDescription = [
796
+ var LogDelivery$ = [3, n0, _LD, 0, [_wLD], [() => WorkerLogDelivery$]];
797
+ var LogDeliveryDescription$ = [
791
798
  3,
792
799
  n0,
793
800
  _LDD,
794
801
  0,
795
802
  [_wLD],
796
- [() => WorkerLogDeliveryDescription],
803
+ [() => WorkerLogDeliveryDescription$],
797
804
  ];
798
- var NotFoundException = [-3, n0, _NFE, { [_e]: _c, [_hE]: 404 }, [_m], [0]];
799
- schema.TypeRegistry.for(n0).registerError(NotFoundException, NotFoundException$1);
800
- var Plugin = [3, n0, _P, 0, [_cPu], [() => CustomPlugin]];
801
- var PluginDescription = [3, n0, _PD, 0, [_cPu], [() => CustomPluginDescription]];
802
- var ProvisionedCapacity = [3, n0, _PC, 0, [_mC, _wCor], [1, 1]];
803
- var ProvisionedCapacityDescription = [3, n0, _PCD, 0, [_mC, _wCor], [1, 1]];
804
- var ProvisionedCapacityUpdate = [3, n0, _PCU, 0, [_mC, _wCor], [1, 1]];
805
- var S3Location = [3, n0, _SL, 0, [_bA, _fK, _oV], [0, 0, 0]];
806
- var S3LocationDescription = [3, n0, _SLD, 0, [_bA, _fK, _oV], [0, 0, 0]];
807
- var S3LogDelivery = [3, n0, _SLDo, 0, [_b, _en, _pr], [0, 2, 0]];
808
- var S3LogDeliveryDescription = [3, n0, _SLDD, 0, [_b, _en, _pr], [0, 2, 0]];
809
- var ScaleInPolicy = [3, n0, _SIP, 0, [_cUP], [1]];
810
- var ScaleInPolicyDescription = [3, n0, _SIPD, 0, [_cUP], [1]];
811
- var ScaleInPolicyUpdate = [3, n0, _SIPU, 0, [_cUP], [1]];
812
- var ScaleOutPolicy = [3, n0, _SOP, 0, [_cUP], [1]];
813
- var ScaleOutPolicyDescription = [3, n0, _SOPD, 0, [_cUP], [1]];
814
- var ScaleOutPolicyUpdate = [3, n0, _SOPU, 0, [_cUP], [1]];
815
- var ServiceUnavailableException = [-3, n0, _SUE, { [_e]: _s, [_hE]: 503 }, [_m], [0]];
816
- schema.TypeRegistry.for(n0).registerError(ServiceUnavailableException, ServiceUnavailableException$1);
817
- var StateDescription = [3, n0, _SD, 0, [_cod, _m], [0, 0]];
818
- var TagResourceRequest = [3, n0, _TRR, 0, [_rA, _t], [[0, 1], 128 | 0]];
819
- var TagResourceResponse = [3, n0, _TRRa, 0, [], []];
820
- var TooManyRequestsException = [-3, n0, _TMRE, { [_e]: _c, [_hE]: 429 }, [_m], [0]];
821
- schema.TypeRegistry.for(n0).registerError(TooManyRequestsException, TooManyRequestsException$1);
822
- var UnauthorizedException = [-3, n0, _UE, { [_e]: _c, [_hE]: 401 }, [_m], [0]];
823
- schema.TypeRegistry.for(n0).registerError(UnauthorizedException, UnauthorizedException$1);
824
- var UntagResourceRequest = [
805
+ var NotFoundException$ = [-3, n0, _NFE, { [_e]: _c, [_hE]: 404 }, [_m], [0]];
806
+ schema.TypeRegistry.for(n0).registerError(NotFoundException$, NotFoundException);
807
+ var Plugin$ = [3, n0, _P, 0, [_cPu], [() => CustomPlugin$]];
808
+ var PluginDescription$ = [3, n0, _PD, 0, [_cPu], [() => CustomPluginDescription$]];
809
+ var ProvisionedCapacity$ = [3, n0, _PC, 0, [_mC, _wCor], [1, 1]];
810
+ var ProvisionedCapacityDescription$ = [3, n0, _PCD, 0, [_mC, _wCor], [1, 1]];
811
+ var ProvisionedCapacityUpdate$ = [3, n0, _PCU, 0, [_mC, _wCor], [1, 1]];
812
+ var S3Location$ = [3, n0, _SL, 0, [_bA, _fK, _oV], [0, 0, 0]];
813
+ var S3LocationDescription$ = [3, n0, _SLD, 0, [_bA, _fK, _oV], [0, 0, 0]];
814
+ var S3LogDelivery$ = [3, n0, _SLDo, 0, [_b, _en, _pr], [0, 2, 0]];
815
+ var S3LogDeliveryDescription$ = [3, n0, _SLDD, 0, [_b, _en, _pr], [0, 2, 0]];
816
+ var ScaleInPolicy$ = [3, n0, _SIP, 0, [_cUP], [1]];
817
+ var ScaleInPolicyDescription$ = [3, n0, _SIPD, 0, [_cUP], [1]];
818
+ var ScaleInPolicyUpdate$ = [3, n0, _SIPU, 0, [_cUP], [1]];
819
+ var ScaleOutPolicy$ = [3, n0, _SOP, 0, [_cUP], [1]];
820
+ var ScaleOutPolicyDescription$ = [3, n0, _SOPD, 0, [_cUP], [1]];
821
+ var ScaleOutPolicyUpdate$ = [3, n0, _SOPU, 0, [_cUP], [1]];
822
+ var ServiceUnavailableException$ = [-3, n0, _SUE, { [_e]: _s, [_hE]: 503 }, [_m], [0]];
823
+ schema.TypeRegistry.for(n0).registerError(ServiceUnavailableException$, ServiceUnavailableException);
824
+ var StateDescription$ = [3, n0, _SD, 0, [_cod, _m], [0, 0]];
825
+ var TagResourceRequest$ = [3, n0, _TRR, 0, [_rA, _t], [[0, 1], 128 | 0]];
826
+ var TagResourceResponse$ = [3, n0, _TRRa, 0, [], []];
827
+ var TooManyRequestsException$ = [-3, n0, _TMRE, { [_e]: _c, [_hE]: 429 }, [_m], [0]];
828
+ schema.TypeRegistry.for(n0).registerError(TooManyRequestsException$, TooManyRequestsException);
829
+ var UnauthorizedException$ = [-3, n0, _UE, { [_e]: _c, [_hE]: 401 }, [_m], [0]];
830
+ schema.TypeRegistry.for(n0).registerError(UnauthorizedException$, UnauthorizedException);
831
+ var UntagResourceRequest$ = [
825
832
  3,
826
833
  n0,
827
834
  _URR,
@@ -832,21 +839,21 @@ var UntagResourceRequest = [
832
839
  [64 | 0, { [_hQ]: _tK }],
833
840
  ],
834
841
  ];
835
- var UntagResourceResponse = [3, n0, _URRn, 0, [], []];
836
- var UpdateConnectorRequest = [
842
+ var UntagResourceResponse$ = [3, n0, _URRn, 0, [], []];
843
+ var UpdateConnectorRequest$ = [
837
844
  3,
838
845
  n0,
839
846
  _UCR,
840
847
  0,
841
848
  [_ca, _cC, _cA, _cV],
842
- [() => CapacityUpdate, [() => ConnectorConfigurationUpdate, 0], [0, 1], [0, { [_hQ]: _cV }]],
849
+ [() => CapacityUpdate$, [() => ConnectorConfigurationUpdate, 0], [0, 1], [0, { [_hQ]: _cV }]],
843
850
  ];
844
- var UpdateConnectorResponse = [3, n0, _UCRp, 0, [_cA, _cS, _cOA], [0, 0, 0]];
845
- var Vpc = [3, n0, _V, 0, [_sG, _su], [64 | 0, 64 | 0]];
846
- var VpcDescription = [3, n0, _VD, 0, [_sG, _su], [64 | 0, 64 | 0]];
847
- var WorkerConfiguration = [3, n0, _WC, 0, [_r, _wCA], [1, 0]];
848
- var WorkerConfigurationDescription = [3, n0, _WCD, 0, [_r, _wCA], [1, 0]];
849
- var WorkerConfigurationRevisionDescription = [
851
+ var UpdateConnectorResponse$ = [3, n0, _UCRp, 0, [_cA, _cS, _cOA], [0, 0, 0]];
852
+ var Vpc$ = [3, n0, _V, 0, [_sG, _su], [64 | 0, 64 | 0]];
853
+ var VpcDescription$ = [3, n0, _VD, 0, [_sG, _su], [64 | 0, 64 | 0]];
854
+ var WorkerConfiguration$ = [3, n0, _WC, 0, [_r, _wCA], [1, 0]];
855
+ var WorkerConfigurationDescription$ = [3, n0, _WCD, 0, [_r, _wCA], [1, 0]];
856
+ var WorkerConfigurationRevisionDescription$ = [
850
857
  3,
851
858
  n0,
852
859
  _WCRD,
@@ -854,186 +861,186 @@ var WorkerConfigurationRevisionDescription = [
854
861
  [_cT, _d, _pFC, _r],
855
862
  [5, 0, [() => __sensitiveString, 0], 1],
856
863
  ];
857
- var WorkerConfigurationRevisionSummary = [3, n0, _WCRS, 0, [_cT, _d, _r], [5, 0, 1]];
858
- var WorkerConfigurationSummary = [
864
+ var WorkerConfigurationRevisionSummary$ = [3, n0, _WCRS, 0, [_cT, _d, _r], [5, 0, 1]];
865
+ var WorkerConfigurationSummary$ = [
859
866
  3,
860
867
  n0,
861
868
  _WCS,
862
869
  0,
863
870
  [_cT, _d, _lR, _n, _wCA, _wCS],
864
- [5, 0, () => WorkerConfigurationRevisionSummary, 0, 0, 0],
871
+ [5, 0, () => WorkerConfigurationRevisionSummary$, 0, 0, 0],
865
872
  ];
866
- var WorkerLogDelivery = [
873
+ var WorkerLogDelivery$ = [
867
874
  3,
868
875
  n0,
869
876
  _WLD,
870
877
  0,
871
878
  [_cWL, _f, _s_],
872
- [() => CloudWatchLogsLogDelivery, () => FirehoseLogDelivery, () => S3LogDelivery],
879
+ [() => CloudWatchLogsLogDelivery$, () => FirehoseLogDelivery$, () => S3LogDelivery$],
873
880
  ];
874
- var WorkerLogDeliveryDescription = [
881
+ var WorkerLogDeliveryDescription$ = [
875
882
  3,
876
883
  n0,
877
884
  _WLDD,
878
885
  0,
879
886
  [_cWL, _f, _s_],
880
- [() => CloudWatchLogsLogDeliveryDescription, () => FirehoseLogDeliveryDescription, () => S3LogDeliveryDescription],
887
+ [() => CloudWatchLogsLogDeliveryDescription$, () => FirehoseLogDeliveryDescription$, () => S3LogDeliveryDescription$],
881
888
  ];
882
- var WorkerSetting = [3, n0, _WS, 0, [_ca], [() => CapacityDescription]];
883
- var KafkaConnectServiceException = [-3, _sm, "KafkaConnectServiceException", 0, [], []];
884
- schema.TypeRegistry.for(_sm).registerError(KafkaConnectServiceException, KafkaConnectServiceException$1);
885
- var __listOfConnectorOperationStep = [1, n0, _lOCOS, 0, () => ConnectorOperationStep];
886
- var __listOfConnectorOperationSummary = [1, n0, _lOCOSi, 0, () => ConnectorOperationSummary];
887
- var __listOfConnectorSummary = [1, n0, _lOCS, 0, () => ConnectorSummary];
888
- var __listOfCustomPluginSummary = [1, n0, _lOCPS, 0, () => CustomPluginSummary];
889
- var __listOfPlugin = [1, n0, _lOP, 0, () => Plugin];
890
- var __listOfPluginDescription = [1, n0, _lOPD, 0, () => PluginDescription];
891
- var __listOfWorkerConfigurationSummary = [1, n0, _lOWCS, 0, () => WorkerConfigurationSummary];
889
+ var WorkerSetting$ = [3, n0, _WS, 0, [_ca], [() => CapacityDescription$]];
890
+ var KafkaConnectServiceException$ = [-3, _sm, "KafkaConnectServiceException", 0, [], []];
891
+ schema.TypeRegistry.for(_sm).registerError(KafkaConnectServiceException$, KafkaConnectServiceException);
892
+ var __listOfConnectorOperationStep = [1, n0, _lOCOS, 0, () => ConnectorOperationStep$];
893
+ var __listOfConnectorOperationSummary = [1, n0, _lOCOSi, 0, () => ConnectorOperationSummary$];
894
+ var __listOfConnectorSummary = [1, n0, _lOCS, 0, () => ConnectorSummary$];
895
+ var __listOfCustomPluginSummary = [1, n0, _lOCPS, 0, () => CustomPluginSummary$];
896
+ var __listOfPlugin = [1, n0, _lOP, 0, () => Plugin$];
897
+ var __listOfPluginDescription = [1, n0, _lOPD, 0, () => PluginDescription$];
898
+ var __listOfWorkerConfigurationSummary = [1, n0, _lOWCS, 0, () => WorkerConfigurationSummary$];
892
899
  var ConnectorConfiguration = [2, n0, _CC, 8, 0, 0];
893
900
  var ConnectorConfigurationUpdate = [2, n0, _CCU, 8, 0, 0];
894
- var CreateConnector = [
901
+ var CreateConnector$ = [
895
902
  9,
896
903
  n0,
897
904
  _CCr,
898
905
  { [_h]: ["POST", "/v1/connectors", 200] },
899
- () => CreateConnectorRequest,
900
- () => CreateConnectorResponse,
906
+ () => CreateConnectorRequest$,
907
+ () => CreateConnectorResponse$,
901
908
  ];
902
- var CreateCustomPlugin = [
909
+ var CreateCustomPlugin$ = [
903
910
  9,
904
911
  n0,
905
912
  _CCP,
906
913
  { [_h]: ["POST", "/v1/custom-plugins", 200] },
907
- () => CreateCustomPluginRequest,
908
- () => CreateCustomPluginResponse,
914
+ () => CreateCustomPluginRequest$,
915
+ () => CreateCustomPluginResponse$,
909
916
  ];
910
- var CreateWorkerConfiguration = [
917
+ var CreateWorkerConfiguration$ = [
911
918
  9,
912
919
  n0,
913
920
  _CWC,
914
921
  { [_h]: ["POST", "/v1/worker-configurations", 200] },
915
- () => CreateWorkerConfigurationRequest,
916
- () => CreateWorkerConfigurationResponse,
922
+ () => CreateWorkerConfigurationRequest$,
923
+ () => CreateWorkerConfigurationResponse$,
917
924
  ];
918
- var DeleteConnector = [
925
+ var DeleteConnector$ = [
919
926
  9,
920
927
  n0,
921
928
  _DC,
922
929
  { [_h]: ["DELETE", "/v1/connectors/{connectorArn}", 200] },
923
- () => DeleteConnectorRequest,
924
- () => DeleteConnectorResponse,
930
+ () => DeleteConnectorRequest$,
931
+ () => DeleteConnectorResponse$,
925
932
  ];
926
- var DeleteCustomPlugin = [
933
+ var DeleteCustomPlugin$ = [
927
934
  9,
928
935
  n0,
929
936
  _DCP,
930
937
  { [_h]: ["DELETE", "/v1/custom-plugins/{customPluginArn}", 200] },
931
- () => DeleteCustomPluginRequest,
932
- () => DeleteCustomPluginResponse,
938
+ () => DeleteCustomPluginRequest$,
939
+ () => DeleteCustomPluginResponse$,
933
940
  ];
934
- var DeleteWorkerConfiguration = [
941
+ var DeleteWorkerConfiguration$ = [
935
942
  9,
936
943
  n0,
937
944
  _DWC,
938
945
  { [_h]: ["DELETE", "/v1/worker-configurations/{workerConfigurationArn}", 200] },
939
- () => DeleteWorkerConfigurationRequest,
940
- () => DeleteWorkerConfigurationResponse,
946
+ () => DeleteWorkerConfigurationRequest$,
947
+ () => DeleteWorkerConfigurationResponse$,
941
948
  ];
942
- var DescribeConnector = [
949
+ var DescribeConnector$ = [
943
950
  9,
944
951
  n0,
945
952
  _DCe,
946
953
  { [_h]: ["GET", "/v1/connectors/{connectorArn}", 200] },
947
- () => DescribeConnectorRequest,
948
- () => DescribeConnectorResponse,
954
+ () => DescribeConnectorRequest$,
955
+ () => DescribeConnectorResponse$,
949
956
  ];
950
- var DescribeConnectorOperation = [
957
+ var DescribeConnectorOperation$ = [
951
958
  9,
952
959
  n0,
953
960
  _DCO,
954
961
  { [_h]: ["GET", "/v1/connectorOperations/{connectorOperationArn}", 200] },
955
- () => DescribeConnectorOperationRequest,
956
- () => DescribeConnectorOperationResponse,
962
+ () => DescribeConnectorOperationRequest$,
963
+ () => DescribeConnectorOperationResponse$,
957
964
  ];
958
- var DescribeCustomPlugin = [
965
+ var DescribeCustomPlugin$ = [
959
966
  9,
960
967
  n0,
961
968
  _DCPe,
962
969
  { [_h]: ["GET", "/v1/custom-plugins/{customPluginArn}", 200] },
963
- () => DescribeCustomPluginRequest,
964
- () => DescribeCustomPluginResponse,
970
+ () => DescribeCustomPluginRequest$,
971
+ () => DescribeCustomPluginResponse$,
965
972
  ];
966
- var DescribeWorkerConfiguration = [
973
+ var DescribeWorkerConfiguration$ = [
967
974
  9,
968
975
  n0,
969
976
  _DWCe,
970
977
  { [_h]: ["GET", "/v1/worker-configurations/{workerConfigurationArn}", 200] },
971
- () => DescribeWorkerConfigurationRequest,
972
- () => DescribeWorkerConfigurationResponse,
978
+ () => DescribeWorkerConfigurationRequest$,
979
+ () => DescribeWorkerConfigurationResponse$,
973
980
  ];
974
- var ListConnectorOperations = [
981
+ var ListConnectorOperations$ = [
975
982
  9,
976
983
  n0,
977
984
  _LCO,
978
985
  { [_h]: ["GET", "/v1/connectors/{connectorArn}/operations", 200] },
979
- () => ListConnectorOperationsRequest,
980
- () => ListConnectorOperationsResponse,
986
+ () => ListConnectorOperationsRequest$,
987
+ () => ListConnectorOperationsResponse$,
981
988
  ];
982
- var ListConnectors = [
989
+ var ListConnectors$ = [
983
990
  9,
984
991
  n0,
985
992
  _LC,
986
993
  { [_h]: ["GET", "/v1/connectors", 200] },
987
- () => ListConnectorsRequest,
988
- () => ListConnectorsResponse,
994
+ () => ListConnectorsRequest$,
995
+ () => ListConnectorsResponse$,
989
996
  ];
990
- var ListCustomPlugins = [
997
+ var ListCustomPlugins$ = [
991
998
  9,
992
999
  n0,
993
1000
  _LCP,
994
1001
  { [_h]: ["GET", "/v1/custom-plugins", 200] },
995
- () => ListCustomPluginsRequest,
996
- () => ListCustomPluginsResponse,
1002
+ () => ListCustomPluginsRequest$,
1003
+ () => ListCustomPluginsResponse$,
997
1004
  ];
998
- var ListTagsForResource = [
1005
+ var ListTagsForResource$ = [
999
1006
  9,
1000
1007
  n0,
1001
1008
  _LTFR,
1002
1009
  { [_h]: ["GET", "/v1/tags/{resourceArn}", 200] },
1003
- () => ListTagsForResourceRequest,
1004
- () => ListTagsForResourceResponse,
1010
+ () => ListTagsForResourceRequest$,
1011
+ () => ListTagsForResourceResponse$,
1005
1012
  ];
1006
- var ListWorkerConfigurations = [
1013
+ var ListWorkerConfigurations$ = [
1007
1014
  9,
1008
1015
  n0,
1009
1016
  _LWC,
1010
1017
  { [_h]: ["GET", "/v1/worker-configurations", 200] },
1011
- () => ListWorkerConfigurationsRequest,
1012
- () => ListWorkerConfigurationsResponse,
1018
+ () => ListWorkerConfigurationsRequest$,
1019
+ () => ListWorkerConfigurationsResponse$,
1013
1020
  ];
1014
- var TagResource = [
1021
+ var TagResource$ = [
1015
1022
  9,
1016
1023
  n0,
1017
1024
  _TR,
1018
1025
  { [_h]: ["POST", "/v1/tags/{resourceArn}", 200] },
1019
- () => TagResourceRequest,
1020
- () => TagResourceResponse,
1026
+ () => TagResourceRequest$,
1027
+ () => TagResourceResponse$,
1021
1028
  ];
1022
- var UntagResource = [
1029
+ var UntagResource$ = [
1023
1030
  9,
1024
1031
  n0,
1025
1032
  _UR,
1026
1033
  { [_h]: ["DELETE", "/v1/tags/{resourceArn}", 200] },
1027
- () => UntagResourceRequest,
1028
- () => UntagResourceResponse,
1034
+ () => UntagResourceRequest$,
1035
+ () => UntagResourceResponse$,
1029
1036
  ];
1030
- var UpdateConnector = [
1037
+ var UpdateConnector$ = [
1031
1038
  9,
1032
1039
  n0,
1033
1040
  _UC,
1034
1041
  { [_h]: ["PUT", "/v1/connectors/{connectorArn}", 200] },
1035
- () => UpdateConnectorRequest,
1036
- () => UpdateConnectorResponse,
1042
+ () => UpdateConnectorRequest$,
1043
+ () => UpdateConnectorResponse$,
1037
1044
  ];
1038
1045
 
1039
1046
  class CreateConnectorCommand extends smithyClient.Command
@@ -1044,7 +1051,7 @@ class CreateConnectorCommand extends smithyClient.Command
1044
1051
  })
1045
1052
  .s("KafkaConnect", "CreateConnector", {})
1046
1053
  .n("KafkaConnectClient", "CreateConnectorCommand")
1047
- .sc(CreateConnector)
1054
+ .sc(CreateConnector$)
1048
1055
  .build() {
1049
1056
  }
1050
1057
 
@@ -1056,7 +1063,7 @@ class CreateCustomPluginCommand extends smithyClient.Command
1056
1063
  })
1057
1064
  .s("KafkaConnect", "CreateCustomPlugin", {})
1058
1065
  .n("KafkaConnectClient", "CreateCustomPluginCommand")
1059
- .sc(CreateCustomPlugin)
1066
+ .sc(CreateCustomPlugin$)
1060
1067
  .build() {
1061
1068
  }
1062
1069
 
@@ -1068,7 +1075,7 @@ class CreateWorkerConfigurationCommand extends smithyClient.Command
1068
1075
  })
1069
1076
  .s("KafkaConnect", "CreateWorkerConfiguration", {})
1070
1077
  .n("KafkaConnectClient", "CreateWorkerConfigurationCommand")
1071
- .sc(CreateWorkerConfiguration)
1078
+ .sc(CreateWorkerConfiguration$)
1072
1079
  .build() {
1073
1080
  }
1074
1081
 
@@ -1080,7 +1087,7 @@ class DeleteConnectorCommand extends smithyClient.Command
1080
1087
  })
1081
1088
  .s("KafkaConnect", "DeleteConnector", {})
1082
1089
  .n("KafkaConnectClient", "DeleteConnectorCommand")
1083
- .sc(DeleteConnector)
1090
+ .sc(DeleteConnector$)
1084
1091
  .build() {
1085
1092
  }
1086
1093
 
@@ -1092,7 +1099,7 @@ class DeleteCustomPluginCommand extends smithyClient.Command
1092
1099
  })
1093
1100
  .s("KafkaConnect", "DeleteCustomPlugin", {})
1094
1101
  .n("KafkaConnectClient", "DeleteCustomPluginCommand")
1095
- .sc(DeleteCustomPlugin)
1102
+ .sc(DeleteCustomPlugin$)
1096
1103
  .build() {
1097
1104
  }
1098
1105
 
@@ -1104,7 +1111,7 @@ class DeleteWorkerConfigurationCommand extends smithyClient.Command
1104
1111
  })
1105
1112
  .s("KafkaConnect", "DeleteWorkerConfiguration", {})
1106
1113
  .n("KafkaConnectClient", "DeleteWorkerConfigurationCommand")
1107
- .sc(DeleteWorkerConfiguration)
1114
+ .sc(DeleteWorkerConfiguration$)
1108
1115
  .build() {
1109
1116
  }
1110
1117
 
@@ -1116,7 +1123,7 @@ class DescribeConnectorCommand extends smithyClient.Command
1116
1123
  })
1117
1124
  .s("KafkaConnect", "DescribeConnector", {})
1118
1125
  .n("KafkaConnectClient", "DescribeConnectorCommand")
1119
- .sc(DescribeConnector)
1126
+ .sc(DescribeConnector$)
1120
1127
  .build() {
1121
1128
  }
1122
1129
 
@@ -1128,7 +1135,7 @@ class DescribeConnectorOperationCommand extends smithyClient.Command
1128
1135
  })
1129
1136
  .s("KafkaConnect", "DescribeConnectorOperation", {})
1130
1137
  .n("KafkaConnectClient", "DescribeConnectorOperationCommand")
1131
- .sc(DescribeConnectorOperation)
1138
+ .sc(DescribeConnectorOperation$)
1132
1139
  .build() {
1133
1140
  }
1134
1141
 
@@ -1140,7 +1147,7 @@ class DescribeCustomPluginCommand extends smithyClient.Command
1140
1147
  })
1141
1148
  .s("KafkaConnect", "DescribeCustomPlugin", {})
1142
1149
  .n("KafkaConnectClient", "DescribeCustomPluginCommand")
1143
- .sc(DescribeCustomPlugin)
1150
+ .sc(DescribeCustomPlugin$)
1144
1151
  .build() {
1145
1152
  }
1146
1153
 
@@ -1152,7 +1159,7 @@ class DescribeWorkerConfigurationCommand extends smithyClient.Command
1152
1159
  })
1153
1160
  .s("KafkaConnect", "DescribeWorkerConfiguration", {})
1154
1161
  .n("KafkaConnectClient", "DescribeWorkerConfigurationCommand")
1155
- .sc(DescribeWorkerConfiguration)
1162
+ .sc(DescribeWorkerConfiguration$)
1156
1163
  .build() {
1157
1164
  }
1158
1165
 
@@ -1164,7 +1171,7 @@ class ListConnectorOperationsCommand extends smithyClient.Command
1164
1171
  })
1165
1172
  .s("KafkaConnect", "ListConnectorOperations", {})
1166
1173
  .n("KafkaConnectClient", "ListConnectorOperationsCommand")
1167
- .sc(ListConnectorOperations)
1174
+ .sc(ListConnectorOperations$)
1168
1175
  .build() {
1169
1176
  }
1170
1177
 
@@ -1176,7 +1183,7 @@ class ListConnectorsCommand extends smithyClient.Command
1176
1183
  })
1177
1184
  .s("KafkaConnect", "ListConnectors", {})
1178
1185
  .n("KafkaConnectClient", "ListConnectorsCommand")
1179
- .sc(ListConnectors)
1186
+ .sc(ListConnectors$)
1180
1187
  .build() {
1181
1188
  }
1182
1189
 
@@ -1188,7 +1195,7 @@ class ListCustomPluginsCommand extends smithyClient.Command
1188
1195
  })
1189
1196
  .s("KafkaConnect", "ListCustomPlugins", {})
1190
1197
  .n("KafkaConnectClient", "ListCustomPluginsCommand")
1191
- .sc(ListCustomPlugins)
1198
+ .sc(ListCustomPlugins$)
1192
1199
  .build() {
1193
1200
  }
1194
1201
 
@@ -1200,7 +1207,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
1200
1207
  })
1201
1208
  .s("KafkaConnect", "ListTagsForResource", {})
1202
1209
  .n("KafkaConnectClient", "ListTagsForResourceCommand")
1203
- .sc(ListTagsForResource)
1210
+ .sc(ListTagsForResource$)
1204
1211
  .build() {
1205
1212
  }
1206
1213
 
@@ -1212,7 +1219,7 @@ class ListWorkerConfigurationsCommand extends smithyClient.Command
1212
1219
  })
1213
1220
  .s("KafkaConnect", "ListWorkerConfigurations", {})
1214
1221
  .n("KafkaConnectClient", "ListWorkerConfigurationsCommand")
1215
- .sc(ListWorkerConfigurations)
1222
+ .sc(ListWorkerConfigurations$)
1216
1223
  .build() {
1217
1224
  }
1218
1225
 
@@ -1224,7 +1231,7 @@ class TagResourceCommand extends smithyClient.Command
1224
1231
  })
1225
1232
  .s("KafkaConnect", "TagResource", {})
1226
1233
  .n("KafkaConnectClient", "TagResourceCommand")
1227
- .sc(TagResource)
1234
+ .sc(TagResource$)
1228
1235
  .build() {
1229
1236
  }
1230
1237
 
@@ -1236,7 +1243,7 @@ class UntagResourceCommand extends smithyClient.Command
1236
1243
  })
1237
1244
  .s("KafkaConnect", "UntagResource", {})
1238
1245
  .n("KafkaConnectClient", "UntagResourceCommand")
1239
- .sc(UntagResource)
1246
+ .sc(UntagResource$)
1240
1247
  .build() {
1241
1248
  }
1242
1249
 
@@ -1248,7 +1255,7 @@ class UpdateConnectorCommand extends smithyClient.Command
1248
1255
  })
1249
1256
  .s("KafkaConnect", "UpdateConnector", {})
1250
1257
  .n("KafkaConnectClient", "UpdateConnectorCommand")
1251
- .sc(UpdateConnector)
1258
+ .sc(UpdateConnector$)
1252
1259
  .build() {
1253
1260
  }
1254
1261
 
@@ -1353,45 +1360,164 @@ Object.defineProperty(exports, "__Client", {
1353
1360
  enumerable: true,
1354
1361
  get: function () { return smithyClient.Client; }
1355
1362
  });
1356
- exports.BadRequestException = BadRequestException$1;
1357
- exports.ConflictException = ConflictException$1;
1363
+ exports.ApacheKafkaCluster$ = ApacheKafkaCluster$;
1364
+ exports.ApacheKafkaClusterDescription$ = ApacheKafkaClusterDescription$;
1365
+ exports.AutoScaling$ = AutoScaling$;
1366
+ exports.AutoScalingDescription$ = AutoScalingDescription$;
1367
+ exports.AutoScalingUpdate$ = AutoScalingUpdate$;
1368
+ exports.BadRequestException = BadRequestException;
1369
+ exports.BadRequestException$ = BadRequestException$;
1370
+ exports.Capacity$ = Capacity$;
1371
+ exports.CapacityDescription$ = CapacityDescription$;
1372
+ exports.CapacityUpdate$ = CapacityUpdate$;
1373
+ exports.CloudWatchLogsLogDelivery$ = CloudWatchLogsLogDelivery$;
1374
+ exports.CloudWatchLogsLogDeliveryDescription$ = CloudWatchLogsLogDeliveryDescription$;
1375
+ exports.ConflictException = ConflictException;
1376
+ exports.ConflictException$ = ConflictException$;
1358
1377
  exports.ConnectorOperationState = ConnectorOperationState;
1378
+ exports.ConnectorOperationStep$ = ConnectorOperationStep$;
1359
1379
  exports.ConnectorOperationStepState = ConnectorOperationStepState;
1360
1380
  exports.ConnectorOperationStepType = ConnectorOperationStepType;
1381
+ exports.ConnectorOperationSummary$ = ConnectorOperationSummary$;
1361
1382
  exports.ConnectorOperationType = ConnectorOperationType;
1362
1383
  exports.ConnectorState = ConnectorState;
1384
+ exports.ConnectorSummary$ = ConnectorSummary$;
1385
+ exports.CreateConnector$ = CreateConnector$;
1363
1386
  exports.CreateConnectorCommand = CreateConnectorCommand;
1387
+ exports.CreateConnectorRequest$ = CreateConnectorRequest$;
1388
+ exports.CreateConnectorResponse$ = CreateConnectorResponse$;
1389
+ exports.CreateCustomPlugin$ = CreateCustomPlugin$;
1364
1390
  exports.CreateCustomPluginCommand = CreateCustomPluginCommand;
1391
+ exports.CreateCustomPluginRequest$ = CreateCustomPluginRequest$;
1392
+ exports.CreateCustomPluginResponse$ = CreateCustomPluginResponse$;
1393
+ exports.CreateWorkerConfiguration$ = CreateWorkerConfiguration$;
1365
1394
  exports.CreateWorkerConfigurationCommand = CreateWorkerConfigurationCommand;
1395
+ exports.CreateWorkerConfigurationRequest$ = CreateWorkerConfigurationRequest$;
1396
+ exports.CreateWorkerConfigurationResponse$ = CreateWorkerConfigurationResponse$;
1397
+ exports.CustomPlugin$ = CustomPlugin$;
1366
1398
  exports.CustomPluginContentType = CustomPluginContentType;
1399
+ exports.CustomPluginDescription$ = CustomPluginDescription$;
1400
+ exports.CustomPluginFileDescription$ = CustomPluginFileDescription$;
1401
+ exports.CustomPluginLocation$ = CustomPluginLocation$;
1402
+ exports.CustomPluginLocationDescription$ = CustomPluginLocationDescription$;
1403
+ exports.CustomPluginRevisionSummary$ = CustomPluginRevisionSummary$;
1367
1404
  exports.CustomPluginState = CustomPluginState;
1405
+ exports.CustomPluginSummary$ = CustomPluginSummary$;
1406
+ exports.DeleteConnector$ = DeleteConnector$;
1368
1407
  exports.DeleteConnectorCommand = DeleteConnectorCommand;
1408
+ exports.DeleteConnectorRequest$ = DeleteConnectorRequest$;
1409
+ exports.DeleteConnectorResponse$ = DeleteConnectorResponse$;
1410
+ exports.DeleteCustomPlugin$ = DeleteCustomPlugin$;
1369
1411
  exports.DeleteCustomPluginCommand = DeleteCustomPluginCommand;
1412
+ exports.DeleteCustomPluginRequest$ = DeleteCustomPluginRequest$;
1413
+ exports.DeleteCustomPluginResponse$ = DeleteCustomPluginResponse$;
1414
+ exports.DeleteWorkerConfiguration$ = DeleteWorkerConfiguration$;
1370
1415
  exports.DeleteWorkerConfigurationCommand = DeleteWorkerConfigurationCommand;
1416
+ exports.DeleteWorkerConfigurationRequest$ = DeleteWorkerConfigurationRequest$;
1417
+ exports.DeleteWorkerConfigurationResponse$ = DeleteWorkerConfigurationResponse$;
1418
+ exports.DescribeConnector$ = DescribeConnector$;
1371
1419
  exports.DescribeConnectorCommand = DescribeConnectorCommand;
1420
+ exports.DescribeConnectorOperation$ = DescribeConnectorOperation$;
1372
1421
  exports.DescribeConnectorOperationCommand = DescribeConnectorOperationCommand;
1422
+ exports.DescribeConnectorOperationRequest$ = DescribeConnectorOperationRequest$;
1423
+ exports.DescribeConnectorOperationResponse$ = DescribeConnectorOperationResponse$;
1424
+ exports.DescribeConnectorRequest$ = DescribeConnectorRequest$;
1425
+ exports.DescribeConnectorResponse$ = DescribeConnectorResponse$;
1426
+ exports.DescribeCustomPlugin$ = DescribeCustomPlugin$;
1373
1427
  exports.DescribeCustomPluginCommand = DescribeCustomPluginCommand;
1428
+ exports.DescribeCustomPluginRequest$ = DescribeCustomPluginRequest$;
1429
+ exports.DescribeCustomPluginResponse$ = DescribeCustomPluginResponse$;
1430
+ exports.DescribeWorkerConfiguration$ = DescribeWorkerConfiguration$;
1374
1431
  exports.DescribeWorkerConfigurationCommand = DescribeWorkerConfigurationCommand;
1375
- exports.ForbiddenException = ForbiddenException$1;
1376
- exports.InternalServerErrorException = InternalServerErrorException$1;
1432
+ exports.DescribeWorkerConfigurationRequest$ = DescribeWorkerConfigurationRequest$;
1433
+ exports.DescribeWorkerConfigurationResponse$ = DescribeWorkerConfigurationResponse$;
1434
+ exports.FirehoseLogDelivery$ = FirehoseLogDelivery$;
1435
+ exports.FirehoseLogDeliveryDescription$ = FirehoseLogDeliveryDescription$;
1436
+ exports.ForbiddenException = ForbiddenException;
1437
+ exports.ForbiddenException$ = ForbiddenException$;
1438
+ exports.InternalServerErrorException = InternalServerErrorException;
1439
+ exports.InternalServerErrorException$ = InternalServerErrorException$;
1440
+ exports.KafkaCluster$ = KafkaCluster$;
1441
+ exports.KafkaClusterClientAuthentication$ = KafkaClusterClientAuthentication$;
1442
+ exports.KafkaClusterClientAuthenticationDescription$ = KafkaClusterClientAuthenticationDescription$;
1377
1443
  exports.KafkaClusterClientAuthenticationType = KafkaClusterClientAuthenticationType;
1444
+ exports.KafkaClusterDescription$ = KafkaClusterDescription$;
1445
+ exports.KafkaClusterEncryptionInTransit$ = KafkaClusterEncryptionInTransit$;
1446
+ exports.KafkaClusterEncryptionInTransitDescription$ = KafkaClusterEncryptionInTransitDescription$;
1378
1447
  exports.KafkaClusterEncryptionInTransitType = KafkaClusterEncryptionInTransitType;
1379
1448
  exports.KafkaConnect = KafkaConnect;
1380
1449
  exports.KafkaConnectClient = KafkaConnectClient;
1381
- exports.KafkaConnectServiceException = KafkaConnectServiceException$1;
1450
+ exports.KafkaConnectServiceException = KafkaConnectServiceException;
1451
+ exports.KafkaConnectServiceException$ = KafkaConnectServiceException$;
1452
+ exports.ListConnectorOperations$ = ListConnectorOperations$;
1382
1453
  exports.ListConnectorOperationsCommand = ListConnectorOperationsCommand;
1454
+ exports.ListConnectorOperationsRequest$ = ListConnectorOperationsRequest$;
1455
+ exports.ListConnectorOperationsResponse$ = ListConnectorOperationsResponse$;
1456
+ exports.ListConnectors$ = ListConnectors$;
1383
1457
  exports.ListConnectorsCommand = ListConnectorsCommand;
1458
+ exports.ListConnectorsRequest$ = ListConnectorsRequest$;
1459
+ exports.ListConnectorsResponse$ = ListConnectorsResponse$;
1460
+ exports.ListCustomPlugins$ = ListCustomPlugins$;
1384
1461
  exports.ListCustomPluginsCommand = ListCustomPluginsCommand;
1462
+ exports.ListCustomPluginsRequest$ = ListCustomPluginsRequest$;
1463
+ exports.ListCustomPluginsResponse$ = ListCustomPluginsResponse$;
1464
+ exports.ListTagsForResource$ = ListTagsForResource$;
1385
1465
  exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
1466
+ exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
1467
+ exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
1468
+ exports.ListWorkerConfigurations$ = ListWorkerConfigurations$;
1386
1469
  exports.ListWorkerConfigurationsCommand = ListWorkerConfigurationsCommand;
1387
- exports.NotFoundException = NotFoundException$1;
1388
- exports.ServiceUnavailableException = ServiceUnavailableException$1;
1470
+ exports.ListWorkerConfigurationsRequest$ = ListWorkerConfigurationsRequest$;
1471
+ exports.ListWorkerConfigurationsResponse$ = ListWorkerConfigurationsResponse$;
1472
+ exports.LogDelivery$ = LogDelivery$;
1473
+ exports.LogDeliveryDescription$ = LogDeliveryDescription$;
1474
+ exports.NotFoundException = NotFoundException;
1475
+ exports.NotFoundException$ = NotFoundException$;
1476
+ exports.Plugin$ = Plugin$;
1477
+ exports.PluginDescription$ = PluginDescription$;
1478
+ exports.ProvisionedCapacity$ = ProvisionedCapacity$;
1479
+ exports.ProvisionedCapacityDescription$ = ProvisionedCapacityDescription$;
1480
+ exports.ProvisionedCapacityUpdate$ = ProvisionedCapacityUpdate$;
1481
+ exports.S3Location$ = S3Location$;
1482
+ exports.S3LocationDescription$ = S3LocationDescription$;
1483
+ exports.S3LogDelivery$ = S3LogDelivery$;
1484
+ exports.S3LogDeliveryDescription$ = S3LogDeliveryDescription$;
1485
+ exports.ScaleInPolicy$ = ScaleInPolicy$;
1486
+ exports.ScaleInPolicyDescription$ = ScaleInPolicyDescription$;
1487
+ exports.ScaleInPolicyUpdate$ = ScaleInPolicyUpdate$;
1488
+ exports.ScaleOutPolicy$ = ScaleOutPolicy$;
1489
+ exports.ScaleOutPolicyDescription$ = ScaleOutPolicyDescription$;
1490
+ exports.ScaleOutPolicyUpdate$ = ScaleOutPolicyUpdate$;
1491
+ exports.ServiceUnavailableException = ServiceUnavailableException;
1492
+ exports.ServiceUnavailableException$ = ServiceUnavailableException$;
1493
+ exports.StateDescription$ = StateDescription$;
1494
+ exports.TagResource$ = TagResource$;
1389
1495
  exports.TagResourceCommand = TagResourceCommand;
1390
- exports.TooManyRequestsException = TooManyRequestsException$1;
1391
- exports.UnauthorizedException = UnauthorizedException$1;
1496
+ exports.TagResourceRequest$ = TagResourceRequest$;
1497
+ exports.TagResourceResponse$ = TagResourceResponse$;
1498
+ exports.TooManyRequestsException = TooManyRequestsException;
1499
+ exports.TooManyRequestsException$ = TooManyRequestsException$;
1500
+ exports.UnauthorizedException = UnauthorizedException;
1501
+ exports.UnauthorizedException$ = UnauthorizedException$;
1502
+ exports.UntagResource$ = UntagResource$;
1392
1503
  exports.UntagResourceCommand = UntagResourceCommand;
1504
+ exports.UntagResourceRequest$ = UntagResourceRequest$;
1505
+ exports.UntagResourceResponse$ = UntagResourceResponse$;
1506
+ exports.UpdateConnector$ = UpdateConnector$;
1393
1507
  exports.UpdateConnectorCommand = UpdateConnectorCommand;
1508
+ exports.UpdateConnectorRequest$ = UpdateConnectorRequest$;
1509
+ exports.UpdateConnectorResponse$ = UpdateConnectorResponse$;
1510
+ exports.Vpc$ = Vpc$;
1511
+ exports.VpcDescription$ = VpcDescription$;
1512
+ exports.WorkerConfiguration$ = WorkerConfiguration$;
1513
+ exports.WorkerConfigurationDescription$ = WorkerConfigurationDescription$;
1514
+ exports.WorkerConfigurationRevisionDescription$ = WorkerConfigurationRevisionDescription$;
1515
+ exports.WorkerConfigurationRevisionSummary$ = WorkerConfigurationRevisionSummary$;
1394
1516
  exports.WorkerConfigurationState = WorkerConfigurationState;
1517
+ exports.WorkerConfigurationSummary$ = WorkerConfigurationSummary$;
1518
+ exports.WorkerLogDelivery$ = WorkerLogDelivery$;
1519
+ exports.WorkerLogDeliveryDescription$ = WorkerLogDeliveryDescription$;
1520
+ exports.WorkerSetting$ = WorkerSetting$;
1395
1521
  exports.paginateListConnectorOperations = paginateListConnectorOperations;
1396
1522
  exports.paginateListConnectors = paginateListConnectors;
1397
1523
  exports.paginateListCustomPlugins = paginateListCustomPlugins;