@aws-sdk/client-kafkaconnect 3.186.0 → 3.190.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 (27) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-es/KafkaConnect.js +50 -57
  3. package/dist-es/KafkaConnectClient.js +22 -28
  4. package/dist-es/commands/CreateConnectorCommand.js +21 -28
  5. package/dist-es/commands/CreateCustomPluginCommand.js +21 -28
  6. package/dist-es/commands/CreateWorkerConfigurationCommand.js +21 -28
  7. package/dist-es/commands/DeleteConnectorCommand.js +21 -28
  8. package/dist-es/commands/DeleteCustomPluginCommand.js +21 -28
  9. package/dist-es/commands/DescribeConnectorCommand.js +21 -28
  10. package/dist-es/commands/DescribeCustomPluginCommand.js +21 -28
  11. package/dist-es/commands/DescribeWorkerConfigurationCommand.js +21 -28
  12. package/dist-es/commands/ListConnectorsCommand.js +21 -28
  13. package/dist-es/commands/ListCustomPluginsCommand.js +21 -28
  14. package/dist-es/commands/ListWorkerConfigurationsCommand.js +21 -28
  15. package/dist-es/commands/UpdateConnectorCommand.js +21 -28
  16. package/dist-es/endpoints.js +8 -8
  17. package/dist-es/models/KafkaConnectServiceException.js +5 -10
  18. package/dist-es/models/models_0.js +326 -168
  19. package/dist-es/pagination/ListConnectorsPaginator.js +25 -68
  20. package/dist-es/pagination/ListCustomPluginsPaginator.js +25 -68
  21. package/dist-es/pagination/ListWorkerConfigurationsPaginator.js +25 -68
  22. package/dist-es/protocols/Aws_restJson1.js +1297 -1639
  23. package/dist-es/runtimeConfig.browser.js +26 -12
  24. package/dist-es/runtimeConfig.js +30 -12
  25. package/dist-es/runtimeConfig.native.js +8 -5
  26. package/dist-es/runtimeConfig.shared.js +8 -11
  27. package/package.json +33 -33
package/CHANGELOG.md CHANGED
@@ -3,6 +3,22 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [3.190.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.189.0...v3.190.0) (2022-10-17)
7
+
8
+ **Note:** Version bump only for package @aws-sdk/client-kafkaconnect
9
+
10
+
11
+
12
+
13
+
14
+ # [3.188.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.187.0...v3.188.0) (2022-10-13)
15
+
16
+ **Note:** Version bump only for package @aws-sdk/client-kafkaconnect
17
+
18
+
19
+
20
+
21
+
6
22
  # [3.186.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.185.0...v3.186.0) (2022-10-06)
7
23
 
8
24
  **Note:** Version bump only for package @aws-sdk/client-kafkaconnect
@@ -1,4 +1,3 @@
1
- import { __extends } from "tslib";
2
1
  import { CreateConnectorCommand, } from "./commands/CreateConnectorCommand";
3
2
  import { CreateCustomPluginCommand, } from "./commands/CreateCustomPluginCommand";
4
3
  import { CreateWorkerConfigurationCommand, } from "./commands/CreateWorkerConfigurationCommand";
@@ -12,179 +11,173 @@ import { ListCustomPluginsCommand, } from "./commands/ListCustomPluginsCommand";
12
11
  import { ListWorkerConfigurationsCommand, } from "./commands/ListWorkerConfigurationsCommand";
13
12
  import { UpdateConnectorCommand, } from "./commands/UpdateConnectorCommand";
14
13
  import { KafkaConnectClient } from "./KafkaConnectClient";
15
- var KafkaConnect = (function (_super) {
16
- __extends(KafkaConnect, _super);
17
- function KafkaConnect() {
18
- return _super !== null && _super.apply(this, arguments) || this;
19
- }
20
- KafkaConnect.prototype.createConnector = function (args, optionsOrCb, cb) {
21
- var command = new CreateConnectorCommand(args);
14
+ export class KafkaConnect extends KafkaConnectClient {
15
+ createConnector(args, optionsOrCb, cb) {
16
+ const command = new CreateConnectorCommand(args);
22
17
  if (typeof optionsOrCb === "function") {
23
18
  this.send(command, optionsOrCb);
24
19
  }
25
20
  else if (typeof cb === "function") {
26
21
  if (typeof optionsOrCb !== "object")
27
- throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
22
+ throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
28
23
  this.send(command, optionsOrCb || {}, cb);
29
24
  }
30
25
  else {
31
26
  return this.send(command, optionsOrCb);
32
27
  }
33
- };
34
- KafkaConnect.prototype.createCustomPlugin = function (args, optionsOrCb, cb) {
35
- var command = new CreateCustomPluginCommand(args);
28
+ }
29
+ createCustomPlugin(args, optionsOrCb, cb) {
30
+ const command = new CreateCustomPluginCommand(args);
36
31
  if (typeof optionsOrCb === "function") {
37
32
  this.send(command, optionsOrCb);
38
33
  }
39
34
  else if (typeof cb === "function") {
40
35
  if (typeof optionsOrCb !== "object")
41
- throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
36
+ throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
42
37
  this.send(command, optionsOrCb || {}, cb);
43
38
  }
44
39
  else {
45
40
  return this.send(command, optionsOrCb);
46
41
  }
47
- };
48
- KafkaConnect.prototype.createWorkerConfiguration = function (args, optionsOrCb, cb) {
49
- var command = new CreateWorkerConfigurationCommand(args);
42
+ }
43
+ createWorkerConfiguration(args, optionsOrCb, cb) {
44
+ const command = new CreateWorkerConfigurationCommand(args);
50
45
  if (typeof optionsOrCb === "function") {
51
46
  this.send(command, optionsOrCb);
52
47
  }
53
48
  else if (typeof cb === "function") {
54
49
  if (typeof optionsOrCb !== "object")
55
- throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
50
+ throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
56
51
  this.send(command, optionsOrCb || {}, cb);
57
52
  }
58
53
  else {
59
54
  return this.send(command, optionsOrCb);
60
55
  }
61
- };
62
- KafkaConnect.prototype.deleteConnector = function (args, optionsOrCb, cb) {
63
- var command = new DeleteConnectorCommand(args);
56
+ }
57
+ deleteConnector(args, optionsOrCb, cb) {
58
+ const command = new DeleteConnectorCommand(args);
64
59
  if (typeof optionsOrCb === "function") {
65
60
  this.send(command, optionsOrCb);
66
61
  }
67
62
  else if (typeof cb === "function") {
68
63
  if (typeof optionsOrCb !== "object")
69
- throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
64
+ throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
70
65
  this.send(command, optionsOrCb || {}, cb);
71
66
  }
72
67
  else {
73
68
  return this.send(command, optionsOrCb);
74
69
  }
75
- };
76
- KafkaConnect.prototype.deleteCustomPlugin = function (args, optionsOrCb, cb) {
77
- var command = new DeleteCustomPluginCommand(args);
70
+ }
71
+ deleteCustomPlugin(args, optionsOrCb, cb) {
72
+ const command = new DeleteCustomPluginCommand(args);
78
73
  if (typeof optionsOrCb === "function") {
79
74
  this.send(command, optionsOrCb);
80
75
  }
81
76
  else if (typeof cb === "function") {
82
77
  if (typeof optionsOrCb !== "object")
83
- throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
78
+ throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
84
79
  this.send(command, optionsOrCb || {}, cb);
85
80
  }
86
81
  else {
87
82
  return this.send(command, optionsOrCb);
88
83
  }
89
- };
90
- KafkaConnect.prototype.describeConnector = function (args, optionsOrCb, cb) {
91
- var command = new DescribeConnectorCommand(args);
84
+ }
85
+ describeConnector(args, optionsOrCb, cb) {
86
+ const command = new DescribeConnectorCommand(args);
92
87
  if (typeof optionsOrCb === "function") {
93
88
  this.send(command, optionsOrCb);
94
89
  }
95
90
  else if (typeof cb === "function") {
96
91
  if (typeof optionsOrCb !== "object")
97
- throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
92
+ throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
98
93
  this.send(command, optionsOrCb || {}, cb);
99
94
  }
100
95
  else {
101
96
  return this.send(command, optionsOrCb);
102
97
  }
103
- };
104
- KafkaConnect.prototype.describeCustomPlugin = function (args, optionsOrCb, cb) {
105
- var command = new DescribeCustomPluginCommand(args);
98
+ }
99
+ describeCustomPlugin(args, optionsOrCb, cb) {
100
+ const command = new DescribeCustomPluginCommand(args);
106
101
  if (typeof optionsOrCb === "function") {
107
102
  this.send(command, optionsOrCb);
108
103
  }
109
104
  else if (typeof cb === "function") {
110
105
  if (typeof optionsOrCb !== "object")
111
- throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
106
+ throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
112
107
  this.send(command, optionsOrCb || {}, cb);
113
108
  }
114
109
  else {
115
110
  return this.send(command, optionsOrCb);
116
111
  }
117
- };
118
- KafkaConnect.prototype.describeWorkerConfiguration = function (args, optionsOrCb, cb) {
119
- var command = new DescribeWorkerConfigurationCommand(args);
112
+ }
113
+ describeWorkerConfiguration(args, optionsOrCb, cb) {
114
+ const command = new DescribeWorkerConfigurationCommand(args);
120
115
  if (typeof optionsOrCb === "function") {
121
116
  this.send(command, optionsOrCb);
122
117
  }
123
118
  else if (typeof cb === "function") {
124
119
  if (typeof optionsOrCb !== "object")
125
- throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
120
+ throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
126
121
  this.send(command, optionsOrCb || {}, cb);
127
122
  }
128
123
  else {
129
124
  return this.send(command, optionsOrCb);
130
125
  }
131
- };
132
- KafkaConnect.prototype.listConnectors = function (args, optionsOrCb, cb) {
133
- var command = new ListConnectorsCommand(args);
126
+ }
127
+ listConnectors(args, optionsOrCb, cb) {
128
+ const command = new ListConnectorsCommand(args);
134
129
  if (typeof optionsOrCb === "function") {
135
130
  this.send(command, optionsOrCb);
136
131
  }
137
132
  else if (typeof cb === "function") {
138
133
  if (typeof optionsOrCb !== "object")
139
- throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
134
+ throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
140
135
  this.send(command, optionsOrCb || {}, cb);
141
136
  }
142
137
  else {
143
138
  return this.send(command, optionsOrCb);
144
139
  }
145
- };
146
- KafkaConnect.prototype.listCustomPlugins = function (args, optionsOrCb, cb) {
147
- var command = new ListCustomPluginsCommand(args);
140
+ }
141
+ listCustomPlugins(args, optionsOrCb, cb) {
142
+ const command = new ListCustomPluginsCommand(args);
148
143
  if (typeof optionsOrCb === "function") {
149
144
  this.send(command, optionsOrCb);
150
145
  }
151
146
  else if (typeof cb === "function") {
152
147
  if (typeof optionsOrCb !== "object")
153
- throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
148
+ throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
154
149
  this.send(command, optionsOrCb || {}, cb);
155
150
  }
156
151
  else {
157
152
  return this.send(command, optionsOrCb);
158
153
  }
159
- };
160
- KafkaConnect.prototype.listWorkerConfigurations = function (args, optionsOrCb, cb) {
161
- var command = new ListWorkerConfigurationsCommand(args);
154
+ }
155
+ listWorkerConfigurations(args, optionsOrCb, cb) {
156
+ const command = new ListWorkerConfigurationsCommand(args);
162
157
  if (typeof optionsOrCb === "function") {
163
158
  this.send(command, optionsOrCb);
164
159
  }
165
160
  else if (typeof cb === "function") {
166
161
  if (typeof optionsOrCb !== "object")
167
- throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
162
+ throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
168
163
  this.send(command, optionsOrCb || {}, cb);
169
164
  }
170
165
  else {
171
166
  return this.send(command, optionsOrCb);
172
167
  }
173
- };
174
- KafkaConnect.prototype.updateConnector = function (args, optionsOrCb, cb) {
175
- var command = new UpdateConnectorCommand(args);
168
+ }
169
+ updateConnector(args, optionsOrCb, cb) {
170
+ const command = new UpdateConnectorCommand(args);
176
171
  if (typeof optionsOrCb === "function") {
177
172
  this.send(command, optionsOrCb);
178
173
  }
179
174
  else if (typeof cb === "function") {
180
175
  if (typeof optionsOrCb !== "object")
181
- throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
176
+ throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
182
177
  this.send(command, optionsOrCb || {}, cb);
183
178
  }
184
179
  else {
185
180
  return this.send(command, optionsOrCb);
186
181
  }
187
- };
188
- return KafkaConnect;
189
- }(KafkaConnectClient));
190
- export { KafkaConnect };
182
+ }
183
+ }
@@ -1,4 +1,3 @@
1
- import { __extends } from "tslib";
2
1
  import { resolveEndpointsConfig, resolveRegionConfig, } from "@aws-sdk/config-resolver";
3
2
  import { getContentLengthPlugin } from "@aws-sdk/middleware-content-length";
4
3
  import { getHostHeaderPlugin, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header";
@@ -9,31 +8,26 @@ import { getAwsAuthPlugin, resolveAwsAuthConfig, } from "@aws-sdk/middleware-sig
9
8
  import { getUserAgentPlugin, resolveUserAgentConfig, } from "@aws-sdk/middleware-user-agent";
10
9
  import { Client as __Client, } from "@aws-sdk/smithy-client";
11
10
  import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig";
12
- var KafkaConnectClient = (function (_super) {
13
- __extends(KafkaConnectClient, _super);
14
- function KafkaConnectClient(configuration) {
15
- var _this = this;
16
- var _config_0 = __getRuntimeConfig(configuration);
17
- var _config_1 = resolveRegionConfig(_config_0);
18
- var _config_2 = resolveEndpointsConfig(_config_1);
19
- var _config_3 = resolveRetryConfig(_config_2);
20
- var _config_4 = resolveHostHeaderConfig(_config_3);
21
- var _config_5 = resolveAwsAuthConfig(_config_4);
22
- var _config_6 = resolveUserAgentConfig(_config_5);
23
- _this = _super.call(this, _config_6) || this;
24
- _this.config = _config_6;
25
- _this.middlewareStack.use(getRetryPlugin(_this.config));
26
- _this.middlewareStack.use(getContentLengthPlugin(_this.config));
27
- _this.middlewareStack.use(getHostHeaderPlugin(_this.config));
28
- _this.middlewareStack.use(getLoggerPlugin(_this.config));
29
- _this.middlewareStack.use(getRecursionDetectionPlugin(_this.config));
30
- _this.middlewareStack.use(getAwsAuthPlugin(_this.config));
31
- _this.middlewareStack.use(getUserAgentPlugin(_this.config));
32
- return _this;
11
+ export class KafkaConnectClient extends __Client {
12
+ constructor(configuration) {
13
+ const _config_0 = __getRuntimeConfig(configuration);
14
+ const _config_1 = resolveRegionConfig(_config_0);
15
+ const _config_2 = resolveEndpointsConfig(_config_1);
16
+ const _config_3 = resolveRetryConfig(_config_2);
17
+ const _config_4 = resolveHostHeaderConfig(_config_3);
18
+ const _config_5 = resolveAwsAuthConfig(_config_4);
19
+ const _config_6 = resolveUserAgentConfig(_config_5);
20
+ super(_config_6);
21
+ this.config = _config_6;
22
+ this.middlewareStack.use(getRetryPlugin(this.config));
23
+ this.middlewareStack.use(getContentLengthPlugin(this.config));
24
+ this.middlewareStack.use(getHostHeaderPlugin(this.config));
25
+ this.middlewareStack.use(getLoggerPlugin(this.config));
26
+ this.middlewareStack.use(getRecursionDetectionPlugin(this.config));
27
+ this.middlewareStack.use(getAwsAuthPlugin(this.config));
28
+ this.middlewareStack.use(getUserAgentPlugin(this.config));
33
29
  }
34
- KafkaConnectClient.prototype.destroy = function () {
35
- _super.prototype.destroy.call(this);
36
- };
37
- return KafkaConnectClient;
38
- }(__Client));
39
- export { KafkaConnectClient };
30
+ destroy() {
31
+ super.destroy();
32
+ }
33
+ }
@@ -1,39 +1,32 @@
1
- import { __extends } from "tslib";
2
1
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
3
  import { CreateConnectorRequestFilterSensitiveLog, CreateConnectorResponseFilterSensitiveLog, } from "../models/models_0";
5
4
  import { deserializeAws_restJson1CreateConnectorCommand, serializeAws_restJson1CreateConnectorCommand, } from "../protocols/Aws_restJson1";
6
- var CreateConnectorCommand = (function (_super) {
7
- __extends(CreateConnectorCommand, _super);
8
- function CreateConnectorCommand(input) {
9
- var _this = _super.call(this) || this;
10
- _this.input = input;
11
- return _this;
5
+ export class CreateConnectorCommand extends $Command {
6
+ constructor(input) {
7
+ super();
8
+ this.input = input;
12
9
  }
13
- CreateConnectorCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
10
+ resolveMiddleware(clientStack, configuration, options) {
14
11
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
15
- var stack = clientStack.concat(this.middlewareStack);
16
- var logger = configuration.logger;
17
- var clientName = "KafkaConnectClient";
18
- var commandName = "CreateConnectorCommand";
19
- var handlerExecutionContext = {
20
- logger: logger,
21
- clientName: clientName,
22
- commandName: commandName,
12
+ const stack = clientStack.concat(this.middlewareStack);
13
+ const { logger } = configuration;
14
+ const clientName = "KafkaConnectClient";
15
+ const commandName = "CreateConnectorCommand";
16
+ const handlerExecutionContext = {
17
+ logger,
18
+ clientName,
19
+ commandName,
23
20
  inputFilterSensitiveLog: CreateConnectorRequestFilterSensitiveLog,
24
21
  outputFilterSensitiveLog: CreateConnectorResponseFilterSensitiveLog,
25
22
  };
26
- var requestHandler = configuration.requestHandler;
27
- return stack.resolve(function (request) {
28
- return requestHandler.handle(request.request, options || {});
29
- }, handlerExecutionContext);
30
- };
31
- CreateConnectorCommand.prototype.serialize = function (input, context) {
23
+ const { requestHandler } = configuration;
24
+ return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
+ }
26
+ serialize(input, context) {
32
27
  return serializeAws_restJson1CreateConnectorCommand(input, context);
33
- };
34
- CreateConnectorCommand.prototype.deserialize = function (output, context) {
28
+ }
29
+ deserialize(output, context) {
35
30
  return deserializeAws_restJson1CreateConnectorCommand(output, context);
36
- };
37
- return CreateConnectorCommand;
38
- }($Command));
39
- export { CreateConnectorCommand };
31
+ }
32
+ }
@@ -1,39 +1,32 @@
1
- import { __extends } from "tslib";
2
1
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
3
  import { CreateCustomPluginRequestFilterSensitiveLog, CreateCustomPluginResponseFilterSensitiveLog, } from "../models/models_0";
5
4
  import { deserializeAws_restJson1CreateCustomPluginCommand, serializeAws_restJson1CreateCustomPluginCommand, } from "../protocols/Aws_restJson1";
6
- var CreateCustomPluginCommand = (function (_super) {
7
- __extends(CreateCustomPluginCommand, _super);
8
- function CreateCustomPluginCommand(input) {
9
- var _this = _super.call(this) || this;
10
- _this.input = input;
11
- return _this;
5
+ export class CreateCustomPluginCommand extends $Command {
6
+ constructor(input) {
7
+ super();
8
+ this.input = input;
12
9
  }
13
- CreateCustomPluginCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
10
+ resolveMiddleware(clientStack, configuration, options) {
14
11
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
15
- var stack = clientStack.concat(this.middlewareStack);
16
- var logger = configuration.logger;
17
- var clientName = "KafkaConnectClient";
18
- var commandName = "CreateCustomPluginCommand";
19
- var handlerExecutionContext = {
20
- logger: logger,
21
- clientName: clientName,
22
- commandName: commandName,
12
+ const stack = clientStack.concat(this.middlewareStack);
13
+ const { logger } = configuration;
14
+ const clientName = "KafkaConnectClient";
15
+ const commandName = "CreateCustomPluginCommand";
16
+ const handlerExecutionContext = {
17
+ logger,
18
+ clientName,
19
+ commandName,
23
20
  inputFilterSensitiveLog: CreateCustomPluginRequestFilterSensitiveLog,
24
21
  outputFilterSensitiveLog: CreateCustomPluginResponseFilterSensitiveLog,
25
22
  };
26
- var requestHandler = configuration.requestHandler;
27
- return stack.resolve(function (request) {
28
- return requestHandler.handle(request.request, options || {});
29
- }, handlerExecutionContext);
30
- };
31
- CreateCustomPluginCommand.prototype.serialize = function (input, context) {
23
+ const { requestHandler } = configuration;
24
+ return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
+ }
26
+ serialize(input, context) {
32
27
  return serializeAws_restJson1CreateCustomPluginCommand(input, context);
33
- };
34
- CreateCustomPluginCommand.prototype.deserialize = function (output, context) {
28
+ }
29
+ deserialize(output, context) {
35
30
  return deserializeAws_restJson1CreateCustomPluginCommand(output, context);
36
- };
37
- return CreateCustomPluginCommand;
38
- }($Command));
39
- export { CreateCustomPluginCommand };
31
+ }
32
+ }
@@ -1,39 +1,32 @@
1
- import { __extends } from "tslib";
2
1
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
3
  import { CreateWorkerConfigurationRequestFilterSensitiveLog, CreateWorkerConfigurationResponseFilterSensitiveLog, } from "../models/models_0";
5
4
  import { deserializeAws_restJson1CreateWorkerConfigurationCommand, serializeAws_restJson1CreateWorkerConfigurationCommand, } from "../protocols/Aws_restJson1";
6
- var CreateWorkerConfigurationCommand = (function (_super) {
7
- __extends(CreateWorkerConfigurationCommand, _super);
8
- function CreateWorkerConfigurationCommand(input) {
9
- var _this = _super.call(this) || this;
10
- _this.input = input;
11
- return _this;
5
+ export class CreateWorkerConfigurationCommand extends $Command {
6
+ constructor(input) {
7
+ super();
8
+ this.input = input;
12
9
  }
13
- CreateWorkerConfigurationCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
10
+ resolveMiddleware(clientStack, configuration, options) {
14
11
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
15
- var stack = clientStack.concat(this.middlewareStack);
16
- var logger = configuration.logger;
17
- var clientName = "KafkaConnectClient";
18
- var commandName = "CreateWorkerConfigurationCommand";
19
- var handlerExecutionContext = {
20
- logger: logger,
21
- clientName: clientName,
22
- commandName: commandName,
12
+ const stack = clientStack.concat(this.middlewareStack);
13
+ const { logger } = configuration;
14
+ const clientName = "KafkaConnectClient";
15
+ const commandName = "CreateWorkerConfigurationCommand";
16
+ const handlerExecutionContext = {
17
+ logger,
18
+ clientName,
19
+ commandName,
23
20
  inputFilterSensitiveLog: CreateWorkerConfigurationRequestFilterSensitiveLog,
24
21
  outputFilterSensitiveLog: CreateWorkerConfigurationResponseFilterSensitiveLog,
25
22
  };
26
- var requestHandler = configuration.requestHandler;
27
- return stack.resolve(function (request) {
28
- return requestHandler.handle(request.request, options || {});
29
- }, handlerExecutionContext);
30
- };
31
- CreateWorkerConfigurationCommand.prototype.serialize = function (input, context) {
23
+ const { requestHandler } = configuration;
24
+ return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
+ }
26
+ serialize(input, context) {
32
27
  return serializeAws_restJson1CreateWorkerConfigurationCommand(input, context);
33
- };
34
- CreateWorkerConfigurationCommand.prototype.deserialize = function (output, context) {
28
+ }
29
+ deserialize(output, context) {
35
30
  return deserializeAws_restJson1CreateWorkerConfigurationCommand(output, context);
36
- };
37
- return CreateWorkerConfigurationCommand;
38
- }($Command));
39
- export { CreateWorkerConfigurationCommand };
31
+ }
32
+ }
@@ -1,39 +1,32 @@
1
- import { __extends } from "tslib";
2
1
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
3
  import { DeleteConnectorRequestFilterSensitiveLog, DeleteConnectorResponseFilterSensitiveLog, } from "../models/models_0";
5
4
  import { deserializeAws_restJson1DeleteConnectorCommand, serializeAws_restJson1DeleteConnectorCommand, } from "../protocols/Aws_restJson1";
6
- var DeleteConnectorCommand = (function (_super) {
7
- __extends(DeleteConnectorCommand, _super);
8
- function DeleteConnectorCommand(input) {
9
- var _this = _super.call(this) || this;
10
- _this.input = input;
11
- return _this;
5
+ export class DeleteConnectorCommand extends $Command {
6
+ constructor(input) {
7
+ super();
8
+ this.input = input;
12
9
  }
13
- DeleteConnectorCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
10
+ resolveMiddleware(clientStack, configuration, options) {
14
11
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
15
- var stack = clientStack.concat(this.middlewareStack);
16
- var logger = configuration.logger;
17
- var clientName = "KafkaConnectClient";
18
- var commandName = "DeleteConnectorCommand";
19
- var handlerExecutionContext = {
20
- logger: logger,
21
- clientName: clientName,
22
- commandName: commandName,
12
+ const stack = clientStack.concat(this.middlewareStack);
13
+ const { logger } = configuration;
14
+ const clientName = "KafkaConnectClient";
15
+ const commandName = "DeleteConnectorCommand";
16
+ const handlerExecutionContext = {
17
+ logger,
18
+ clientName,
19
+ commandName,
23
20
  inputFilterSensitiveLog: DeleteConnectorRequestFilterSensitiveLog,
24
21
  outputFilterSensitiveLog: DeleteConnectorResponseFilterSensitiveLog,
25
22
  };
26
- var requestHandler = configuration.requestHandler;
27
- return stack.resolve(function (request) {
28
- return requestHandler.handle(request.request, options || {});
29
- }, handlerExecutionContext);
30
- };
31
- DeleteConnectorCommand.prototype.serialize = function (input, context) {
23
+ const { requestHandler } = configuration;
24
+ return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
+ }
26
+ serialize(input, context) {
32
27
  return serializeAws_restJson1DeleteConnectorCommand(input, context);
33
- };
34
- DeleteConnectorCommand.prototype.deserialize = function (output, context) {
28
+ }
29
+ deserialize(output, context) {
35
30
  return deserializeAws_restJson1DeleteConnectorCommand(output, context);
36
- };
37
- return DeleteConnectorCommand;
38
- }($Command));
39
- export { DeleteConnectorCommand };
31
+ }
32
+ }
@@ -1,39 +1,32 @@
1
- import { __extends } from "tslib";
2
1
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
3
  import { DeleteCustomPluginRequestFilterSensitiveLog, DeleteCustomPluginResponseFilterSensitiveLog, } from "../models/models_0";
5
4
  import { deserializeAws_restJson1DeleteCustomPluginCommand, serializeAws_restJson1DeleteCustomPluginCommand, } from "../protocols/Aws_restJson1";
6
- var DeleteCustomPluginCommand = (function (_super) {
7
- __extends(DeleteCustomPluginCommand, _super);
8
- function DeleteCustomPluginCommand(input) {
9
- var _this = _super.call(this) || this;
10
- _this.input = input;
11
- return _this;
5
+ export class DeleteCustomPluginCommand extends $Command {
6
+ constructor(input) {
7
+ super();
8
+ this.input = input;
12
9
  }
13
- DeleteCustomPluginCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
10
+ resolveMiddleware(clientStack, configuration, options) {
14
11
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
15
- var stack = clientStack.concat(this.middlewareStack);
16
- var logger = configuration.logger;
17
- var clientName = "KafkaConnectClient";
18
- var commandName = "DeleteCustomPluginCommand";
19
- var handlerExecutionContext = {
20
- logger: logger,
21
- clientName: clientName,
22
- commandName: commandName,
12
+ const stack = clientStack.concat(this.middlewareStack);
13
+ const { logger } = configuration;
14
+ const clientName = "KafkaConnectClient";
15
+ const commandName = "DeleteCustomPluginCommand";
16
+ const handlerExecutionContext = {
17
+ logger,
18
+ clientName,
19
+ commandName,
23
20
  inputFilterSensitiveLog: DeleteCustomPluginRequestFilterSensitiveLog,
24
21
  outputFilterSensitiveLog: DeleteCustomPluginResponseFilterSensitiveLog,
25
22
  };
26
- var requestHandler = configuration.requestHandler;
27
- return stack.resolve(function (request) {
28
- return requestHandler.handle(request.request, options || {});
29
- }, handlerExecutionContext);
30
- };
31
- DeleteCustomPluginCommand.prototype.serialize = function (input, context) {
23
+ const { requestHandler } = configuration;
24
+ return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
+ }
26
+ serialize(input, context) {
32
27
  return serializeAws_restJson1DeleteCustomPluginCommand(input, context);
33
- };
34
- DeleteCustomPluginCommand.prototype.deserialize = function (output, context) {
28
+ }
29
+ deserialize(output, context) {
35
30
  return deserializeAws_restJson1DeleteCustomPluginCommand(output, context);
36
- };
37
- return DeleteCustomPluginCommand;
38
- }($Command));
39
- export { DeleteCustomPluginCommand };
31
+ }
32
+ }