@aws-sdk/client-kafkaconnect 3.296.0 → 3.298.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/commands/CreateConnectorCommand.js +1 -1
- package/dist-cjs/commands/CreateCustomPluginCommand.js +2 -3
- package/dist-cjs/commands/CreateWorkerConfigurationCommand.js +1 -1
- package/dist-cjs/commands/DeleteConnectorCommand.js +2 -3
- package/dist-cjs/commands/DeleteCustomPluginCommand.js +2 -3
- package/dist-cjs/commands/DescribeConnectorCommand.js +1 -1
- package/dist-cjs/commands/DescribeCustomPluginCommand.js +2 -3
- package/dist-cjs/commands/DescribeWorkerConfigurationCommand.js +1 -1
- package/dist-cjs/commands/ListConnectorsCommand.js +2 -3
- package/dist-cjs/commands/ListCustomPluginsCommand.js +2 -3
- package/dist-cjs/commands/ListWorkerConfigurationsCommand.js +2 -3
- package/dist-cjs/commands/UpdateConnectorCommand.js +2 -3
- package/dist-cjs/models/models_0.js +1 -290
- package/dist-es/commands/CreateConnectorCommand.js +2 -2
- package/dist-es/commands/CreateCustomPluginCommand.js +2 -3
- package/dist-es/commands/CreateWorkerConfigurationCommand.js +2 -2
- package/dist-es/commands/DeleteConnectorCommand.js +2 -3
- package/dist-es/commands/DeleteCustomPluginCommand.js +2 -3
- package/dist-es/commands/DescribeConnectorCommand.js +2 -2
- package/dist-es/commands/DescribeCustomPluginCommand.js +2 -3
- package/dist-es/commands/DescribeWorkerConfigurationCommand.js +2 -2
- package/dist-es/commands/ListConnectorsCommand.js +2 -3
- package/dist-es/commands/ListCustomPluginsCommand.js +2 -3
- package/dist-es/commands/ListWorkerConfigurationsCommand.js +2 -3
- package/dist-es/commands/UpdateConnectorCommand.js +2 -3
- package/dist-es/models/models_0.js +0 -216
- package/dist-types/KafkaConnect.d.ts +13 -0
- package/dist-types/KafkaConnectClient.d.ts +24 -4
- package/dist-types/commands/CreateConnectorCommand.d.ts +16 -0
- package/dist-types/commands/CreateCustomPluginCommand.d.ts +16 -0
- package/dist-types/commands/CreateWorkerConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/DeleteConnectorCommand.d.ts +16 -0
- package/dist-types/commands/DeleteCustomPluginCommand.d.ts +16 -0
- package/dist-types/commands/DescribeConnectorCommand.d.ts +16 -0
- package/dist-types/commands/DescribeCustomPluginCommand.d.ts +16 -0
- package/dist-types/commands/DescribeWorkerConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/ListConnectorsCommand.d.ts +16 -0
- package/dist-types/commands/ListCustomPluginsCommand.d.ts +16 -0
- package/dist-types/commands/ListWorkerConfigurationsCommand.d.ts +16 -0
- package/dist-types/commands/UpdateConnectorCommand.d.ts +16 -0
- package/dist-types/models/KafkaConnectServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +148 -288
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListConnectorsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListCustomPluginsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListWorkerConfigurationsPaginator.d.ts +3 -0
- package/dist-types/ts3.4/models/models_0.d.ts +0 -200
- package/package.json +4 -3
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import { DescribeCustomPluginRequestFilterSensitiveLog, DescribeCustomPluginResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
4
|
import { deserializeAws_restJson1DescribeCustomPluginCommand, serializeAws_restJson1DescribeCustomPluginCommand, } from "../protocols/Aws_restJson1";
|
|
6
5
|
export class DescribeCustomPluginCommand extends $Command {
|
|
7
6
|
static getEndpointParameterInstructions() {
|
|
@@ -27,8 +26,8 @@ export class DescribeCustomPluginCommand extends $Command {
|
|
|
27
26
|
logger,
|
|
28
27
|
clientName,
|
|
29
28
|
commandName,
|
|
30
|
-
inputFilterSensitiveLog:
|
|
31
|
-
outputFilterSensitiveLog:
|
|
29
|
+
inputFilterSensitiveLog: (_) => _,
|
|
30
|
+
outputFilterSensitiveLog: (_) => _,
|
|
32
31
|
};
|
|
33
32
|
const { requestHandler } = configuration;
|
|
34
33
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { DescribeWorkerConfigurationResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1DescribeWorkerConfigurationCommand, serializeAws_restJson1DescribeWorkerConfigurationCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
export class DescribeWorkerConfigurationCommand extends $Command {
|
|
7
7
|
static getEndpointParameterInstructions() {
|
|
@@ -27,7 +27,7 @@ export class DescribeWorkerConfigurationCommand extends $Command {
|
|
|
27
27
|
logger,
|
|
28
28
|
clientName,
|
|
29
29
|
commandName,
|
|
30
|
-
inputFilterSensitiveLog:
|
|
30
|
+
inputFilterSensitiveLog: (_) => _,
|
|
31
31
|
outputFilterSensitiveLog: DescribeWorkerConfigurationResponseFilterSensitiveLog,
|
|
32
32
|
};
|
|
33
33
|
const { requestHandler } = configuration;
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import { ListConnectorsRequestFilterSensitiveLog, ListConnectorsResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
4
|
import { deserializeAws_restJson1ListConnectorsCommand, serializeAws_restJson1ListConnectorsCommand, } from "../protocols/Aws_restJson1";
|
|
6
5
|
export class ListConnectorsCommand extends $Command {
|
|
7
6
|
static getEndpointParameterInstructions() {
|
|
@@ -27,8 +26,8 @@ export class ListConnectorsCommand extends $Command {
|
|
|
27
26
|
logger,
|
|
28
27
|
clientName,
|
|
29
28
|
commandName,
|
|
30
|
-
inputFilterSensitiveLog:
|
|
31
|
-
outputFilterSensitiveLog:
|
|
29
|
+
inputFilterSensitiveLog: (_) => _,
|
|
30
|
+
outputFilterSensitiveLog: (_) => _,
|
|
32
31
|
};
|
|
33
32
|
const { requestHandler } = configuration;
|
|
34
33
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import { ListCustomPluginsRequestFilterSensitiveLog, ListCustomPluginsResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
4
|
import { deserializeAws_restJson1ListCustomPluginsCommand, serializeAws_restJson1ListCustomPluginsCommand, } from "../protocols/Aws_restJson1";
|
|
6
5
|
export class ListCustomPluginsCommand extends $Command {
|
|
7
6
|
static getEndpointParameterInstructions() {
|
|
@@ -27,8 +26,8 @@ export class ListCustomPluginsCommand extends $Command {
|
|
|
27
26
|
logger,
|
|
28
27
|
clientName,
|
|
29
28
|
commandName,
|
|
30
|
-
inputFilterSensitiveLog:
|
|
31
|
-
outputFilterSensitiveLog:
|
|
29
|
+
inputFilterSensitiveLog: (_) => _,
|
|
30
|
+
outputFilterSensitiveLog: (_) => _,
|
|
32
31
|
};
|
|
33
32
|
const { requestHandler } = configuration;
|
|
34
33
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import { ListWorkerConfigurationsRequestFilterSensitiveLog, ListWorkerConfigurationsResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
4
|
import { deserializeAws_restJson1ListWorkerConfigurationsCommand, serializeAws_restJson1ListWorkerConfigurationsCommand, } from "../protocols/Aws_restJson1";
|
|
6
5
|
export class ListWorkerConfigurationsCommand extends $Command {
|
|
7
6
|
static getEndpointParameterInstructions() {
|
|
@@ -27,8 +26,8 @@ export class ListWorkerConfigurationsCommand extends $Command {
|
|
|
27
26
|
logger,
|
|
28
27
|
clientName,
|
|
29
28
|
commandName,
|
|
30
|
-
inputFilterSensitiveLog:
|
|
31
|
-
outputFilterSensitiveLog:
|
|
29
|
+
inputFilterSensitiveLog: (_) => _,
|
|
30
|
+
outputFilterSensitiveLog: (_) => _,
|
|
32
31
|
};
|
|
33
32
|
const { requestHandler } = configuration;
|
|
34
33
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import { UpdateConnectorRequestFilterSensitiveLog, UpdateConnectorResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
4
|
import { deserializeAws_restJson1UpdateConnectorCommand, serializeAws_restJson1UpdateConnectorCommand, } from "../protocols/Aws_restJson1";
|
|
6
5
|
export class UpdateConnectorCommand extends $Command {
|
|
7
6
|
static getEndpointParameterInstructions() {
|
|
@@ -27,8 +26,8 @@ export class UpdateConnectorCommand extends $Command {
|
|
|
27
26
|
logger,
|
|
28
27
|
clientName,
|
|
29
28
|
commandName,
|
|
30
|
-
inputFilterSensitiveLog:
|
|
31
|
-
outputFilterSensitiveLog:
|
|
29
|
+
inputFilterSensitiveLog: (_) => _,
|
|
30
|
+
outputFilterSensitiveLog: (_) => _,
|
|
32
31
|
};
|
|
33
32
|
const { requestHandler } = configuration;
|
|
34
33
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -128,210 +128,18 @@ export class UnauthorizedException extends __BaseException {
|
|
|
128
128
|
Object.setPrototypeOf(this, UnauthorizedException.prototype);
|
|
129
129
|
}
|
|
130
130
|
}
|
|
131
|
-
export const ScaleInPolicyDescriptionFilterSensitiveLog = (obj) => ({
|
|
132
|
-
...obj,
|
|
133
|
-
});
|
|
134
|
-
export const ScaleOutPolicyDescriptionFilterSensitiveLog = (obj) => ({
|
|
135
|
-
...obj,
|
|
136
|
-
});
|
|
137
|
-
export const AutoScalingDescriptionFilterSensitiveLog = (obj) => ({
|
|
138
|
-
...obj,
|
|
139
|
-
});
|
|
140
|
-
export const ProvisionedCapacityDescriptionFilterSensitiveLog = (obj) => ({
|
|
141
|
-
...obj,
|
|
142
|
-
});
|
|
143
|
-
export const CapacityDescriptionFilterSensitiveLog = (obj) => ({
|
|
144
|
-
...obj,
|
|
145
|
-
});
|
|
146
|
-
export const VpcDescriptionFilterSensitiveLog = (obj) => ({
|
|
147
|
-
...obj,
|
|
148
|
-
});
|
|
149
|
-
export const ApacheKafkaClusterDescriptionFilterSensitiveLog = (obj) => ({
|
|
150
|
-
...obj,
|
|
151
|
-
});
|
|
152
|
-
export const KafkaClusterDescriptionFilterSensitiveLog = (obj) => ({
|
|
153
|
-
...obj,
|
|
154
|
-
});
|
|
155
|
-
export const KafkaClusterClientAuthenticationDescriptionFilterSensitiveLog = (obj) => ({
|
|
156
|
-
...obj,
|
|
157
|
-
});
|
|
158
|
-
export const KafkaClusterEncryptionInTransitDescriptionFilterSensitiveLog = (obj) => ({
|
|
159
|
-
...obj,
|
|
160
|
-
});
|
|
161
|
-
export const CloudWatchLogsLogDeliveryDescriptionFilterSensitiveLog = (obj) => ({
|
|
162
|
-
...obj,
|
|
163
|
-
});
|
|
164
|
-
export const FirehoseLogDeliveryDescriptionFilterSensitiveLog = (obj) => ({
|
|
165
|
-
...obj,
|
|
166
|
-
});
|
|
167
|
-
export const S3LogDeliveryDescriptionFilterSensitiveLog = (obj) => ({
|
|
168
|
-
...obj,
|
|
169
|
-
});
|
|
170
|
-
export const WorkerLogDeliveryDescriptionFilterSensitiveLog = (obj) => ({
|
|
171
|
-
...obj,
|
|
172
|
-
});
|
|
173
|
-
export const LogDeliveryDescriptionFilterSensitiveLog = (obj) => ({
|
|
174
|
-
...obj,
|
|
175
|
-
});
|
|
176
|
-
export const CustomPluginDescriptionFilterSensitiveLog = (obj) => ({
|
|
177
|
-
...obj,
|
|
178
|
-
});
|
|
179
|
-
export const PluginDescriptionFilterSensitiveLog = (obj) => ({
|
|
180
|
-
...obj,
|
|
181
|
-
});
|
|
182
|
-
export const WorkerConfigurationDescriptionFilterSensitiveLog = (obj) => ({
|
|
183
|
-
...obj,
|
|
184
|
-
});
|
|
185
|
-
export const ConnectorSummaryFilterSensitiveLog = (obj) => ({
|
|
186
|
-
...obj,
|
|
187
|
-
});
|
|
188
|
-
export const CustomPluginFileDescriptionFilterSensitiveLog = (obj) => ({
|
|
189
|
-
...obj,
|
|
190
|
-
});
|
|
191
|
-
export const S3LocationDescriptionFilterSensitiveLog = (obj) => ({
|
|
192
|
-
...obj,
|
|
193
|
-
});
|
|
194
|
-
export const CustomPluginLocationDescriptionFilterSensitiveLog = (obj) => ({
|
|
195
|
-
...obj,
|
|
196
|
-
});
|
|
197
|
-
export const CustomPluginRevisionSummaryFilterSensitiveLog = (obj) => ({
|
|
198
|
-
...obj,
|
|
199
|
-
});
|
|
200
|
-
export const CustomPluginSummaryFilterSensitiveLog = (obj) => ({
|
|
201
|
-
...obj,
|
|
202
|
-
});
|
|
203
|
-
export const CustomPluginFilterSensitiveLog = (obj) => ({
|
|
204
|
-
...obj,
|
|
205
|
-
});
|
|
206
|
-
export const PluginFilterSensitiveLog = (obj) => ({
|
|
207
|
-
...obj,
|
|
208
|
-
});
|
|
209
|
-
export const WorkerConfigurationRevisionSummaryFilterSensitiveLog = (obj) => ({
|
|
210
|
-
...obj,
|
|
211
|
-
});
|
|
212
|
-
export const WorkerConfigurationSummaryFilterSensitiveLog = (obj) => ({
|
|
213
|
-
...obj,
|
|
214
|
-
});
|
|
215
|
-
export const VpcFilterSensitiveLog = (obj) => ({
|
|
216
|
-
...obj,
|
|
217
|
-
});
|
|
218
|
-
export const ApacheKafkaClusterFilterSensitiveLog = (obj) => ({
|
|
219
|
-
...obj,
|
|
220
|
-
});
|
|
221
|
-
export const ScaleInPolicyFilterSensitiveLog = (obj) => ({
|
|
222
|
-
...obj,
|
|
223
|
-
});
|
|
224
|
-
export const ScaleOutPolicyFilterSensitiveLog = (obj) => ({
|
|
225
|
-
...obj,
|
|
226
|
-
});
|
|
227
|
-
export const AutoScalingFilterSensitiveLog = (obj) => ({
|
|
228
|
-
...obj,
|
|
229
|
-
});
|
|
230
|
-
export const ScaleInPolicyUpdateFilterSensitiveLog = (obj) => ({
|
|
231
|
-
...obj,
|
|
232
|
-
});
|
|
233
|
-
export const ScaleOutPolicyUpdateFilterSensitiveLog = (obj) => ({
|
|
234
|
-
...obj,
|
|
235
|
-
});
|
|
236
|
-
export const AutoScalingUpdateFilterSensitiveLog = (obj) => ({
|
|
237
|
-
...obj,
|
|
238
|
-
});
|
|
239
|
-
export const ProvisionedCapacityFilterSensitiveLog = (obj) => ({
|
|
240
|
-
...obj,
|
|
241
|
-
});
|
|
242
|
-
export const CapacityFilterSensitiveLog = (obj) => ({
|
|
243
|
-
...obj,
|
|
244
|
-
});
|
|
245
|
-
export const ProvisionedCapacityUpdateFilterSensitiveLog = (obj) => ({
|
|
246
|
-
...obj,
|
|
247
|
-
});
|
|
248
|
-
export const CapacityUpdateFilterSensitiveLog = (obj) => ({
|
|
249
|
-
...obj,
|
|
250
|
-
});
|
|
251
|
-
export const CloudWatchLogsLogDeliveryFilterSensitiveLog = (obj) => ({
|
|
252
|
-
...obj,
|
|
253
|
-
});
|
|
254
|
-
export const KafkaClusterFilterSensitiveLog = (obj) => ({
|
|
255
|
-
...obj,
|
|
256
|
-
});
|
|
257
|
-
export const KafkaClusterClientAuthenticationFilterSensitiveLog = (obj) => ({
|
|
258
|
-
...obj,
|
|
259
|
-
});
|
|
260
|
-
export const KafkaClusterEncryptionInTransitFilterSensitiveLog = (obj) => ({
|
|
261
|
-
...obj,
|
|
262
|
-
});
|
|
263
|
-
export const FirehoseLogDeliveryFilterSensitiveLog = (obj) => ({
|
|
264
|
-
...obj,
|
|
265
|
-
});
|
|
266
|
-
export const S3LogDeliveryFilterSensitiveLog = (obj) => ({
|
|
267
|
-
...obj,
|
|
268
|
-
});
|
|
269
|
-
export const WorkerLogDeliveryFilterSensitiveLog = (obj) => ({
|
|
270
|
-
...obj,
|
|
271
|
-
});
|
|
272
|
-
export const LogDeliveryFilterSensitiveLog = (obj) => ({
|
|
273
|
-
...obj,
|
|
274
|
-
});
|
|
275
|
-
export const WorkerConfigurationFilterSensitiveLog = (obj) => ({
|
|
276
|
-
...obj,
|
|
277
|
-
});
|
|
278
131
|
export const CreateConnectorRequestFilterSensitiveLog = (obj) => ({
|
|
279
132
|
...obj,
|
|
280
133
|
...(obj.connectorConfiguration && { connectorConfiguration: SENSITIVE_STRING }),
|
|
281
134
|
});
|
|
282
|
-
export const CreateConnectorResponseFilterSensitiveLog = (obj) => ({
|
|
283
|
-
...obj,
|
|
284
|
-
});
|
|
285
|
-
export const S3LocationFilterSensitiveLog = (obj) => ({
|
|
286
|
-
...obj,
|
|
287
|
-
});
|
|
288
|
-
export const CustomPluginLocationFilterSensitiveLog = (obj) => ({
|
|
289
|
-
...obj,
|
|
290
|
-
});
|
|
291
|
-
export const CreateCustomPluginRequestFilterSensitiveLog = (obj) => ({
|
|
292
|
-
...obj,
|
|
293
|
-
});
|
|
294
|
-
export const CreateCustomPluginResponseFilterSensitiveLog = (obj) => ({
|
|
295
|
-
...obj,
|
|
296
|
-
});
|
|
297
135
|
export const CreateWorkerConfigurationRequestFilterSensitiveLog = (obj) => ({
|
|
298
136
|
...obj,
|
|
299
137
|
...(obj.propertiesFileContent && { propertiesFileContent: SENSITIVE_STRING }),
|
|
300
138
|
});
|
|
301
|
-
export const CreateWorkerConfigurationResponseFilterSensitiveLog = (obj) => ({
|
|
302
|
-
...obj,
|
|
303
|
-
});
|
|
304
|
-
export const DeleteConnectorRequestFilterSensitiveLog = (obj) => ({
|
|
305
|
-
...obj,
|
|
306
|
-
});
|
|
307
|
-
export const DeleteConnectorResponseFilterSensitiveLog = (obj) => ({
|
|
308
|
-
...obj,
|
|
309
|
-
});
|
|
310
|
-
export const DeleteCustomPluginRequestFilterSensitiveLog = (obj) => ({
|
|
311
|
-
...obj,
|
|
312
|
-
});
|
|
313
|
-
export const DeleteCustomPluginResponseFilterSensitiveLog = (obj) => ({
|
|
314
|
-
...obj,
|
|
315
|
-
});
|
|
316
|
-
export const DescribeConnectorRequestFilterSensitiveLog = (obj) => ({
|
|
317
|
-
...obj,
|
|
318
|
-
});
|
|
319
|
-
export const StateDescriptionFilterSensitiveLog = (obj) => ({
|
|
320
|
-
...obj,
|
|
321
|
-
});
|
|
322
139
|
export const DescribeConnectorResponseFilterSensitiveLog = (obj) => ({
|
|
323
140
|
...obj,
|
|
324
141
|
...(obj.connectorConfiguration && { connectorConfiguration: SENSITIVE_STRING }),
|
|
325
142
|
});
|
|
326
|
-
export const DescribeCustomPluginRequestFilterSensitiveLog = (obj) => ({
|
|
327
|
-
...obj,
|
|
328
|
-
});
|
|
329
|
-
export const DescribeCustomPluginResponseFilterSensitiveLog = (obj) => ({
|
|
330
|
-
...obj,
|
|
331
|
-
});
|
|
332
|
-
export const DescribeWorkerConfigurationRequestFilterSensitiveLog = (obj) => ({
|
|
333
|
-
...obj,
|
|
334
|
-
});
|
|
335
143
|
export const WorkerConfigurationRevisionDescriptionFilterSensitiveLog = (obj) => ({
|
|
336
144
|
...obj,
|
|
337
145
|
...(obj.propertiesFileContent && { propertiesFileContent: SENSITIVE_STRING }),
|
|
@@ -342,27 +150,3 @@ export const DescribeWorkerConfigurationResponseFilterSensitiveLog = (obj) => ({
|
|
|
342
150
|
latestRevision: WorkerConfigurationRevisionDescriptionFilterSensitiveLog(obj.latestRevision),
|
|
343
151
|
}),
|
|
344
152
|
});
|
|
345
|
-
export const ListConnectorsRequestFilterSensitiveLog = (obj) => ({
|
|
346
|
-
...obj,
|
|
347
|
-
});
|
|
348
|
-
export const ListConnectorsResponseFilterSensitiveLog = (obj) => ({
|
|
349
|
-
...obj,
|
|
350
|
-
});
|
|
351
|
-
export const ListCustomPluginsRequestFilterSensitiveLog = (obj) => ({
|
|
352
|
-
...obj,
|
|
353
|
-
});
|
|
354
|
-
export const ListCustomPluginsResponseFilterSensitiveLog = (obj) => ({
|
|
355
|
-
...obj,
|
|
356
|
-
});
|
|
357
|
-
export const ListWorkerConfigurationsRequestFilterSensitiveLog = (obj) => ({
|
|
358
|
-
...obj,
|
|
359
|
-
});
|
|
360
|
-
export const ListWorkerConfigurationsResponseFilterSensitiveLog = (obj) => ({
|
|
361
|
-
...obj,
|
|
362
|
-
});
|
|
363
|
-
export const UpdateConnectorRequestFilterSensitiveLog = (obj) => ({
|
|
364
|
-
...obj,
|
|
365
|
-
});
|
|
366
|
-
export const UpdateConnectorResponseFilterSensitiveLog = (obj) => ({
|
|
367
|
-
...obj,
|
|
368
|
-
});
|
|
@@ -13,58 +13,68 @@ import { ListWorkerConfigurationsCommandInput, ListWorkerConfigurationsCommandOu
|
|
|
13
13
|
import { UpdateConnectorCommandInput, UpdateConnectorCommandOutput } from "./commands/UpdateConnectorCommand";
|
|
14
14
|
import { KafkaConnectClient } from "./KafkaConnectClient";
|
|
15
15
|
/**
|
|
16
|
+
* @public
|
|
16
17
|
* <p/>
|
|
17
18
|
*/
|
|
18
19
|
export declare class KafkaConnect extends KafkaConnectClient {
|
|
19
20
|
/**
|
|
21
|
+
* @public
|
|
20
22
|
* <p>Creates a connector using the specified properties.</p>
|
|
21
23
|
*/
|
|
22
24
|
createConnector(args: CreateConnectorCommandInput, options?: __HttpHandlerOptions): Promise<CreateConnectorCommandOutput>;
|
|
23
25
|
createConnector(args: CreateConnectorCommandInput, cb: (err: any, data?: CreateConnectorCommandOutput) => void): void;
|
|
24
26
|
createConnector(args: CreateConnectorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateConnectorCommandOutput) => void): void;
|
|
25
27
|
/**
|
|
28
|
+
* @public
|
|
26
29
|
* <p>Creates a custom plugin using the specified properties.</p>
|
|
27
30
|
*/
|
|
28
31
|
createCustomPlugin(args: CreateCustomPluginCommandInput, options?: __HttpHandlerOptions): Promise<CreateCustomPluginCommandOutput>;
|
|
29
32
|
createCustomPlugin(args: CreateCustomPluginCommandInput, cb: (err: any, data?: CreateCustomPluginCommandOutput) => void): void;
|
|
30
33
|
createCustomPlugin(args: CreateCustomPluginCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateCustomPluginCommandOutput) => void): void;
|
|
31
34
|
/**
|
|
35
|
+
* @public
|
|
32
36
|
* <p>Creates a worker configuration using the specified properties.</p>
|
|
33
37
|
*/
|
|
34
38
|
createWorkerConfiguration(args: CreateWorkerConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<CreateWorkerConfigurationCommandOutput>;
|
|
35
39
|
createWorkerConfiguration(args: CreateWorkerConfigurationCommandInput, cb: (err: any, data?: CreateWorkerConfigurationCommandOutput) => void): void;
|
|
36
40
|
createWorkerConfiguration(args: CreateWorkerConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateWorkerConfigurationCommandOutput) => void): void;
|
|
37
41
|
/**
|
|
42
|
+
* @public
|
|
38
43
|
* <p>Deletes the specified connector.</p>
|
|
39
44
|
*/
|
|
40
45
|
deleteConnector(args: DeleteConnectorCommandInput, options?: __HttpHandlerOptions): Promise<DeleteConnectorCommandOutput>;
|
|
41
46
|
deleteConnector(args: DeleteConnectorCommandInput, cb: (err: any, data?: DeleteConnectorCommandOutput) => void): void;
|
|
42
47
|
deleteConnector(args: DeleteConnectorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteConnectorCommandOutput) => void): void;
|
|
43
48
|
/**
|
|
49
|
+
* @public
|
|
44
50
|
* <p>Deletes a custom plugin.</p>
|
|
45
51
|
*/
|
|
46
52
|
deleteCustomPlugin(args: DeleteCustomPluginCommandInput, options?: __HttpHandlerOptions): Promise<DeleteCustomPluginCommandOutput>;
|
|
47
53
|
deleteCustomPlugin(args: DeleteCustomPluginCommandInput, cb: (err: any, data?: DeleteCustomPluginCommandOutput) => void): void;
|
|
48
54
|
deleteCustomPlugin(args: DeleteCustomPluginCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteCustomPluginCommandOutput) => void): void;
|
|
49
55
|
/**
|
|
56
|
+
* @public
|
|
50
57
|
* <p>Returns summary information about the connector.</p>
|
|
51
58
|
*/
|
|
52
59
|
describeConnector(args: DescribeConnectorCommandInput, options?: __HttpHandlerOptions): Promise<DescribeConnectorCommandOutput>;
|
|
53
60
|
describeConnector(args: DescribeConnectorCommandInput, cb: (err: any, data?: DescribeConnectorCommandOutput) => void): void;
|
|
54
61
|
describeConnector(args: DescribeConnectorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeConnectorCommandOutput) => void): void;
|
|
55
62
|
/**
|
|
63
|
+
* @public
|
|
56
64
|
* <p>A summary description of the custom plugin.</p>
|
|
57
65
|
*/
|
|
58
66
|
describeCustomPlugin(args: DescribeCustomPluginCommandInput, options?: __HttpHandlerOptions): Promise<DescribeCustomPluginCommandOutput>;
|
|
59
67
|
describeCustomPlugin(args: DescribeCustomPluginCommandInput, cb: (err: any, data?: DescribeCustomPluginCommandOutput) => void): void;
|
|
60
68
|
describeCustomPlugin(args: DescribeCustomPluginCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeCustomPluginCommandOutput) => void): void;
|
|
61
69
|
/**
|
|
70
|
+
* @public
|
|
62
71
|
* <p>Returns information about a worker configuration.</p>
|
|
63
72
|
*/
|
|
64
73
|
describeWorkerConfiguration(args: DescribeWorkerConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<DescribeWorkerConfigurationCommandOutput>;
|
|
65
74
|
describeWorkerConfiguration(args: DescribeWorkerConfigurationCommandInput, cb: (err: any, data?: DescribeWorkerConfigurationCommandOutput) => void): void;
|
|
66
75
|
describeWorkerConfiguration(args: DescribeWorkerConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeWorkerConfigurationCommandOutput) => void): void;
|
|
67
76
|
/**
|
|
77
|
+
* @public
|
|
68
78
|
* <p>Returns a list of all the connectors in this account and Region. The list is limited to
|
|
69
79
|
* connectors whose name starts with the specified prefix. The response also includes a
|
|
70
80
|
* description of each of the listed connectors.</p>
|
|
@@ -73,18 +83,21 @@ export declare class KafkaConnect extends KafkaConnectClient {
|
|
|
73
83
|
listConnectors(args: ListConnectorsCommandInput, cb: (err: any, data?: ListConnectorsCommandOutput) => void): void;
|
|
74
84
|
listConnectors(args: ListConnectorsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListConnectorsCommandOutput) => void): void;
|
|
75
85
|
/**
|
|
86
|
+
* @public
|
|
76
87
|
* <p>Returns a list of all of the custom plugins in this account and Region.</p>
|
|
77
88
|
*/
|
|
78
89
|
listCustomPlugins(args: ListCustomPluginsCommandInput, options?: __HttpHandlerOptions): Promise<ListCustomPluginsCommandOutput>;
|
|
79
90
|
listCustomPlugins(args: ListCustomPluginsCommandInput, cb: (err: any, data?: ListCustomPluginsCommandOutput) => void): void;
|
|
80
91
|
listCustomPlugins(args: ListCustomPluginsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListCustomPluginsCommandOutput) => void): void;
|
|
81
92
|
/**
|
|
93
|
+
* @public
|
|
82
94
|
* <p>Returns a list of all of the worker configurations in this account and Region.</p>
|
|
83
95
|
*/
|
|
84
96
|
listWorkerConfigurations(args: ListWorkerConfigurationsCommandInput, options?: __HttpHandlerOptions): Promise<ListWorkerConfigurationsCommandOutput>;
|
|
85
97
|
listWorkerConfigurations(args: ListWorkerConfigurationsCommandInput, cb: (err: any, data?: ListWorkerConfigurationsCommandOutput) => void): void;
|
|
86
98
|
listWorkerConfigurations(args: ListWorkerConfigurationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListWorkerConfigurationsCommandOutput) => void): void;
|
|
87
99
|
/**
|
|
100
|
+
* @public
|
|
88
101
|
* <p>Updates the specified connector.</p>
|
|
89
102
|
*/
|
|
90
103
|
updateConnector(args: UpdateConnectorCommandInput, options?: __HttpHandlerOptions): Promise<UpdateConnectorCommandOutput>;
|
|
@@ -20,15 +20,24 @@ import { ListCustomPluginsCommandInput, ListCustomPluginsCommandOutput } from ".
|
|
|
20
20
|
import { ListWorkerConfigurationsCommandInput, ListWorkerConfigurationsCommandOutput } from "./commands/ListWorkerConfigurationsCommand";
|
|
21
21
|
import { UpdateConnectorCommandInput, UpdateConnectorCommandOutput } from "./commands/UpdateConnectorCommand";
|
|
22
22
|
import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
|
|
23
|
+
/**
|
|
24
|
+
* @public
|
|
25
|
+
*/
|
|
23
26
|
export type ServiceInputTypes = CreateConnectorCommandInput | CreateCustomPluginCommandInput | CreateWorkerConfigurationCommandInput | DeleteConnectorCommandInput | DeleteCustomPluginCommandInput | DescribeConnectorCommandInput | DescribeCustomPluginCommandInput | DescribeWorkerConfigurationCommandInput | ListConnectorsCommandInput | ListCustomPluginsCommandInput | ListWorkerConfigurationsCommandInput | UpdateConnectorCommandInput;
|
|
27
|
+
/**
|
|
28
|
+
* @public
|
|
29
|
+
*/
|
|
24
30
|
export type ServiceOutputTypes = CreateConnectorCommandOutput | CreateCustomPluginCommandOutput | CreateWorkerConfigurationCommandOutput | DeleteConnectorCommandOutput | DeleteCustomPluginCommandOutput | DescribeConnectorCommandOutput | DescribeCustomPluginCommandOutput | DescribeWorkerConfigurationCommandOutput | ListConnectorsCommandOutput | ListCustomPluginsCommandOutput | ListWorkerConfigurationsCommandOutput | UpdateConnectorCommandOutput;
|
|
31
|
+
/**
|
|
32
|
+
* @public
|
|
33
|
+
*/
|
|
25
34
|
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
26
35
|
/**
|
|
27
36
|
* The HTTP handler to use. Fetch in browser and Https in Nodejs.
|
|
28
37
|
*/
|
|
29
38
|
requestHandler?: __HttpHandler;
|
|
30
39
|
/**
|
|
31
|
-
* A constructor for a class implementing the {@link
|
|
40
|
+
* A constructor for a class implementing the {@link @aws-sdk/types#ChecksumConstructor} interface
|
|
32
41
|
* that computes the SHA-256 HMAC or checksum of a string or binary buffer.
|
|
33
42
|
* @internal
|
|
34
43
|
*/
|
|
@@ -118,23 +127,34 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
118
127
|
*/
|
|
119
128
|
logger?: __Logger;
|
|
120
129
|
/**
|
|
121
|
-
* The {@link
|
|
130
|
+
* The {@link @aws-sdk/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
|
|
122
131
|
*/
|
|
123
132
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
124
133
|
}
|
|
134
|
+
/**
|
|
135
|
+
* @public
|
|
136
|
+
*/
|
|
125
137
|
type KafkaConnectClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointInputConfig<EndpointParameters> & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig & ClientInputEndpointParameters;
|
|
126
138
|
/**
|
|
127
|
-
*
|
|
139
|
+
* @public
|
|
140
|
+
*
|
|
141
|
+
* The configuration interface of KafkaConnectClient class constructor that set the region, credentials and other options.
|
|
128
142
|
*/
|
|
129
143
|
export interface KafkaConnectClientConfig extends KafkaConnectClientConfigType {
|
|
130
144
|
}
|
|
145
|
+
/**
|
|
146
|
+
* @public
|
|
147
|
+
*/
|
|
131
148
|
type KafkaConnectClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointResolvedConfig<EndpointParameters> & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig & ClientResolvedEndpointParameters;
|
|
132
149
|
/**
|
|
133
|
-
*
|
|
150
|
+
* @public
|
|
151
|
+
*
|
|
152
|
+
* The resolved configuration interface of KafkaConnectClient class. This is resolved and normalized from the {@link KafkaConnectClientConfig | constructor configuration interface}.
|
|
134
153
|
*/
|
|
135
154
|
export interface KafkaConnectClientResolvedConfig extends KafkaConnectClientResolvedConfigType {
|
|
136
155
|
}
|
|
137
156
|
/**
|
|
157
|
+
* @public
|
|
138
158
|
* <p/>
|
|
139
159
|
*/
|
|
140
160
|
export declare class KafkaConnectClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, KafkaConnectClientResolvedConfig> {
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { KafkaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaConnectClient";
|
|
5
5
|
import { CreateConnectorRequest, CreateConnectorResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateConnectorCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateConnectorCommandInput extends CreateConnectorRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateConnectorCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateConnectorCommandOutput extends CreateConnectorResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Creates a connector using the specified properties.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface CreateConnectorCommandOutput extends CreateConnectorResponse, _
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param CreateConnectorCommandInput - {@link CreateConnectorCommandInput}
|
|
34
|
+
* @returns {@link CreateConnectorCommandOutput}
|
|
28
35
|
* @see {@link CreateConnectorCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link CreateConnectorCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link KafkaConnectClientResolvedConfig | config} for KafkaConnectClient's `config` shape.
|
|
@@ -65,11 +72,20 @@ export interface CreateConnectorCommandOutput extends CreateConnectorResponse, _
|
|
|
65
72
|
export declare class CreateConnectorCommand extends $Command<CreateConnectorCommandInput, CreateConnectorCommandOutput, KafkaConnectClientResolvedConfig> {
|
|
66
73
|
readonly input: CreateConnectorCommandInput;
|
|
67
74
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
75
|
+
/**
|
|
76
|
+
* @public
|
|
77
|
+
*/
|
|
68
78
|
constructor(input: CreateConnectorCommandInput);
|
|
69
79
|
/**
|
|
70
80
|
* @internal
|
|
71
81
|
*/
|
|
72
82
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KafkaConnectClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateConnectorCommandInput, CreateConnectorCommandOutput>;
|
|
83
|
+
/**
|
|
84
|
+
* @internal
|
|
85
|
+
*/
|
|
73
86
|
private serialize;
|
|
87
|
+
/**
|
|
88
|
+
* @internal
|
|
89
|
+
*/
|
|
74
90
|
private deserialize;
|
|
75
91
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { KafkaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaConnectClient";
|
|
5
5
|
import { CreateCustomPluginRequest, CreateCustomPluginResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateCustomPluginCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateCustomPluginCommandInput extends CreateCustomPluginRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateCustomPluginCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateCustomPluginCommandOutput extends CreateCustomPluginResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Creates a custom plugin using the specified properties.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface CreateCustomPluginCommandOutput extends CreateCustomPluginRespo
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param CreateCustomPluginCommandInput - {@link CreateCustomPluginCommandInput}
|
|
34
|
+
* @returns {@link CreateCustomPluginCommandOutput}
|
|
28
35
|
* @see {@link CreateCustomPluginCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link CreateCustomPluginCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link KafkaConnectClientResolvedConfig | config} for KafkaConnectClient's `config` shape.
|
|
@@ -65,11 +72,20 @@ export interface CreateCustomPluginCommandOutput extends CreateCustomPluginRespo
|
|
|
65
72
|
export declare class CreateCustomPluginCommand extends $Command<CreateCustomPluginCommandInput, CreateCustomPluginCommandOutput, KafkaConnectClientResolvedConfig> {
|
|
66
73
|
readonly input: CreateCustomPluginCommandInput;
|
|
67
74
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
75
|
+
/**
|
|
76
|
+
* @public
|
|
77
|
+
*/
|
|
68
78
|
constructor(input: CreateCustomPluginCommandInput);
|
|
69
79
|
/**
|
|
70
80
|
* @internal
|
|
71
81
|
*/
|
|
72
82
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KafkaConnectClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateCustomPluginCommandInput, CreateCustomPluginCommandOutput>;
|
|
83
|
+
/**
|
|
84
|
+
* @internal
|
|
85
|
+
*/
|
|
73
86
|
private serialize;
|
|
87
|
+
/**
|
|
88
|
+
* @internal
|
|
89
|
+
*/
|
|
74
90
|
private deserialize;
|
|
75
91
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { KafkaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaConnectClient";
|
|
5
5
|
import { CreateWorkerConfigurationRequest, CreateWorkerConfigurationResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateWorkerConfigurationCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateWorkerConfigurationCommandInput extends CreateWorkerConfigurationRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateWorkerConfigurationCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateWorkerConfigurationCommandOutput extends CreateWorkerConfigurationResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Creates a worker configuration using the specified properties.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface CreateWorkerConfigurationCommandOutput extends CreateWorkerConf
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param CreateWorkerConfigurationCommandInput - {@link CreateWorkerConfigurationCommandInput}
|
|
34
|
+
* @returns {@link CreateWorkerConfigurationCommandOutput}
|
|
28
35
|
* @see {@link CreateWorkerConfigurationCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link CreateWorkerConfigurationCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link KafkaConnectClientResolvedConfig | config} for KafkaConnectClient's `config` shape.
|
|
@@ -65,11 +72,20 @@ export interface CreateWorkerConfigurationCommandOutput extends CreateWorkerConf
|
|
|
65
72
|
export declare class CreateWorkerConfigurationCommand extends $Command<CreateWorkerConfigurationCommandInput, CreateWorkerConfigurationCommandOutput, KafkaConnectClientResolvedConfig> {
|
|
66
73
|
readonly input: CreateWorkerConfigurationCommandInput;
|
|
67
74
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
75
|
+
/**
|
|
76
|
+
* @public
|
|
77
|
+
*/
|
|
68
78
|
constructor(input: CreateWorkerConfigurationCommandInput);
|
|
69
79
|
/**
|
|
70
80
|
* @internal
|
|
71
81
|
*/
|
|
72
82
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KafkaConnectClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateWorkerConfigurationCommandInput, CreateWorkerConfigurationCommandOutput>;
|
|
83
|
+
/**
|
|
84
|
+
* @internal
|
|
85
|
+
*/
|
|
73
86
|
private serialize;
|
|
87
|
+
/**
|
|
88
|
+
* @internal
|
|
89
|
+
*/
|
|
74
90
|
private deserialize;
|
|
75
91
|
}
|