@aws-sdk/client-kafkaconnect 3.716.0 → 3.723.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/index.js CHANGED
@@ -162,7 +162,14 @@ var resolveRuntimeExtensions = /* @__PURE__ */ __name((runtimeConfig, extensions
162
162
  }, "resolveRuntimeExtensions");
163
163
 
164
164
  // src/KafkaConnectClient.ts
165
- var _KafkaConnectClient = class _KafkaConnectClient extends import_smithy_client.Client {
165
+ var KafkaConnectClient = class extends import_smithy_client.Client {
166
+ static {
167
+ __name(this, "KafkaConnectClient");
168
+ }
169
+ /**
170
+ * The resolved configuration of KafkaConnectClient class. This is resolved and normalized from the {@link KafkaConnectClientConfig | constructor configuration interface}.
171
+ */
172
+ config;
166
173
  constructor(...[configuration]) {
167
174
  const _config_0 = (0, import_runtimeConfig.getRuntimeConfig)(configuration || {});
168
175
  const _config_1 = resolveClientEndpointParameters(_config_0);
@@ -172,7 +179,7 @@ var _KafkaConnectClient = class _KafkaConnectClient extends import_smithy_client
172
179
  const _config_5 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_4);
173
180
  const _config_6 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_5);
174
181
  const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
175
- const _config_8 = resolveRuntimeExtensions(_config_7, (configuration == null ? void 0 : configuration.extensions) || []);
182
+ const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
176
183
  super(_config_8);
177
184
  this.config = _config_8;
178
185
  this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
@@ -200,8 +207,6 @@ var _KafkaConnectClient = class _KafkaConnectClient extends import_smithy_client
200
207
  super.destroy();
201
208
  }
202
209
  };
203
- __name(_KafkaConnectClient, "KafkaConnectClient");
204
- var KafkaConnectClient = _KafkaConnectClient;
205
210
 
206
211
  // src/KafkaConnect.ts
207
212
 
@@ -216,7 +221,10 @@ var import_middleware_serde = require("@smithy/middleware-serde");
216
221
 
217
222
  // src/models/KafkaConnectServiceException.ts
218
223
 
219
- var _KafkaConnectServiceException = class _KafkaConnectServiceException extends import_smithy_client.ServiceException {
224
+ var KafkaConnectServiceException = class _KafkaConnectServiceException extends import_smithy_client.ServiceException {
225
+ static {
226
+ __name(this, "KafkaConnectServiceException");
227
+ }
220
228
  /**
221
229
  * @internal
222
230
  */
@@ -225,8 +233,6 @@ var _KafkaConnectServiceException = class _KafkaConnectServiceException extends
225
233
  Object.setPrototypeOf(this, _KafkaConnectServiceException.prototype);
226
234
  }
227
235
  };
228
- __name(_KafkaConnectServiceException, "KafkaConnectServiceException");
229
- var KafkaConnectServiceException = _KafkaConnectServiceException;
230
236
 
231
237
  // src/models/models_0.ts
232
238
  var ConnectorState = {
@@ -260,7 +266,12 @@ var WorkerConfigurationState = {
260
266
  ACTIVE: "ACTIVE",
261
267
  DELETING: "DELETING"
262
268
  };
263
- var _BadRequestException = class _BadRequestException extends KafkaConnectServiceException {
269
+ var BadRequestException = class _BadRequestException extends KafkaConnectServiceException {
270
+ static {
271
+ __name(this, "BadRequestException");
272
+ }
273
+ name = "BadRequestException";
274
+ $fault = "client";
264
275
  /**
265
276
  * @internal
266
277
  */
@@ -270,14 +281,15 @@ var _BadRequestException = class _BadRequestException extends KafkaConnectServic
270
281
  $fault: "client",
271
282
  ...opts
272
283
  });
273
- this.name = "BadRequestException";
274
- this.$fault = "client";
275
284
  Object.setPrototypeOf(this, _BadRequestException.prototype);
276
285
  }
277
286
  };
278
- __name(_BadRequestException, "BadRequestException");
279
- var BadRequestException = _BadRequestException;
280
- var _ConflictException = class _ConflictException extends KafkaConnectServiceException {
287
+ var ConflictException = class _ConflictException extends KafkaConnectServiceException {
288
+ static {
289
+ __name(this, "ConflictException");
290
+ }
291
+ name = "ConflictException";
292
+ $fault = "client";
281
293
  /**
282
294
  * @internal
283
295
  */
@@ -287,14 +299,15 @@ var _ConflictException = class _ConflictException extends KafkaConnectServiceExc
287
299
  $fault: "client",
288
300
  ...opts
289
301
  });
290
- this.name = "ConflictException";
291
- this.$fault = "client";
292
302
  Object.setPrototypeOf(this, _ConflictException.prototype);
293
303
  }
294
304
  };
295
- __name(_ConflictException, "ConflictException");
296
- var ConflictException = _ConflictException;
297
- var _ForbiddenException = class _ForbiddenException extends KafkaConnectServiceException {
305
+ var ForbiddenException = class _ForbiddenException extends KafkaConnectServiceException {
306
+ static {
307
+ __name(this, "ForbiddenException");
308
+ }
309
+ name = "ForbiddenException";
310
+ $fault = "client";
298
311
  /**
299
312
  * @internal
300
313
  */
@@ -304,14 +317,15 @@ var _ForbiddenException = class _ForbiddenException extends KafkaConnectServiceE
304
317
  $fault: "client",
305
318
  ...opts
306
319
  });
307
- this.name = "ForbiddenException";
308
- this.$fault = "client";
309
320
  Object.setPrototypeOf(this, _ForbiddenException.prototype);
310
321
  }
311
322
  };
312
- __name(_ForbiddenException, "ForbiddenException");
313
- var ForbiddenException = _ForbiddenException;
314
- var _InternalServerErrorException = class _InternalServerErrorException extends KafkaConnectServiceException {
323
+ var InternalServerErrorException = class _InternalServerErrorException extends KafkaConnectServiceException {
324
+ static {
325
+ __name(this, "InternalServerErrorException");
326
+ }
327
+ name = "InternalServerErrorException";
328
+ $fault = "server";
315
329
  /**
316
330
  * @internal
317
331
  */
@@ -321,14 +335,15 @@ var _InternalServerErrorException = class _InternalServerErrorException extends
321
335
  $fault: "server",
322
336
  ...opts
323
337
  });
324
- this.name = "InternalServerErrorException";
325
- this.$fault = "server";
326
338
  Object.setPrototypeOf(this, _InternalServerErrorException.prototype);
327
339
  }
328
340
  };
329
- __name(_InternalServerErrorException, "InternalServerErrorException");
330
- var InternalServerErrorException = _InternalServerErrorException;
331
- var _NotFoundException = class _NotFoundException extends KafkaConnectServiceException {
341
+ var NotFoundException = class _NotFoundException extends KafkaConnectServiceException {
342
+ static {
343
+ __name(this, "NotFoundException");
344
+ }
345
+ name = "NotFoundException";
346
+ $fault = "client";
332
347
  /**
333
348
  * @internal
334
349
  */
@@ -338,14 +353,15 @@ var _NotFoundException = class _NotFoundException extends KafkaConnectServiceExc
338
353
  $fault: "client",
339
354
  ...opts
340
355
  });
341
- this.name = "NotFoundException";
342
- this.$fault = "client";
343
356
  Object.setPrototypeOf(this, _NotFoundException.prototype);
344
357
  }
345
358
  };
346
- __name(_NotFoundException, "NotFoundException");
347
- var NotFoundException = _NotFoundException;
348
- var _ServiceUnavailableException = class _ServiceUnavailableException extends KafkaConnectServiceException {
359
+ var ServiceUnavailableException = class _ServiceUnavailableException extends KafkaConnectServiceException {
360
+ static {
361
+ __name(this, "ServiceUnavailableException");
362
+ }
363
+ name = "ServiceUnavailableException";
364
+ $fault = "server";
349
365
  /**
350
366
  * @internal
351
367
  */
@@ -355,14 +371,15 @@ var _ServiceUnavailableException = class _ServiceUnavailableException extends Ka
355
371
  $fault: "server",
356
372
  ...opts
357
373
  });
358
- this.name = "ServiceUnavailableException";
359
- this.$fault = "server";
360
374
  Object.setPrototypeOf(this, _ServiceUnavailableException.prototype);
361
375
  }
362
376
  };
363
- __name(_ServiceUnavailableException, "ServiceUnavailableException");
364
- var ServiceUnavailableException = _ServiceUnavailableException;
365
- var _TooManyRequestsException = class _TooManyRequestsException extends KafkaConnectServiceException {
377
+ var TooManyRequestsException = class _TooManyRequestsException extends KafkaConnectServiceException {
378
+ static {
379
+ __name(this, "TooManyRequestsException");
380
+ }
381
+ name = "TooManyRequestsException";
382
+ $fault = "client";
366
383
  /**
367
384
  * @internal
368
385
  */
@@ -372,14 +389,15 @@ var _TooManyRequestsException = class _TooManyRequestsException extends KafkaCon
372
389
  $fault: "client",
373
390
  ...opts
374
391
  });
375
- this.name = "TooManyRequestsException";
376
- this.$fault = "client";
377
392
  Object.setPrototypeOf(this, _TooManyRequestsException.prototype);
378
393
  }
379
394
  };
380
- __name(_TooManyRequestsException, "TooManyRequestsException");
381
- var TooManyRequestsException = _TooManyRequestsException;
382
- var _UnauthorizedException = class _UnauthorizedException extends KafkaConnectServiceException {
395
+ var UnauthorizedException = class _UnauthorizedException extends KafkaConnectServiceException {
396
+ static {
397
+ __name(this, "UnauthorizedException");
398
+ }
399
+ name = "UnauthorizedException";
400
+ $fault = "client";
383
401
  /**
384
402
  * @internal
385
403
  */
@@ -389,13 +407,9 @@ var _UnauthorizedException = class _UnauthorizedException extends KafkaConnectSe
389
407
  $fault: "client",
390
408
  ...opts
391
409
  });
392
- this.name = "UnauthorizedException";
393
- this.$fault = "client";
394
410
  Object.setPrototypeOf(this, _UnauthorizedException.prototype);
395
411
  }
396
412
  };
397
- __name(_UnauthorizedException, "UnauthorizedException");
398
- var UnauthorizedException = _UnauthorizedException;
399
413
  var CreateConnectorRequestFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
400
414
  ...obj,
401
415
  ...obj.connectorConfiguration && { connectorConfiguration: import_smithy_client.SENSITIVE_STRING }
@@ -1139,225 +1153,241 @@ var _nT = "nextToken";
1139
1153
  var _tK = "tagKeys";
1140
1154
 
1141
1155
  // src/commands/CreateConnectorCommand.ts
1142
- var _CreateConnectorCommand = class _CreateConnectorCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1156
+ var CreateConnectorCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1143
1157
  return [
1144
1158
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1145
1159
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
1146
1160
  ];
1147
1161
  }).s("KafkaConnect", "CreateConnector", {}).n("KafkaConnectClient", "CreateConnectorCommand").f(CreateConnectorRequestFilterSensitiveLog, void 0).ser(se_CreateConnectorCommand).de(de_CreateConnectorCommand).build() {
1162
+ static {
1163
+ __name(this, "CreateConnectorCommand");
1164
+ }
1148
1165
  };
1149
- __name(_CreateConnectorCommand, "CreateConnectorCommand");
1150
- var CreateConnectorCommand = _CreateConnectorCommand;
1151
1166
 
1152
1167
  // src/commands/CreateCustomPluginCommand.ts
1153
1168
 
1154
1169
 
1155
1170
 
1156
- var _CreateCustomPluginCommand = class _CreateCustomPluginCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1171
+ var CreateCustomPluginCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1157
1172
  return [
1158
1173
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1159
1174
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
1160
1175
  ];
1161
1176
  }).s("KafkaConnect", "CreateCustomPlugin", {}).n("KafkaConnectClient", "CreateCustomPluginCommand").f(void 0, void 0).ser(se_CreateCustomPluginCommand).de(de_CreateCustomPluginCommand).build() {
1177
+ static {
1178
+ __name(this, "CreateCustomPluginCommand");
1179
+ }
1162
1180
  };
1163
- __name(_CreateCustomPluginCommand, "CreateCustomPluginCommand");
1164
- var CreateCustomPluginCommand = _CreateCustomPluginCommand;
1165
1181
 
1166
1182
  // src/commands/CreateWorkerConfigurationCommand.ts
1167
1183
 
1168
1184
 
1169
1185
 
1170
- var _CreateWorkerConfigurationCommand = class _CreateWorkerConfigurationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1186
+ var CreateWorkerConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1171
1187
  return [
1172
1188
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1173
1189
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
1174
1190
  ];
1175
1191
  }).s("KafkaConnect", "CreateWorkerConfiguration", {}).n("KafkaConnectClient", "CreateWorkerConfigurationCommand").f(CreateWorkerConfigurationRequestFilterSensitiveLog, void 0).ser(se_CreateWorkerConfigurationCommand).de(de_CreateWorkerConfigurationCommand).build() {
1192
+ static {
1193
+ __name(this, "CreateWorkerConfigurationCommand");
1194
+ }
1176
1195
  };
1177
- __name(_CreateWorkerConfigurationCommand, "CreateWorkerConfigurationCommand");
1178
- var CreateWorkerConfigurationCommand = _CreateWorkerConfigurationCommand;
1179
1196
 
1180
1197
  // src/commands/DeleteConnectorCommand.ts
1181
1198
 
1182
1199
 
1183
1200
 
1184
- var _DeleteConnectorCommand = class _DeleteConnectorCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1201
+ var DeleteConnectorCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1185
1202
  return [
1186
1203
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1187
1204
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
1188
1205
  ];
1189
1206
  }).s("KafkaConnect", "DeleteConnector", {}).n("KafkaConnectClient", "DeleteConnectorCommand").f(void 0, void 0).ser(se_DeleteConnectorCommand).de(de_DeleteConnectorCommand).build() {
1207
+ static {
1208
+ __name(this, "DeleteConnectorCommand");
1209
+ }
1190
1210
  };
1191
- __name(_DeleteConnectorCommand, "DeleteConnectorCommand");
1192
- var DeleteConnectorCommand = _DeleteConnectorCommand;
1193
1211
 
1194
1212
  // src/commands/DeleteCustomPluginCommand.ts
1195
1213
 
1196
1214
 
1197
1215
 
1198
- var _DeleteCustomPluginCommand = class _DeleteCustomPluginCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1216
+ var DeleteCustomPluginCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1199
1217
  return [
1200
1218
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1201
1219
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
1202
1220
  ];
1203
1221
  }).s("KafkaConnect", "DeleteCustomPlugin", {}).n("KafkaConnectClient", "DeleteCustomPluginCommand").f(void 0, void 0).ser(se_DeleteCustomPluginCommand).de(de_DeleteCustomPluginCommand).build() {
1222
+ static {
1223
+ __name(this, "DeleteCustomPluginCommand");
1224
+ }
1204
1225
  };
1205
- __name(_DeleteCustomPluginCommand, "DeleteCustomPluginCommand");
1206
- var DeleteCustomPluginCommand = _DeleteCustomPluginCommand;
1207
1226
 
1208
1227
  // src/commands/DeleteWorkerConfigurationCommand.ts
1209
1228
 
1210
1229
 
1211
1230
 
1212
- var _DeleteWorkerConfigurationCommand = class _DeleteWorkerConfigurationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1231
+ var DeleteWorkerConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1213
1232
  return [
1214
1233
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1215
1234
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
1216
1235
  ];
1217
1236
  }).s("KafkaConnect", "DeleteWorkerConfiguration", {}).n("KafkaConnectClient", "DeleteWorkerConfigurationCommand").f(void 0, void 0).ser(se_DeleteWorkerConfigurationCommand).de(de_DeleteWorkerConfigurationCommand).build() {
1237
+ static {
1238
+ __name(this, "DeleteWorkerConfigurationCommand");
1239
+ }
1218
1240
  };
1219
- __name(_DeleteWorkerConfigurationCommand, "DeleteWorkerConfigurationCommand");
1220
- var DeleteWorkerConfigurationCommand = _DeleteWorkerConfigurationCommand;
1221
1241
 
1222
1242
  // src/commands/DescribeConnectorCommand.ts
1223
1243
 
1224
1244
 
1225
1245
 
1226
- var _DescribeConnectorCommand = class _DescribeConnectorCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1246
+ var DescribeConnectorCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1227
1247
  return [
1228
1248
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1229
1249
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
1230
1250
  ];
1231
1251
  }).s("KafkaConnect", "DescribeConnector", {}).n("KafkaConnectClient", "DescribeConnectorCommand").f(void 0, DescribeConnectorResponseFilterSensitiveLog).ser(se_DescribeConnectorCommand).de(de_DescribeConnectorCommand).build() {
1252
+ static {
1253
+ __name(this, "DescribeConnectorCommand");
1254
+ }
1232
1255
  };
1233
- __name(_DescribeConnectorCommand, "DescribeConnectorCommand");
1234
- var DescribeConnectorCommand = _DescribeConnectorCommand;
1235
1256
 
1236
1257
  // src/commands/DescribeCustomPluginCommand.ts
1237
1258
 
1238
1259
 
1239
1260
 
1240
- var _DescribeCustomPluginCommand = class _DescribeCustomPluginCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1261
+ var DescribeCustomPluginCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1241
1262
  return [
1242
1263
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1243
1264
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
1244
1265
  ];
1245
1266
  }).s("KafkaConnect", "DescribeCustomPlugin", {}).n("KafkaConnectClient", "DescribeCustomPluginCommand").f(void 0, void 0).ser(se_DescribeCustomPluginCommand).de(de_DescribeCustomPluginCommand).build() {
1267
+ static {
1268
+ __name(this, "DescribeCustomPluginCommand");
1269
+ }
1246
1270
  };
1247
- __name(_DescribeCustomPluginCommand, "DescribeCustomPluginCommand");
1248
- var DescribeCustomPluginCommand = _DescribeCustomPluginCommand;
1249
1271
 
1250
1272
  // src/commands/DescribeWorkerConfigurationCommand.ts
1251
1273
 
1252
1274
 
1253
1275
 
1254
- var _DescribeWorkerConfigurationCommand = class _DescribeWorkerConfigurationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1276
+ var DescribeWorkerConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1255
1277
  return [
1256
1278
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1257
1279
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
1258
1280
  ];
1259
1281
  }).s("KafkaConnect", "DescribeWorkerConfiguration", {}).n("KafkaConnectClient", "DescribeWorkerConfigurationCommand").f(void 0, DescribeWorkerConfigurationResponseFilterSensitiveLog).ser(se_DescribeWorkerConfigurationCommand).de(de_DescribeWorkerConfigurationCommand).build() {
1282
+ static {
1283
+ __name(this, "DescribeWorkerConfigurationCommand");
1284
+ }
1260
1285
  };
1261
- __name(_DescribeWorkerConfigurationCommand, "DescribeWorkerConfigurationCommand");
1262
- var DescribeWorkerConfigurationCommand = _DescribeWorkerConfigurationCommand;
1263
1286
 
1264
1287
  // src/commands/ListConnectorsCommand.ts
1265
1288
 
1266
1289
 
1267
1290
 
1268
- var _ListConnectorsCommand = class _ListConnectorsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1291
+ var ListConnectorsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1269
1292
  return [
1270
1293
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1271
1294
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
1272
1295
  ];
1273
1296
  }).s("KafkaConnect", "ListConnectors", {}).n("KafkaConnectClient", "ListConnectorsCommand").f(void 0, void 0).ser(se_ListConnectorsCommand).de(de_ListConnectorsCommand).build() {
1297
+ static {
1298
+ __name(this, "ListConnectorsCommand");
1299
+ }
1274
1300
  };
1275
- __name(_ListConnectorsCommand, "ListConnectorsCommand");
1276
- var ListConnectorsCommand = _ListConnectorsCommand;
1277
1301
 
1278
1302
  // src/commands/ListCustomPluginsCommand.ts
1279
1303
 
1280
1304
 
1281
1305
 
1282
- var _ListCustomPluginsCommand = class _ListCustomPluginsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1306
+ var ListCustomPluginsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1283
1307
  return [
1284
1308
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1285
1309
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
1286
1310
  ];
1287
1311
  }).s("KafkaConnect", "ListCustomPlugins", {}).n("KafkaConnectClient", "ListCustomPluginsCommand").f(void 0, void 0).ser(se_ListCustomPluginsCommand).de(de_ListCustomPluginsCommand).build() {
1312
+ static {
1313
+ __name(this, "ListCustomPluginsCommand");
1314
+ }
1288
1315
  };
1289
- __name(_ListCustomPluginsCommand, "ListCustomPluginsCommand");
1290
- var ListCustomPluginsCommand = _ListCustomPluginsCommand;
1291
1316
 
1292
1317
  // src/commands/ListTagsForResourceCommand.ts
1293
1318
 
1294
1319
 
1295
1320
 
1296
- var _ListTagsForResourceCommand = class _ListTagsForResourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1321
+ var ListTagsForResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1297
1322
  return [
1298
1323
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1299
1324
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
1300
1325
  ];
1301
1326
  }).s("KafkaConnect", "ListTagsForResource", {}).n("KafkaConnectClient", "ListTagsForResourceCommand").f(void 0, void 0).ser(se_ListTagsForResourceCommand).de(de_ListTagsForResourceCommand).build() {
1327
+ static {
1328
+ __name(this, "ListTagsForResourceCommand");
1329
+ }
1302
1330
  };
1303
- __name(_ListTagsForResourceCommand, "ListTagsForResourceCommand");
1304
- var ListTagsForResourceCommand = _ListTagsForResourceCommand;
1305
1331
 
1306
1332
  // src/commands/ListWorkerConfigurationsCommand.ts
1307
1333
 
1308
1334
 
1309
1335
 
1310
- var _ListWorkerConfigurationsCommand = class _ListWorkerConfigurationsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1336
+ var ListWorkerConfigurationsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1311
1337
  return [
1312
1338
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1313
1339
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
1314
1340
  ];
1315
1341
  }).s("KafkaConnect", "ListWorkerConfigurations", {}).n("KafkaConnectClient", "ListWorkerConfigurationsCommand").f(void 0, void 0).ser(se_ListWorkerConfigurationsCommand).de(de_ListWorkerConfigurationsCommand).build() {
1342
+ static {
1343
+ __name(this, "ListWorkerConfigurationsCommand");
1344
+ }
1316
1345
  };
1317
- __name(_ListWorkerConfigurationsCommand, "ListWorkerConfigurationsCommand");
1318
- var ListWorkerConfigurationsCommand = _ListWorkerConfigurationsCommand;
1319
1346
 
1320
1347
  // src/commands/TagResourceCommand.ts
1321
1348
 
1322
1349
 
1323
1350
 
1324
- var _TagResourceCommand = class _TagResourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1351
+ var TagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1325
1352
  return [
1326
1353
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1327
1354
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
1328
1355
  ];
1329
1356
  }).s("KafkaConnect", "TagResource", {}).n("KafkaConnectClient", "TagResourceCommand").f(void 0, void 0).ser(se_TagResourceCommand).de(de_TagResourceCommand).build() {
1357
+ static {
1358
+ __name(this, "TagResourceCommand");
1359
+ }
1330
1360
  };
1331
- __name(_TagResourceCommand, "TagResourceCommand");
1332
- var TagResourceCommand = _TagResourceCommand;
1333
1361
 
1334
1362
  // src/commands/UntagResourceCommand.ts
1335
1363
 
1336
1364
 
1337
1365
 
1338
- var _UntagResourceCommand = class _UntagResourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1366
+ var UntagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1339
1367
  return [
1340
1368
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1341
1369
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
1342
1370
  ];
1343
1371
  }).s("KafkaConnect", "UntagResource", {}).n("KafkaConnectClient", "UntagResourceCommand").f(void 0, void 0).ser(se_UntagResourceCommand).de(de_UntagResourceCommand).build() {
1372
+ static {
1373
+ __name(this, "UntagResourceCommand");
1374
+ }
1344
1375
  };
1345
- __name(_UntagResourceCommand, "UntagResourceCommand");
1346
- var UntagResourceCommand = _UntagResourceCommand;
1347
1376
 
1348
1377
  // src/commands/UpdateConnectorCommand.ts
1349
1378
 
1350
1379
 
1351
1380
 
1352
- var _UpdateConnectorCommand = class _UpdateConnectorCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1381
+ var UpdateConnectorCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1353
1382
  return [
1354
1383
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1355
1384
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
1356
1385
  ];
1357
1386
  }).s("KafkaConnect", "UpdateConnector", {}).n("KafkaConnectClient", "UpdateConnectorCommand").f(void 0, void 0).ser(se_UpdateConnectorCommand).de(de_UpdateConnectorCommand).build() {
1387
+ static {
1388
+ __name(this, "UpdateConnectorCommand");
1389
+ }
1358
1390
  };
1359
- __name(_UpdateConnectorCommand, "UpdateConnectorCommand");
1360
- var UpdateConnectorCommand = _UpdateConnectorCommand;
1361
1391
 
1362
1392
  // src/KafkaConnect.ts
1363
1393
  var commands = {
@@ -1378,10 +1408,11 @@ var commands = {
1378
1408
  UntagResourceCommand,
1379
1409
  UpdateConnectorCommand
1380
1410
  };
1381
- var _KafkaConnect = class _KafkaConnect extends KafkaConnectClient {
1411
+ var KafkaConnect = class extends KafkaConnectClient {
1412
+ static {
1413
+ __name(this, "KafkaConnect");
1414
+ }
1382
1415
  };
1383
- __name(_KafkaConnect, "KafkaConnect");
1384
- var KafkaConnect = _KafkaConnect;
1385
1416
  (0, import_smithy_client.createAggregatedClient)(commands, KafkaConnect);
1386
1417
 
1387
1418
  // src/pagination/ListConnectorsPaginator.ts
@@ -14,6 +14,7 @@ import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig";
14
14
  import { resolveRuntimeExtensions } from "./runtimeExtensions";
15
15
  export { __Client };
16
16
  export class KafkaConnectClient extends __Client {
17
+ config;
17
18
  constructor(...[configuration]) {
18
19
  const _config_0 = __getRuntimeConfig(configuration || {});
19
20
  const _config_1 = resolveClientEndpointParameters(_config_0);
@@ -32,98 +32,98 @@ export const WorkerConfigurationState = {
32
32
  DELETING: "DELETING",
33
33
  };
34
34
  export class BadRequestException extends __BaseException {
35
+ name = "BadRequestException";
36
+ $fault = "client";
35
37
  constructor(opts) {
36
38
  super({
37
39
  name: "BadRequestException",
38
40
  $fault: "client",
39
41
  ...opts,
40
42
  });
41
- this.name = "BadRequestException";
42
- this.$fault = "client";
43
43
  Object.setPrototypeOf(this, BadRequestException.prototype);
44
44
  }
45
45
  }
46
46
  export class ConflictException extends __BaseException {
47
+ name = "ConflictException";
48
+ $fault = "client";
47
49
  constructor(opts) {
48
50
  super({
49
51
  name: "ConflictException",
50
52
  $fault: "client",
51
53
  ...opts,
52
54
  });
53
- this.name = "ConflictException";
54
- this.$fault = "client";
55
55
  Object.setPrototypeOf(this, ConflictException.prototype);
56
56
  }
57
57
  }
58
58
  export class ForbiddenException extends __BaseException {
59
+ name = "ForbiddenException";
60
+ $fault = "client";
59
61
  constructor(opts) {
60
62
  super({
61
63
  name: "ForbiddenException",
62
64
  $fault: "client",
63
65
  ...opts,
64
66
  });
65
- this.name = "ForbiddenException";
66
- this.$fault = "client";
67
67
  Object.setPrototypeOf(this, ForbiddenException.prototype);
68
68
  }
69
69
  }
70
70
  export class InternalServerErrorException extends __BaseException {
71
+ name = "InternalServerErrorException";
72
+ $fault = "server";
71
73
  constructor(opts) {
72
74
  super({
73
75
  name: "InternalServerErrorException",
74
76
  $fault: "server",
75
77
  ...opts,
76
78
  });
77
- this.name = "InternalServerErrorException";
78
- this.$fault = "server";
79
79
  Object.setPrototypeOf(this, InternalServerErrorException.prototype);
80
80
  }
81
81
  }
82
82
  export class NotFoundException extends __BaseException {
83
+ name = "NotFoundException";
84
+ $fault = "client";
83
85
  constructor(opts) {
84
86
  super({
85
87
  name: "NotFoundException",
86
88
  $fault: "client",
87
89
  ...opts,
88
90
  });
89
- this.name = "NotFoundException";
90
- this.$fault = "client";
91
91
  Object.setPrototypeOf(this, NotFoundException.prototype);
92
92
  }
93
93
  }
94
94
  export class ServiceUnavailableException extends __BaseException {
95
+ name = "ServiceUnavailableException";
96
+ $fault = "server";
95
97
  constructor(opts) {
96
98
  super({
97
99
  name: "ServiceUnavailableException",
98
100
  $fault: "server",
99
101
  ...opts,
100
102
  });
101
- this.name = "ServiceUnavailableException";
102
- this.$fault = "server";
103
103
  Object.setPrototypeOf(this, ServiceUnavailableException.prototype);
104
104
  }
105
105
  }
106
106
  export class TooManyRequestsException extends __BaseException {
107
+ name = "TooManyRequestsException";
108
+ $fault = "client";
107
109
  constructor(opts) {
108
110
  super({
109
111
  name: "TooManyRequestsException",
110
112
  $fault: "client",
111
113
  ...opts,
112
114
  });
113
- this.name = "TooManyRequestsException";
114
- this.$fault = "client";
115
115
  Object.setPrototypeOf(this, TooManyRequestsException.prototype);
116
116
  }
117
117
  }
118
118
  export class UnauthorizedException extends __BaseException {
119
+ name = "UnauthorizedException";
120
+ $fault = "client";
119
121
  constructor(opts) {
120
122
  super({
121
123
  name: "UnauthorizedException",
122
124
  $fault: "client",
123
125
  ...opts,
124
126
  });
125
- this.name = "UnauthorizedException";
126
- this.$fault = "client";
127
127
  Object.setPrototypeOf(this, UnauthorizedException.prototype);
128
128
  }
129
129
  }
@@ -7,7 +7,7 @@ export declare const getRuntimeConfig: (config: KafkaConnectClientConfig) => {
7
7
  runtime: string;
8
8
  defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
9
9
  bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
10
- credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
10
+ credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
11
11
  defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
12
12
  maxAttempts: number | import("@smithy/types").Provider<number>;
13
13
  region: string | import("@smithy/types").Provider<any>;
@@ -7,7 +7,7 @@ export declare const getRuntimeConfig: (config: KafkaConnectClientConfig) => {
7
7
  runtime: string;
8
8
  defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
9
9
  bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
10
- credentialDefaultProvider: (init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit | undefined) => import("@smithy/types").MemoizedProvider<import("@smithy/types").AwsCredentialIdentity>;
10
+ credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit | undefined) => import("@smithy/types").MemoizedProvider<import("@smithy/types").AwsCredentialIdentity>);
11
11
  defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-node").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
12
12
  maxAttempts: number | import("@smithy/types").Provider<number>;
13
13
  region: string | import("@smithy/types").Provider<string>;
@@ -22,7 +22,7 @@ export declare const getRuntimeConfig: (config: KafkaConnectClientConfig) => {
22
22
  region: string | import("@smithy/types").Provider<any>;
23
23
  profile?: string | undefined;
24
24
  defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
25
- credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
25
+ credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
26
26
  maxAttempts: number | import("@smithy/types").Provider<number>;
27
27
  retryMode: string | import("@smithy/types").Provider<string>;
28
28
  logger: import("@smithy/types").Logger;
@@ -31,7 +31,7 @@ export declare const getRuntimeConfig: (config: KafkaConnectClientConfig) => {
31
31
  customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
32
32
  userAgentAppId?: string | import("@smithy/types").Provider<string | undefined> | undefined;
33
33
  retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
34
- endpoint?: string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2> | undefined;
34
+ endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
35
35
  endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
36
36
  logger?: import("@smithy/types").Logger | undefined;
37
37
  }) => import("@smithy/types").EndpointV2;
@@ -6,9 +6,11 @@ export declare const getRuntimeConfig: (config: KafkaConnectClientConfig) => {
6
6
  import("@smithy/smithy-client").ResolvedDefaultsMode
7
7
  >;
8
8
  bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
9
- credentialDefaultProvider: (
10
- input: any
11
- ) => import("@smithy/types").AwsCredentialIdentityProvider;
9
+ credentialDefaultProvider:
10
+ | ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
11
+ | ((
12
+ _: unknown
13
+ ) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
12
14
  defaultUserAgentProvider: (
13
15
  config?:
14
16
  | import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
@@ -6,13 +6,15 @@ export declare const getRuntimeConfig: (config: KafkaConnectClientConfig) => {
6
6
  import("@smithy/smithy-client").ResolvedDefaultsMode
7
7
  >;
8
8
  bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
9
- credentialDefaultProvider: (
10
- init?:
11
- | import("@aws-sdk/credential-provider-node").DefaultProviderInit
12
- | undefined
13
- ) => import("@smithy/types").MemoizedProvider<
14
- import("@smithy/types").AwsCredentialIdentity
15
- >;
9
+ credentialDefaultProvider:
10
+ | ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
11
+ | ((
12
+ init?:
13
+ | import("@aws-sdk/credential-provider-node").DefaultProviderInit
14
+ | undefined
15
+ ) => import("@smithy/types").MemoizedProvider<
16
+ import("@smithy/types").AwsCredentialIdentity
17
+ >);
16
18
  defaultUserAgentProvider: (
17
19
  config?:
18
20
  | import("@aws-sdk/util-user-agent-node").PreviouslyResolved
@@ -28,9 +28,11 @@ export declare const getRuntimeConfig: (config: KafkaConnectClientConfig) => {
28
28
  | import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
29
29
  | undefined
30
30
  ) => Promise<import("@smithy/types").UserAgent>;
31
- credentialDefaultProvider: (
32
- input: any
33
- ) => import("@smithy/types").AwsCredentialIdentityProvider;
31
+ credentialDefaultProvider:
32
+ | ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
33
+ | ((
34
+ _: unknown
35
+ ) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
34
36
  maxAttempts: number | import("@smithy/types").Provider<number>;
35
37
  retryMode: string | import("@smithy/types").Provider<string>;
36
38
  logger: import("@smithy/types").Logger;
@@ -50,11 +52,21 @@ export declare const getRuntimeConfig: (config: KafkaConnectClientConfig) => {
50
52
  | import("@smithy/types").RetryStrategyV2
51
53
  | undefined;
52
54
  endpoint?:
53
- | string
54
- | import("@smithy/types").Endpoint
55
- | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
56
- | import("@smithy/types").EndpointV2
57
- | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
55
+ | ((
56
+ | string
57
+ | import("@smithy/types").Endpoint
58
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
59
+ | import("@smithy/types").EndpointV2
60
+ | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
61
+ ) &
62
+ (
63
+ | string
64
+ | import("@smithy/types").Provider<string>
65
+ | import("@smithy/types").Endpoint
66
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
67
+ | import("@smithy/types").EndpointV2
68
+ | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
69
+ ))
58
70
  | undefined;
59
71
  endpointProvider: (
60
72
  endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-kafkaconnect",
3
3
  "description": "AWS SDK for JavaScript Kafkaconnect Client for Node.js, Browser and React Native",
4
- "version": "3.716.0",
4
+ "version": "3.723.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-kafkaconnect",
@@ -20,56 +20,56 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/client-sso-oidc": "3.716.0",
24
- "@aws-sdk/client-sts": "3.716.0",
25
- "@aws-sdk/core": "3.716.0",
26
- "@aws-sdk/credential-provider-node": "3.716.0",
27
- "@aws-sdk/middleware-host-header": "3.714.0",
28
- "@aws-sdk/middleware-logger": "3.714.0",
29
- "@aws-sdk/middleware-recursion-detection": "3.714.0",
30
- "@aws-sdk/middleware-user-agent": "3.716.0",
31
- "@aws-sdk/region-config-resolver": "3.714.0",
32
- "@aws-sdk/types": "3.714.0",
33
- "@aws-sdk/util-endpoints": "3.714.0",
34
- "@aws-sdk/util-user-agent-browser": "3.714.0",
35
- "@aws-sdk/util-user-agent-node": "3.716.0",
36
- "@smithy/config-resolver": "^3.0.13",
37
- "@smithy/core": "^2.5.5",
38
- "@smithy/fetch-http-handler": "^4.1.2",
39
- "@smithy/hash-node": "^3.0.11",
40
- "@smithy/invalid-dependency": "^3.0.11",
41
- "@smithy/middleware-content-length": "^3.0.13",
42
- "@smithy/middleware-endpoint": "^3.2.6",
43
- "@smithy/middleware-retry": "^3.0.31",
44
- "@smithy/middleware-serde": "^3.0.11",
45
- "@smithy/middleware-stack": "^3.0.11",
46
- "@smithy/node-config-provider": "^3.1.12",
47
- "@smithy/node-http-handler": "^3.3.2",
48
- "@smithy/protocol-http": "^4.1.8",
49
- "@smithy/smithy-client": "^3.5.1",
50
- "@smithy/types": "^3.7.2",
51
- "@smithy/url-parser": "^3.0.11",
52
- "@smithy/util-base64": "^3.0.0",
53
- "@smithy/util-body-length-browser": "^3.0.0",
54
- "@smithy/util-body-length-node": "^3.0.0",
55
- "@smithy/util-defaults-mode-browser": "^3.0.31",
56
- "@smithy/util-defaults-mode-node": "^3.0.31",
57
- "@smithy/util-endpoints": "^2.1.7",
58
- "@smithy/util-middleware": "^3.0.11",
59
- "@smithy/util-retry": "^3.0.11",
60
- "@smithy/util-utf8": "^3.0.0",
23
+ "@aws-sdk/client-sso-oidc": "3.723.0",
24
+ "@aws-sdk/client-sts": "3.723.0",
25
+ "@aws-sdk/core": "3.723.0",
26
+ "@aws-sdk/credential-provider-node": "3.723.0",
27
+ "@aws-sdk/middleware-host-header": "3.723.0",
28
+ "@aws-sdk/middleware-logger": "3.723.0",
29
+ "@aws-sdk/middleware-recursion-detection": "3.723.0",
30
+ "@aws-sdk/middleware-user-agent": "3.723.0",
31
+ "@aws-sdk/region-config-resolver": "3.723.0",
32
+ "@aws-sdk/types": "3.723.0",
33
+ "@aws-sdk/util-endpoints": "3.723.0",
34
+ "@aws-sdk/util-user-agent-browser": "3.723.0",
35
+ "@aws-sdk/util-user-agent-node": "3.723.0",
36
+ "@smithy/config-resolver": "^4.0.0",
37
+ "@smithy/core": "^3.0.0",
38
+ "@smithy/fetch-http-handler": "^5.0.0",
39
+ "@smithy/hash-node": "^4.0.0",
40
+ "@smithy/invalid-dependency": "^4.0.0",
41
+ "@smithy/middleware-content-length": "^4.0.0",
42
+ "@smithy/middleware-endpoint": "^4.0.0",
43
+ "@smithy/middleware-retry": "^4.0.0",
44
+ "@smithy/middleware-serde": "^4.0.0",
45
+ "@smithy/middleware-stack": "^4.0.0",
46
+ "@smithy/node-config-provider": "^4.0.0",
47
+ "@smithy/node-http-handler": "^4.0.0",
48
+ "@smithy/protocol-http": "^5.0.0",
49
+ "@smithy/smithy-client": "^4.0.0",
50
+ "@smithy/types": "^4.0.0",
51
+ "@smithy/url-parser": "^4.0.0",
52
+ "@smithy/util-base64": "^4.0.0",
53
+ "@smithy/util-body-length-browser": "^4.0.0",
54
+ "@smithy/util-body-length-node": "^4.0.0",
55
+ "@smithy/util-defaults-mode-browser": "^4.0.0",
56
+ "@smithy/util-defaults-mode-node": "^4.0.0",
57
+ "@smithy/util-endpoints": "^3.0.0",
58
+ "@smithy/util-middleware": "^4.0.0",
59
+ "@smithy/util-retry": "^4.0.0",
60
+ "@smithy/util-utf8": "^4.0.0",
61
61
  "tslib": "^2.6.2"
62
62
  },
63
63
  "devDependencies": {
64
- "@tsconfig/node16": "16.1.3",
65
- "@types/node": "^16.18.96",
64
+ "@tsconfig/node18": "18.2.4",
65
+ "@types/node": "^18.19.69",
66
66
  "concurrently": "7.0.0",
67
67
  "downlevel-dts": "0.10.1",
68
68
  "rimraf": "3.0.2",
69
- "typescript": "~4.9.5"
69
+ "typescript": "~5.2.2"
70
70
  },
71
71
  "engines": {
72
- "node": ">=16.0.0"
72
+ "node": ">=18.0.0"
73
73
  },
74
74
  "typesVersions": {
75
75
  "<4.0": {