@aws-sdk/client-kafkaconnect 3.50.0 → 3.53.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 (42) hide show
  1. package/CHANGELOG.md +27 -0
  2. package/dist-cjs/index.js +3 -0
  3. package/dist-cjs/models/KafkaConnectServiceException.js +11 -0
  4. package/dist-cjs/models/models_0.js +107 -2
  5. package/dist-cjs/protocols/Aws_restJson1.js +184 -651
  6. package/dist-es/index.js +1 -0
  7. package/dist-es/models/KafkaConnectServiceException.js +12 -0
  8. package/dist-es/models/models_0.js +98 -1
  9. package/dist-es/protocols/Aws_restJson1.js +337 -704
  10. package/dist-types/index.d.ts +1 -0
  11. package/dist-types/models/KafkaConnectServiceException.d.ts +10 -0
  12. package/dist-types/models/models_0.d.ts +58 -33
  13. package/dist-types/ts3.4/KafkaConnect.d.ts +60 -0
  14. package/dist-types/ts3.4/KafkaConnectClient.d.ts +84 -0
  15. package/dist-types/ts3.4/commands/CreateConnectorCommand.d.ts +17 -0
  16. package/dist-types/ts3.4/commands/CreateCustomPluginCommand.d.ts +17 -0
  17. package/dist-types/ts3.4/commands/CreateWorkerConfigurationCommand.d.ts +17 -0
  18. package/dist-types/ts3.4/commands/DeleteConnectorCommand.d.ts +17 -0
  19. package/dist-types/ts3.4/commands/DescribeConnectorCommand.d.ts +17 -0
  20. package/dist-types/ts3.4/commands/DescribeCustomPluginCommand.d.ts +17 -0
  21. package/dist-types/ts3.4/commands/DescribeWorkerConfigurationCommand.d.ts +17 -0
  22. package/dist-types/ts3.4/commands/ListConnectorsCommand.d.ts +17 -0
  23. package/dist-types/ts3.4/commands/ListCustomPluginsCommand.d.ts +17 -0
  24. package/dist-types/ts3.4/commands/ListWorkerConfigurationsCommand.d.ts +17 -0
  25. package/dist-types/ts3.4/commands/UpdateConnectorCommand.d.ts +17 -0
  26. package/dist-types/ts3.4/commands/index.d.ts +11 -0
  27. package/dist-types/ts3.4/endpoints.d.ts +2 -0
  28. package/dist-types/ts3.4/index.d.ts +6 -0
  29. package/dist-types/ts3.4/models/KafkaConnectServiceException.d.ts +6 -0
  30. package/dist-types/ts3.4/models/index.d.ts +1 -0
  31. package/dist-types/ts3.4/models/models_0.d.ts +1005 -0
  32. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  33. package/dist-types/ts3.4/pagination/ListConnectorsPaginator.d.ts +4 -0
  34. package/dist-types/ts3.4/pagination/ListCustomPluginsPaginator.d.ts +4 -0
  35. package/dist-types/ts3.4/pagination/ListWorkerConfigurationsPaginator.d.ts +4 -0
  36. package/dist-types/ts3.4/pagination/index.d.ts +4 -0
  37. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +35 -0
  38. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +38 -0
  39. package/dist-types/ts3.4/runtimeConfig.d.ts +38 -0
  40. package/dist-types/ts3.4/runtimeConfig.native.d.ts +37 -0
  41. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -0
  42. package/package.json +33 -33
package/dist-es/index.js CHANGED
@@ -3,3 +3,4 @@ export * from "./KafkaConnectClient";
3
3
  export * from "./commands";
4
4
  export * from "./models";
5
5
  export * from "./pagination";
6
+ export { KafkaConnectServiceException } from "./models/KafkaConnectServiceException";
@@ -0,0 +1,12 @@
1
+ import { __extends } from "tslib";
2
+ import { ServiceException as __ServiceException, } from "@aws-sdk/smithy-client";
3
+ var KafkaConnectServiceException = (function (_super) {
4
+ __extends(KafkaConnectServiceException, _super);
5
+ function KafkaConnectServiceException(options) {
6
+ var _this = _super.call(this, options) || this;
7
+ Object.setPrototypeOf(_this, KafkaConnectServiceException.prototype);
8
+ return _this;
9
+ }
10
+ return KafkaConnectServiceException;
11
+ }(__ServiceException));
12
+ export { KafkaConnectServiceException };
@@ -1,4 +1,5 @@
1
- import { __assign } from "tslib";
1
+ import { __assign, __extends } from "tslib";
2
+ import { KafkaConnectServiceException as __BaseException } from "./KafkaConnectServiceException";
2
3
  export var ScaleInPolicyDescription;
3
4
  (function (ScaleInPolicyDescription) {
4
5
  ScaleInPolicyDescription.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -175,6 +176,18 @@ export var AutoScalingUpdate;
175
176
  (function (AutoScalingUpdate) {
176
177
  AutoScalingUpdate.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
177
178
  })(AutoScalingUpdate || (AutoScalingUpdate = {}));
179
+ var BadRequestException = (function (_super) {
180
+ __extends(BadRequestException, _super);
181
+ function BadRequestException(opts) {
182
+ var _this = _super.call(this, __assign({ name: "BadRequestException", $fault: "client" }, opts)) || this;
183
+ _this.name = "BadRequestException";
184
+ _this.$fault = "client";
185
+ Object.setPrototypeOf(_this, BadRequestException.prototype);
186
+ return _this;
187
+ }
188
+ return BadRequestException;
189
+ }(__BaseException));
190
+ export { BadRequestException };
178
191
  export var ProvisionedCapacity;
179
192
  (function (ProvisionedCapacity) {
180
193
  ProvisionedCapacity.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -195,6 +208,18 @@ export var CloudWatchLogsLogDelivery;
195
208
  (function (CloudWatchLogsLogDelivery) {
196
209
  CloudWatchLogsLogDelivery.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
197
210
  })(CloudWatchLogsLogDelivery || (CloudWatchLogsLogDelivery = {}));
211
+ var ConflictException = (function (_super) {
212
+ __extends(ConflictException, _super);
213
+ function ConflictException(opts) {
214
+ var _this = _super.call(this, __assign({ name: "ConflictException", $fault: "client" }, opts)) || this;
215
+ _this.name = "ConflictException";
216
+ _this.$fault = "client";
217
+ Object.setPrototypeOf(_this, ConflictException.prototype);
218
+ return _this;
219
+ }
220
+ return ConflictException;
221
+ }(__BaseException));
222
+ export { ConflictException };
198
223
  export var KafkaCluster;
199
224
  (function (KafkaCluster) {
200
225
  KafkaCluster.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -235,6 +260,78 @@ export var CreateConnectorResponse;
235
260
  (function (CreateConnectorResponse) {
236
261
  CreateConnectorResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
237
262
  })(CreateConnectorResponse || (CreateConnectorResponse = {}));
263
+ var ForbiddenException = (function (_super) {
264
+ __extends(ForbiddenException, _super);
265
+ function ForbiddenException(opts) {
266
+ var _this = _super.call(this, __assign({ name: "ForbiddenException", $fault: "client" }, opts)) || this;
267
+ _this.name = "ForbiddenException";
268
+ _this.$fault = "client";
269
+ Object.setPrototypeOf(_this, ForbiddenException.prototype);
270
+ return _this;
271
+ }
272
+ return ForbiddenException;
273
+ }(__BaseException));
274
+ export { ForbiddenException };
275
+ var InternalServerErrorException = (function (_super) {
276
+ __extends(InternalServerErrorException, _super);
277
+ function InternalServerErrorException(opts) {
278
+ var _this = _super.call(this, __assign({ name: "InternalServerErrorException", $fault: "server" }, opts)) || this;
279
+ _this.name = "InternalServerErrorException";
280
+ _this.$fault = "server";
281
+ Object.setPrototypeOf(_this, InternalServerErrorException.prototype);
282
+ return _this;
283
+ }
284
+ return InternalServerErrorException;
285
+ }(__BaseException));
286
+ export { InternalServerErrorException };
287
+ var NotFoundException = (function (_super) {
288
+ __extends(NotFoundException, _super);
289
+ function NotFoundException(opts) {
290
+ var _this = _super.call(this, __assign({ name: "NotFoundException", $fault: "client" }, opts)) || this;
291
+ _this.name = "NotFoundException";
292
+ _this.$fault = "client";
293
+ Object.setPrototypeOf(_this, NotFoundException.prototype);
294
+ return _this;
295
+ }
296
+ return NotFoundException;
297
+ }(__BaseException));
298
+ export { NotFoundException };
299
+ var ServiceUnavailableException = (function (_super) {
300
+ __extends(ServiceUnavailableException, _super);
301
+ function ServiceUnavailableException(opts) {
302
+ var _this = _super.call(this, __assign({ name: "ServiceUnavailableException", $fault: "server" }, opts)) || this;
303
+ _this.name = "ServiceUnavailableException";
304
+ _this.$fault = "server";
305
+ Object.setPrototypeOf(_this, ServiceUnavailableException.prototype);
306
+ return _this;
307
+ }
308
+ return ServiceUnavailableException;
309
+ }(__BaseException));
310
+ export { ServiceUnavailableException };
311
+ var TooManyRequestsException = (function (_super) {
312
+ __extends(TooManyRequestsException, _super);
313
+ function TooManyRequestsException(opts) {
314
+ var _this = _super.call(this, __assign({ name: "TooManyRequestsException", $fault: "client" }, opts)) || this;
315
+ _this.name = "TooManyRequestsException";
316
+ _this.$fault = "client";
317
+ Object.setPrototypeOf(_this, TooManyRequestsException.prototype);
318
+ return _this;
319
+ }
320
+ return TooManyRequestsException;
321
+ }(__BaseException));
322
+ export { TooManyRequestsException };
323
+ var UnauthorizedException = (function (_super) {
324
+ __extends(UnauthorizedException, _super);
325
+ function UnauthorizedException(opts) {
326
+ var _this = _super.call(this, __assign({ name: "UnauthorizedException", $fault: "client" }, opts)) || this;
327
+ _this.name = "UnauthorizedException";
328
+ _this.$fault = "client";
329
+ Object.setPrototypeOf(_this, UnauthorizedException.prototype);
330
+ return _this;
331
+ }
332
+ return UnauthorizedException;
333
+ }(__BaseException));
334
+ export { UnauthorizedException };
238
335
  export var S3Location;
239
336
  (function (S3Location) {
240
337
  S3Location.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };