@aws-sdk/client-kafka 3.721.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 +353 -206
- package/dist-es/KafkaClient.js +1 -0
- package/dist-es/models/models_0.js +32 -16
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +5 -3
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -7
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +20 -8
- package/package.json +43 -43
package/dist-cjs/index.js
CHANGED
|
@@ -212,7 +212,14 @@ var resolveRuntimeExtensions = /* @__PURE__ */ __name((runtimeConfig, extensions
|
|
|
212
212
|
}, "resolveRuntimeExtensions");
|
|
213
213
|
|
|
214
214
|
// src/KafkaClient.ts
|
|
215
|
-
var
|
|
215
|
+
var KafkaClient = class extends import_smithy_client.Client {
|
|
216
|
+
static {
|
|
217
|
+
__name(this, "KafkaClient");
|
|
218
|
+
}
|
|
219
|
+
/**
|
|
220
|
+
* The resolved configuration of KafkaClient class. This is resolved and normalized from the {@link KafkaClientConfig | constructor configuration interface}.
|
|
221
|
+
*/
|
|
222
|
+
config;
|
|
216
223
|
constructor(...[configuration]) {
|
|
217
224
|
const _config_0 = (0, import_runtimeConfig.getRuntimeConfig)(configuration || {});
|
|
218
225
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -222,7 +229,7 @@ var _KafkaClient = class _KafkaClient extends import_smithy_client.Client {
|
|
|
222
229
|
const _config_5 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_4);
|
|
223
230
|
const _config_6 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_5);
|
|
224
231
|
const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
|
|
225
|
-
const _config_8 = resolveRuntimeExtensions(_config_7,
|
|
232
|
+
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
226
233
|
super(_config_8);
|
|
227
234
|
this.config = _config_8;
|
|
228
235
|
this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
|
|
@@ -250,8 +257,6 @@ var _KafkaClient = class _KafkaClient extends import_smithy_client.Client {
|
|
|
250
257
|
super.destroy();
|
|
251
258
|
}
|
|
252
259
|
};
|
|
253
|
-
__name(_KafkaClient, "KafkaClient");
|
|
254
|
-
var KafkaClient = _KafkaClient;
|
|
255
260
|
|
|
256
261
|
// src/Kafka.ts
|
|
257
262
|
|
|
@@ -268,7 +273,10 @@ var import_core2 = require("@aws-sdk/core");
|
|
|
268
273
|
|
|
269
274
|
// src/models/KafkaServiceException.ts
|
|
270
275
|
|
|
271
|
-
var
|
|
276
|
+
var KafkaServiceException = class _KafkaServiceException extends import_smithy_client.ServiceException {
|
|
277
|
+
static {
|
|
278
|
+
__name(this, "KafkaServiceException");
|
|
279
|
+
}
|
|
272
280
|
/**
|
|
273
281
|
* @internal
|
|
274
282
|
*/
|
|
@@ -277,8 +285,6 @@ var _KafkaServiceException = class _KafkaServiceException extends import_smithy_
|
|
|
277
285
|
Object.setPrototypeOf(this, _KafkaServiceException.prototype);
|
|
278
286
|
}
|
|
279
287
|
};
|
|
280
|
-
__name(_KafkaServiceException, "KafkaServiceException");
|
|
281
|
-
var KafkaServiceException = _KafkaServiceException;
|
|
282
288
|
|
|
283
289
|
// src/models/models_0.ts
|
|
284
290
|
var VpcConnectionState = {
|
|
@@ -366,7 +372,22 @@ var ReplicatorState = {
|
|
|
366
372
|
RUNNING: "RUNNING",
|
|
367
373
|
UPDATING: "UPDATING"
|
|
368
374
|
};
|
|
369
|
-
var
|
|
375
|
+
var BadRequestException = class _BadRequestException extends KafkaServiceException {
|
|
376
|
+
static {
|
|
377
|
+
__name(this, "BadRequestException");
|
|
378
|
+
}
|
|
379
|
+
name = "BadRequestException";
|
|
380
|
+
$fault = "client";
|
|
381
|
+
/**
|
|
382
|
+
* <p>The parameter that caused the error.</p>
|
|
383
|
+
* @public
|
|
384
|
+
*/
|
|
385
|
+
InvalidParameter;
|
|
386
|
+
/**
|
|
387
|
+
* <p>The description of the error.</p>
|
|
388
|
+
* @public
|
|
389
|
+
*/
|
|
390
|
+
Message;
|
|
370
391
|
/**
|
|
371
392
|
* @internal
|
|
372
393
|
*/
|
|
@@ -376,16 +397,27 @@ var _BadRequestException = class _BadRequestException extends KafkaServiceExcept
|
|
|
376
397
|
$fault: "client",
|
|
377
398
|
...opts
|
|
378
399
|
});
|
|
379
|
-
this.name = "BadRequestException";
|
|
380
|
-
this.$fault = "client";
|
|
381
400
|
Object.setPrototypeOf(this, _BadRequestException.prototype);
|
|
382
401
|
this.InvalidParameter = opts.InvalidParameter;
|
|
383
402
|
this.Message = opts.Message;
|
|
384
403
|
}
|
|
385
404
|
};
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
405
|
+
var ForbiddenException = class _ForbiddenException extends KafkaServiceException {
|
|
406
|
+
static {
|
|
407
|
+
__name(this, "ForbiddenException");
|
|
408
|
+
}
|
|
409
|
+
name = "ForbiddenException";
|
|
410
|
+
$fault = "client";
|
|
411
|
+
/**
|
|
412
|
+
* <p>The parameter that caused the error.</p>
|
|
413
|
+
* @public
|
|
414
|
+
*/
|
|
415
|
+
InvalidParameter;
|
|
416
|
+
/**
|
|
417
|
+
* <p>The description of the error.</p>
|
|
418
|
+
* @public
|
|
419
|
+
*/
|
|
420
|
+
Message;
|
|
389
421
|
/**
|
|
390
422
|
* @internal
|
|
391
423
|
*/
|
|
@@ -395,16 +427,27 @@ var _ForbiddenException = class _ForbiddenException extends KafkaServiceExceptio
|
|
|
395
427
|
$fault: "client",
|
|
396
428
|
...opts
|
|
397
429
|
});
|
|
398
|
-
this.name = "ForbiddenException";
|
|
399
|
-
this.$fault = "client";
|
|
400
430
|
Object.setPrototypeOf(this, _ForbiddenException.prototype);
|
|
401
431
|
this.InvalidParameter = opts.InvalidParameter;
|
|
402
432
|
this.Message = opts.Message;
|
|
403
433
|
}
|
|
404
434
|
};
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
435
|
+
var InternalServerErrorException = class _InternalServerErrorException extends KafkaServiceException {
|
|
436
|
+
static {
|
|
437
|
+
__name(this, "InternalServerErrorException");
|
|
438
|
+
}
|
|
439
|
+
name = "InternalServerErrorException";
|
|
440
|
+
$fault = "server";
|
|
441
|
+
/**
|
|
442
|
+
* <p>The parameter that caused the error.</p>
|
|
443
|
+
* @public
|
|
444
|
+
*/
|
|
445
|
+
InvalidParameter;
|
|
446
|
+
/**
|
|
447
|
+
* <p>The description of the error.</p>
|
|
448
|
+
* @public
|
|
449
|
+
*/
|
|
450
|
+
Message;
|
|
408
451
|
/**
|
|
409
452
|
* @internal
|
|
410
453
|
*/
|
|
@@ -414,16 +457,27 @@ var _InternalServerErrorException = class _InternalServerErrorException extends
|
|
|
414
457
|
$fault: "server",
|
|
415
458
|
...opts
|
|
416
459
|
});
|
|
417
|
-
this.name = "InternalServerErrorException";
|
|
418
|
-
this.$fault = "server";
|
|
419
460
|
Object.setPrototypeOf(this, _InternalServerErrorException.prototype);
|
|
420
461
|
this.InvalidParameter = opts.InvalidParameter;
|
|
421
462
|
this.Message = opts.Message;
|
|
422
463
|
}
|
|
423
464
|
};
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
465
|
+
var NotFoundException = class _NotFoundException extends KafkaServiceException {
|
|
466
|
+
static {
|
|
467
|
+
__name(this, "NotFoundException");
|
|
468
|
+
}
|
|
469
|
+
name = "NotFoundException";
|
|
470
|
+
$fault = "client";
|
|
471
|
+
/**
|
|
472
|
+
* <p>The parameter that caused the error.</p>
|
|
473
|
+
* @public
|
|
474
|
+
*/
|
|
475
|
+
InvalidParameter;
|
|
476
|
+
/**
|
|
477
|
+
* <p>The description of the error.</p>
|
|
478
|
+
* @public
|
|
479
|
+
*/
|
|
480
|
+
Message;
|
|
427
481
|
/**
|
|
428
482
|
* @internal
|
|
429
483
|
*/
|
|
@@ -433,16 +487,27 @@ var _NotFoundException = class _NotFoundException extends KafkaServiceException
|
|
|
433
487
|
$fault: "client",
|
|
434
488
|
...opts
|
|
435
489
|
});
|
|
436
|
-
this.name = "NotFoundException";
|
|
437
|
-
this.$fault = "client";
|
|
438
490
|
Object.setPrototypeOf(this, _NotFoundException.prototype);
|
|
439
491
|
this.InvalidParameter = opts.InvalidParameter;
|
|
440
492
|
this.Message = opts.Message;
|
|
441
493
|
}
|
|
442
494
|
};
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
495
|
+
var ServiceUnavailableException = class _ServiceUnavailableException extends KafkaServiceException {
|
|
496
|
+
static {
|
|
497
|
+
__name(this, "ServiceUnavailableException");
|
|
498
|
+
}
|
|
499
|
+
name = "ServiceUnavailableException";
|
|
500
|
+
$fault = "server";
|
|
501
|
+
/**
|
|
502
|
+
* <p>The parameter that caused the error.</p>
|
|
503
|
+
* @public
|
|
504
|
+
*/
|
|
505
|
+
InvalidParameter;
|
|
506
|
+
/**
|
|
507
|
+
* <p>The description of the error.</p>
|
|
508
|
+
* @public
|
|
509
|
+
*/
|
|
510
|
+
Message;
|
|
446
511
|
/**
|
|
447
512
|
* @internal
|
|
448
513
|
*/
|
|
@@ -452,16 +517,27 @@ var _ServiceUnavailableException = class _ServiceUnavailableException extends Ka
|
|
|
452
517
|
$fault: "server",
|
|
453
518
|
...opts
|
|
454
519
|
});
|
|
455
|
-
this.name = "ServiceUnavailableException";
|
|
456
|
-
this.$fault = "server";
|
|
457
520
|
Object.setPrototypeOf(this, _ServiceUnavailableException.prototype);
|
|
458
521
|
this.InvalidParameter = opts.InvalidParameter;
|
|
459
522
|
this.Message = opts.Message;
|
|
460
523
|
}
|
|
461
524
|
};
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
525
|
+
var TooManyRequestsException = class _TooManyRequestsException extends KafkaServiceException {
|
|
526
|
+
static {
|
|
527
|
+
__name(this, "TooManyRequestsException");
|
|
528
|
+
}
|
|
529
|
+
name = "TooManyRequestsException";
|
|
530
|
+
$fault = "client";
|
|
531
|
+
/**
|
|
532
|
+
* <p>The parameter that caused the error.</p>
|
|
533
|
+
* @public
|
|
534
|
+
*/
|
|
535
|
+
InvalidParameter;
|
|
536
|
+
/**
|
|
537
|
+
* <p>The description of the error.</p>
|
|
538
|
+
* @public
|
|
539
|
+
*/
|
|
540
|
+
Message;
|
|
465
541
|
/**
|
|
466
542
|
* @internal
|
|
467
543
|
*/
|
|
@@ -471,16 +547,27 @@ var _TooManyRequestsException = class _TooManyRequestsException extends KafkaSer
|
|
|
471
547
|
$fault: "client",
|
|
472
548
|
...opts
|
|
473
549
|
});
|
|
474
|
-
this.name = "TooManyRequestsException";
|
|
475
|
-
this.$fault = "client";
|
|
476
550
|
Object.setPrototypeOf(this, _TooManyRequestsException.prototype);
|
|
477
551
|
this.InvalidParameter = opts.InvalidParameter;
|
|
478
552
|
this.Message = opts.Message;
|
|
479
553
|
}
|
|
480
554
|
};
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
555
|
+
var UnauthorizedException = class _UnauthorizedException extends KafkaServiceException {
|
|
556
|
+
static {
|
|
557
|
+
__name(this, "UnauthorizedException");
|
|
558
|
+
}
|
|
559
|
+
name = "UnauthorizedException";
|
|
560
|
+
$fault = "client";
|
|
561
|
+
/**
|
|
562
|
+
* <p>The parameter that caused the error.</p>
|
|
563
|
+
* @public
|
|
564
|
+
*/
|
|
565
|
+
InvalidParameter;
|
|
566
|
+
/**
|
|
567
|
+
* <p>The description of the error.</p>
|
|
568
|
+
* @public
|
|
569
|
+
*/
|
|
570
|
+
Message;
|
|
484
571
|
/**
|
|
485
572
|
* @internal
|
|
486
573
|
*/
|
|
@@ -490,16 +577,27 @@ var _UnauthorizedException = class _UnauthorizedException extends KafkaServiceEx
|
|
|
490
577
|
$fault: "client",
|
|
491
578
|
...opts
|
|
492
579
|
});
|
|
493
|
-
this.name = "UnauthorizedException";
|
|
494
|
-
this.$fault = "client";
|
|
495
580
|
Object.setPrototypeOf(this, _UnauthorizedException.prototype);
|
|
496
581
|
this.InvalidParameter = opts.InvalidParameter;
|
|
497
582
|
this.Message = opts.Message;
|
|
498
583
|
}
|
|
499
584
|
};
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
585
|
+
var ConflictException = class _ConflictException extends KafkaServiceException {
|
|
586
|
+
static {
|
|
587
|
+
__name(this, "ConflictException");
|
|
588
|
+
}
|
|
589
|
+
name = "ConflictException";
|
|
590
|
+
$fault = "client";
|
|
591
|
+
/**
|
|
592
|
+
* <p>The parameter that caused the error.</p>
|
|
593
|
+
* @public
|
|
594
|
+
*/
|
|
595
|
+
InvalidParameter;
|
|
596
|
+
/**
|
|
597
|
+
* <p>The description of the error.</p>
|
|
598
|
+
* @public
|
|
599
|
+
*/
|
|
600
|
+
Message;
|
|
503
601
|
/**
|
|
504
602
|
* @internal
|
|
505
603
|
*/
|
|
@@ -509,15 +607,11 @@ var _ConflictException = class _ConflictException extends KafkaServiceException
|
|
|
509
607
|
$fault: "client",
|
|
510
608
|
...opts
|
|
511
609
|
});
|
|
512
|
-
this.name = "ConflictException";
|
|
513
|
-
this.$fault = "client";
|
|
514
610
|
Object.setPrototypeOf(this, _ConflictException.prototype);
|
|
515
611
|
this.InvalidParameter = opts.InvalidParameter;
|
|
516
612
|
this.Message = opts.Message;
|
|
517
613
|
}
|
|
518
614
|
};
|
|
519
|
-
__name(_ConflictException, "ConflictException");
|
|
520
|
-
var ConflictException = _ConflictException;
|
|
521
615
|
|
|
522
616
|
// src/protocols/Aws_restJson1.ts
|
|
523
617
|
var se_BatchAssociateScramSecretCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
@@ -3257,729 +3351,781 @@ var _rNF = "replicatorNameFilter";
|
|
|
3257
3351
|
var _tK = "tagKeys";
|
|
3258
3352
|
|
|
3259
3353
|
// src/commands/BatchAssociateScramSecretCommand.ts
|
|
3260
|
-
var
|
|
3354
|
+
var BatchAssociateScramSecretCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3261
3355
|
return [
|
|
3262
3356
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3263
3357
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3264
3358
|
];
|
|
3265
3359
|
}).s("Kafka", "BatchAssociateScramSecret", {}).n("KafkaClient", "BatchAssociateScramSecretCommand").f(void 0, void 0).ser(se_BatchAssociateScramSecretCommand).de(de_BatchAssociateScramSecretCommand).build() {
|
|
3360
|
+
static {
|
|
3361
|
+
__name(this, "BatchAssociateScramSecretCommand");
|
|
3362
|
+
}
|
|
3266
3363
|
};
|
|
3267
|
-
__name(_BatchAssociateScramSecretCommand, "BatchAssociateScramSecretCommand");
|
|
3268
|
-
var BatchAssociateScramSecretCommand = _BatchAssociateScramSecretCommand;
|
|
3269
3364
|
|
|
3270
3365
|
// src/commands/BatchDisassociateScramSecretCommand.ts
|
|
3271
3366
|
|
|
3272
3367
|
|
|
3273
3368
|
|
|
3274
|
-
var
|
|
3369
|
+
var BatchDisassociateScramSecretCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3275
3370
|
return [
|
|
3276
3371
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3277
3372
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3278
3373
|
];
|
|
3279
3374
|
}).s("Kafka", "BatchDisassociateScramSecret", {}).n("KafkaClient", "BatchDisassociateScramSecretCommand").f(void 0, void 0).ser(se_BatchDisassociateScramSecretCommand).de(de_BatchDisassociateScramSecretCommand).build() {
|
|
3375
|
+
static {
|
|
3376
|
+
__name(this, "BatchDisassociateScramSecretCommand");
|
|
3377
|
+
}
|
|
3280
3378
|
};
|
|
3281
|
-
__name(_BatchDisassociateScramSecretCommand, "BatchDisassociateScramSecretCommand");
|
|
3282
|
-
var BatchDisassociateScramSecretCommand = _BatchDisassociateScramSecretCommand;
|
|
3283
3379
|
|
|
3284
3380
|
// src/commands/CreateClusterCommand.ts
|
|
3285
3381
|
|
|
3286
3382
|
|
|
3287
3383
|
|
|
3288
|
-
var
|
|
3384
|
+
var CreateClusterCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3289
3385
|
return [
|
|
3290
3386
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3291
3387
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3292
3388
|
];
|
|
3293
3389
|
}).s("Kafka", "CreateCluster", {}).n("KafkaClient", "CreateClusterCommand").f(void 0, void 0).ser(se_CreateClusterCommand).de(de_CreateClusterCommand).build() {
|
|
3390
|
+
static {
|
|
3391
|
+
__name(this, "CreateClusterCommand");
|
|
3392
|
+
}
|
|
3294
3393
|
};
|
|
3295
|
-
__name(_CreateClusterCommand, "CreateClusterCommand");
|
|
3296
|
-
var CreateClusterCommand = _CreateClusterCommand;
|
|
3297
3394
|
|
|
3298
3395
|
// src/commands/CreateClusterV2Command.ts
|
|
3299
3396
|
|
|
3300
3397
|
|
|
3301
3398
|
|
|
3302
|
-
var
|
|
3399
|
+
var CreateClusterV2Command = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3303
3400
|
return [
|
|
3304
3401
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3305
3402
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3306
3403
|
];
|
|
3307
3404
|
}).s("Kafka", "CreateClusterV2", {}).n("KafkaClient", "CreateClusterV2Command").f(void 0, void 0).ser(se_CreateClusterV2Command).de(de_CreateClusterV2Command).build() {
|
|
3405
|
+
static {
|
|
3406
|
+
__name(this, "CreateClusterV2Command");
|
|
3407
|
+
}
|
|
3308
3408
|
};
|
|
3309
|
-
__name(_CreateClusterV2Command, "CreateClusterV2Command");
|
|
3310
|
-
var CreateClusterV2Command = _CreateClusterV2Command;
|
|
3311
3409
|
|
|
3312
3410
|
// src/commands/CreateConfigurationCommand.ts
|
|
3313
3411
|
|
|
3314
3412
|
|
|
3315
3413
|
|
|
3316
|
-
var
|
|
3414
|
+
var CreateConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3317
3415
|
return [
|
|
3318
3416
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3319
3417
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3320
3418
|
];
|
|
3321
3419
|
}).s("Kafka", "CreateConfiguration", {}).n("KafkaClient", "CreateConfigurationCommand").f(void 0, void 0).ser(se_CreateConfigurationCommand).de(de_CreateConfigurationCommand).build() {
|
|
3420
|
+
static {
|
|
3421
|
+
__name(this, "CreateConfigurationCommand");
|
|
3422
|
+
}
|
|
3322
3423
|
};
|
|
3323
|
-
__name(_CreateConfigurationCommand, "CreateConfigurationCommand");
|
|
3324
|
-
var CreateConfigurationCommand = _CreateConfigurationCommand;
|
|
3325
3424
|
|
|
3326
3425
|
// src/commands/CreateReplicatorCommand.ts
|
|
3327
3426
|
|
|
3328
3427
|
|
|
3329
3428
|
|
|
3330
|
-
var
|
|
3429
|
+
var CreateReplicatorCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3331
3430
|
return [
|
|
3332
3431
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3333
3432
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3334
3433
|
];
|
|
3335
3434
|
}).s("Kafka", "CreateReplicator", {}).n("KafkaClient", "CreateReplicatorCommand").f(void 0, void 0).ser(se_CreateReplicatorCommand).de(de_CreateReplicatorCommand).build() {
|
|
3435
|
+
static {
|
|
3436
|
+
__name(this, "CreateReplicatorCommand");
|
|
3437
|
+
}
|
|
3336
3438
|
};
|
|
3337
|
-
__name(_CreateReplicatorCommand, "CreateReplicatorCommand");
|
|
3338
|
-
var CreateReplicatorCommand = _CreateReplicatorCommand;
|
|
3339
3439
|
|
|
3340
3440
|
// src/commands/CreateVpcConnectionCommand.ts
|
|
3341
3441
|
|
|
3342
3442
|
|
|
3343
3443
|
|
|
3344
|
-
var
|
|
3444
|
+
var CreateVpcConnectionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3345
3445
|
return [
|
|
3346
3446
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3347
3447
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3348
3448
|
];
|
|
3349
3449
|
}).s("Kafka", "CreateVpcConnection", {}).n("KafkaClient", "CreateVpcConnectionCommand").f(void 0, void 0).ser(se_CreateVpcConnectionCommand).de(de_CreateVpcConnectionCommand).build() {
|
|
3450
|
+
static {
|
|
3451
|
+
__name(this, "CreateVpcConnectionCommand");
|
|
3452
|
+
}
|
|
3350
3453
|
};
|
|
3351
|
-
__name(_CreateVpcConnectionCommand, "CreateVpcConnectionCommand");
|
|
3352
|
-
var CreateVpcConnectionCommand = _CreateVpcConnectionCommand;
|
|
3353
3454
|
|
|
3354
3455
|
// src/commands/DeleteClusterCommand.ts
|
|
3355
3456
|
|
|
3356
3457
|
|
|
3357
3458
|
|
|
3358
|
-
var
|
|
3459
|
+
var DeleteClusterCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3359
3460
|
return [
|
|
3360
3461
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3361
3462
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3362
3463
|
];
|
|
3363
3464
|
}).s("Kafka", "DeleteCluster", {}).n("KafkaClient", "DeleteClusterCommand").f(void 0, void 0).ser(se_DeleteClusterCommand).de(de_DeleteClusterCommand).build() {
|
|
3465
|
+
static {
|
|
3466
|
+
__name(this, "DeleteClusterCommand");
|
|
3467
|
+
}
|
|
3364
3468
|
};
|
|
3365
|
-
__name(_DeleteClusterCommand, "DeleteClusterCommand");
|
|
3366
|
-
var DeleteClusterCommand = _DeleteClusterCommand;
|
|
3367
3469
|
|
|
3368
3470
|
// src/commands/DeleteClusterPolicyCommand.ts
|
|
3369
3471
|
|
|
3370
3472
|
|
|
3371
3473
|
|
|
3372
|
-
var
|
|
3474
|
+
var DeleteClusterPolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3373
3475
|
return [
|
|
3374
3476
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3375
3477
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3376
3478
|
];
|
|
3377
3479
|
}).s("Kafka", "DeleteClusterPolicy", {}).n("KafkaClient", "DeleteClusterPolicyCommand").f(void 0, void 0).ser(se_DeleteClusterPolicyCommand).de(de_DeleteClusterPolicyCommand).build() {
|
|
3480
|
+
static {
|
|
3481
|
+
__name(this, "DeleteClusterPolicyCommand");
|
|
3482
|
+
}
|
|
3378
3483
|
};
|
|
3379
|
-
__name(_DeleteClusterPolicyCommand, "DeleteClusterPolicyCommand");
|
|
3380
|
-
var DeleteClusterPolicyCommand = _DeleteClusterPolicyCommand;
|
|
3381
3484
|
|
|
3382
3485
|
// src/commands/DeleteConfigurationCommand.ts
|
|
3383
3486
|
|
|
3384
3487
|
|
|
3385
3488
|
|
|
3386
|
-
var
|
|
3489
|
+
var DeleteConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3387
3490
|
return [
|
|
3388
3491
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3389
3492
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3390
3493
|
];
|
|
3391
3494
|
}).s("Kafka", "DeleteConfiguration", {}).n("KafkaClient", "DeleteConfigurationCommand").f(void 0, void 0).ser(se_DeleteConfigurationCommand).de(de_DeleteConfigurationCommand).build() {
|
|
3495
|
+
static {
|
|
3496
|
+
__name(this, "DeleteConfigurationCommand");
|
|
3497
|
+
}
|
|
3392
3498
|
};
|
|
3393
|
-
__name(_DeleteConfigurationCommand, "DeleteConfigurationCommand");
|
|
3394
|
-
var DeleteConfigurationCommand = _DeleteConfigurationCommand;
|
|
3395
3499
|
|
|
3396
3500
|
// src/commands/DeleteReplicatorCommand.ts
|
|
3397
3501
|
|
|
3398
3502
|
|
|
3399
3503
|
|
|
3400
|
-
var
|
|
3504
|
+
var DeleteReplicatorCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3401
3505
|
return [
|
|
3402
3506
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3403
3507
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3404
3508
|
];
|
|
3405
3509
|
}).s("Kafka", "DeleteReplicator", {}).n("KafkaClient", "DeleteReplicatorCommand").f(void 0, void 0).ser(se_DeleteReplicatorCommand).de(de_DeleteReplicatorCommand).build() {
|
|
3510
|
+
static {
|
|
3511
|
+
__name(this, "DeleteReplicatorCommand");
|
|
3512
|
+
}
|
|
3406
3513
|
};
|
|
3407
|
-
__name(_DeleteReplicatorCommand, "DeleteReplicatorCommand");
|
|
3408
|
-
var DeleteReplicatorCommand = _DeleteReplicatorCommand;
|
|
3409
3514
|
|
|
3410
3515
|
// src/commands/DeleteVpcConnectionCommand.ts
|
|
3411
3516
|
|
|
3412
3517
|
|
|
3413
3518
|
|
|
3414
|
-
var
|
|
3519
|
+
var DeleteVpcConnectionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3415
3520
|
return [
|
|
3416
3521
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3417
3522
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3418
3523
|
];
|
|
3419
3524
|
}).s("Kafka", "DeleteVpcConnection", {}).n("KafkaClient", "DeleteVpcConnectionCommand").f(void 0, void 0).ser(se_DeleteVpcConnectionCommand).de(de_DeleteVpcConnectionCommand).build() {
|
|
3525
|
+
static {
|
|
3526
|
+
__name(this, "DeleteVpcConnectionCommand");
|
|
3527
|
+
}
|
|
3420
3528
|
};
|
|
3421
|
-
__name(_DeleteVpcConnectionCommand, "DeleteVpcConnectionCommand");
|
|
3422
|
-
var DeleteVpcConnectionCommand = _DeleteVpcConnectionCommand;
|
|
3423
3529
|
|
|
3424
3530
|
// src/commands/DescribeClusterCommand.ts
|
|
3425
3531
|
|
|
3426
3532
|
|
|
3427
3533
|
|
|
3428
|
-
var
|
|
3534
|
+
var DescribeClusterCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3429
3535
|
return [
|
|
3430
3536
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3431
3537
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3432
3538
|
];
|
|
3433
3539
|
}).s("Kafka", "DescribeCluster", {}).n("KafkaClient", "DescribeClusterCommand").f(void 0, void 0).ser(se_DescribeClusterCommand).de(de_DescribeClusterCommand).build() {
|
|
3540
|
+
static {
|
|
3541
|
+
__name(this, "DescribeClusterCommand");
|
|
3542
|
+
}
|
|
3434
3543
|
};
|
|
3435
|
-
__name(_DescribeClusterCommand, "DescribeClusterCommand");
|
|
3436
|
-
var DescribeClusterCommand = _DescribeClusterCommand;
|
|
3437
3544
|
|
|
3438
3545
|
// src/commands/DescribeClusterOperationCommand.ts
|
|
3439
3546
|
|
|
3440
3547
|
|
|
3441
3548
|
|
|
3442
|
-
var
|
|
3549
|
+
var DescribeClusterOperationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3443
3550
|
return [
|
|
3444
3551
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3445
3552
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3446
3553
|
];
|
|
3447
3554
|
}).s("Kafka", "DescribeClusterOperation", {}).n("KafkaClient", "DescribeClusterOperationCommand").f(void 0, void 0).ser(se_DescribeClusterOperationCommand).de(de_DescribeClusterOperationCommand).build() {
|
|
3555
|
+
static {
|
|
3556
|
+
__name(this, "DescribeClusterOperationCommand");
|
|
3557
|
+
}
|
|
3448
3558
|
};
|
|
3449
|
-
__name(_DescribeClusterOperationCommand, "DescribeClusterOperationCommand");
|
|
3450
|
-
var DescribeClusterOperationCommand = _DescribeClusterOperationCommand;
|
|
3451
3559
|
|
|
3452
3560
|
// src/commands/DescribeClusterOperationV2Command.ts
|
|
3453
3561
|
|
|
3454
3562
|
|
|
3455
3563
|
|
|
3456
|
-
var
|
|
3564
|
+
var DescribeClusterOperationV2Command = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3457
3565
|
return [
|
|
3458
3566
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3459
3567
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3460
3568
|
];
|
|
3461
3569
|
}).s("Kafka", "DescribeClusterOperationV2", {}).n("KafkaClient", "DescribeClusterOperationV2Command").f(void 0, void 0).ser(se_DescribeClusterOperationV2Command).de(de_DescribeClusterOperationV2Command).build() {
|
|
3570
|
+
static {
|
|
3571
|
+
__name(this, "DescribeClusterOperationV2Command");
|
|
3572
|
+
}
|
|
3462
3573
|
};
|
|
3463
|
-
__name(_DescribeClusterOperationV2Command, "DescribeClusterOperationV2Command");
|
|
3464
|
-
var DescribeClusterOperationV2Command = _DescribeClusterOperationV2Command;
|
|
3465
3574
|
|
|
3466
3575
|
// src/commands/DescribeClusterV2Command.ts
|
|
3467
3576
|
|
|
3468
3577
|
|
|
3469
3578
|
|
|
3470
|
-
var
|
|
3579
|
+
var DescribeClusterV2Command = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3471
3580
|
return [
|
|
3472
3581
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3473
3582
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3474
3583
|
];
|
|
3475
3584
|
}).s("Kafka", "DescribeClusterV2", {}).n("KafkaClient", "DescribeClusterV2Command").f(void 0, void 0).ser(se_DescribeClusterV2Command).de(de_DescribeClusterV2Command).build() {
|
|
3585
|
+
static {
|
|
3586
|
+
__name(this, "DescribeClusterV2Command");
|
|
3587
|
+
}
|
|
3476
3588
|
};
|
|
3477
|
-
__name(_DescribeClusterV2Command, "DescribeClusterV2Command");
|
|
3478
|
-
var DescribeClusterV2Command = _DescribeClusterV2Command;
|
|
3479
3589
|
|
|
3480
3590
|
// src/commands/DescribeConfigurationCommand.ts
|
|
3481
3591
|
|
|
3482
3592
|
|
|
3483
3593
|
|
|
3484
|
-
var
|
|
3594
|
+
var DescribeConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3485
3595
|
return [
|
|
3486
3596
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3487
3597
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3488
3598
|
];
|
|
3489
3599
|
}).s("Kafka", "DescribeConfiguration", {}).n("KafkaClient", "DescribeConfigurationCommand").f(void 0, void 0).ser(se_DescribeConfigurationCommand).de(de_DescribeConfigurationCommand).build() {
|
|
3600
|
+
static {
|
|
3601
|
+
__name(this, "DescribeConfigurationCommand");
|
|
3602
|
+
}
|
|
3490
3603
|
};
|
|
3491
|
-
__name(_DescribeConfigurationCommand, "DescribeConfigurationCommand");
|
|
3492
|
-
var DescribeConfigurationCommand = _DescribeConfigurationCommand;
|
|
3493
3604
|
|
|
3494
3605
|
// src/commands/DescribeConfigurationRevisionCommand.ts
|
|
3495
3606
|
|
|
3496
3607
|
|
|
3497
3608
|
|
|
3498
|
-
var
|
|
3609
|
+
var DescribeConfigurationRevisionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3499
3610
|
return [
|
|
3500
3611
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3501
3612
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3502
3613
|
];
|
|
3503
3614
|
}).s("Kafka", "DescribeConfigurationRevision", {}).n("KafkaClient", "DescribeConfigurationRevisionCommand").f(void 0, void 0).ser(se_DescribeConfigurationRevisionCommand).de(de_DescribeConfigurationRevisionCommand).build() {
|
|
3615
|
+
static {
|
|
3616
|
+
__name(this, "DescribeConfigurationRevisionCommand");
|
|
3617
|
+
}
|
|
3504
3618
|
};
|
|
3505
|
-
__name(_DescribeConfigurationRevisionCommand, "DescribeConfigurationRevisionCommand");
|
|
3506
|
-
var DescribeConfigurationRevisionCommand = _DescribeConfigurationRevisionCommand;
|
|
3507
3619
|
|
|
3508
3620
|
// src/commands/DescribeReplicatorCommand.ts
|
|
3509
3621
|
|
|
3510
3622
|
|
|
3511
3623
|
|
|
3512
|
-
var
|
|
3624
|
+
var DescribeReplicatorCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3513
3625
|
return [
|
|
3514
3626
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3515
3627
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3516
3628
|
];
|
|
3517
3629
|
}).s("Kafka", "DescribeReplicator", {}).n("KafkaClient", "DescribeReplicatorCommand").f(void 0, void 0).ser(se_DescribeReplicatorCommand).de(de_DescribeReplicatorCommand).build() {
|
|
3630
|
+
static {
|
|
3631
|
+
__name(this, "DescribeReplicatorCommand");
|
|
3632
|
+
}
|
|
3518
3633
|
};
|
|
3519
|
-
__name(_DescribeReplicatorCommand, "DescribeReplicatorCommand");
|
|
3520
|
-
var DescribeReplicatorCommand = _DescribeReplicatorCommand;
|
|
3521
3634
|
|
|
3522
3635
|
// src/commands/DescribeVpcConnectionCommand.ts
|
|
3523
3636
|
|
|
3524
3637
|
|
|
3525
3638
|
|
|
3526
|
-
var
|
|
3639
|
+
var DescribeVpcConnectionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3527
3640
|
return [
|
|
3528
3641
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3529
3642
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3530
3643
|
];
|
|
3531
3644
|
}).s("Kafka", "DescribeVpcConnection", {}).n("KafkaClient", "DescribeVpcConnectionCommand").f(void 0, void 0).ser(se_DescribeVpcConnectionCommand).de(de_DescribeVpcConnectionCommand).build() {
|
|
3645
|
+
static {
|
|
3646
|
+
__name(this, "DescribeVpcConnectionCommand");
|
|
3647
|
+
}
|
|
3532
3648
|
};
|
|
3533
|
-
__name(_DescribeVpcConnectionCommand, "DescribeVpcConnectionCommand");
|
|
3534
|
-
var DescribeVpcConnectionCommand = _DescribeVpcConnectionCommand;
|
|
3535
3649
|
|
|
3536
3650
|
// src/commands/GetBootstrapBrokersCommand.ts
|
|
3537
3651
|
|
|
3538
3652
|
|
|
3539
3653
|
|
|
3540
|
-
var
|
|
3654
|
+
var GetBootstrapBrokersCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3541
3655
|
return [
|
|
3542
3656
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3543
3657
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3544
3658
|
];
|
|
3545
3659
|
}).s("Kafka", "GetBootstrapBrokers", {}).n("KafkaClient", "GetBootstrapBrokersCommand").f(void 0, void 0).ser(se_GetBootstrapBrokersCommand).de(de_GetBootstrapBrokersCommand).build() {
|
|
3660
|
+
static {
|
|
3661
|
+
__name(this, "GetBootstrapBrokersCommand");
|
|
3662
|
+
}
|
|
3546
3663
|
};
|
|
3547
|
-
__name(_GetBootstrapBrokersCommand, "GetBootstrapBrokersCommand");
|
|
3548
|
-
var GetBootstrapBrokersCommand = _GetBootstrapBrokersCommand;
|
|
3549
3664
|
|
|
3550
3665
|
// src/commands/GetClusterPolicyCommand.ts
|
|
3551
3666
|
|
|
3552
3667
|
|
|
3553
3668
|
|
|
3554
|
-
var
|
|
3669
|
+
var GetClusterPolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3555
3670
|
return [
|
|
3556
3671
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3557
3672
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3558
3673
|
];
|
|
3559
3674
|
}).s("Kafka", "GetClusterPolicy", {}).n("KafkaClient", "GetClusterPolicyCommand").f(void 0, void 0).ser(se_GetClusterPolicyCommand).de(de_GetClusterPolicyCommand).build() {
|
|
3675
|
+
static {
|
|
3676
|
+
__name(this, "GetClusterPolicyCommand");
|
|
3677
|
+
}
|
|
3560
3678
|
};
|
|
3561
|
-
__name(_GetClusterPolicyCommand, "GetClusterPolicyCommand");
|
|
3562
|
-
var GetClusterPolicyCommand = _GetClusterPolicyCommand;
|
|
3563
3679
|
|
|
3564
3680
|
// src/commands/GetCompatibleKafkaVersionsCommand.ts
|
|
3565
3681
|
|
|
3566
3682
|
|
|
3567
3683
|
|
|
3568
|
-
var
|
|
3684
|
+
var GetCompatibleKafkaVersionsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3569
3685
|
return [
|
|
3570
3686
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3571
3687
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3572
3688
|
];
|
|
3573
3689
|
}).s("Kafka", "GetCompatibleKafkaVersions", {}).n("KafkaClient", "GetCompatibleKafkaVersionsCommand").f(void 0, void 0).ser(se_GetCompatibleKafkaVersionsCommand).de(de_GetCompatibleKafkaVersionsCommand).build() {
|
|
3690
|
+
static {
|
|
3691
|
+
__name(this, "GetCompatibleKafkaVersionsCommand");
|
|
3692
|
+
}
|
|
3574
3693
|
};
|
|
3575
|
-
__name(_GetCompatibleKafkaVersionsCommand, "GetCompatibleKafkaVersionsCommand");
|
|
3576
|
-
var GetCompatibleKafkaVersionsCommand = _GetCompatibleKafkaVersionsCommand;
|
|
3577
3694
|
|
|
3578
3695
|
// src/commands/ListClientVpcConnectionsCommand.ts
|
|
3579
3696
|
|
|
3580
3697
|
|
|
3581
3698
|
|
|
3582
|
-
var
|
|
3699
|
+
var ListClientVpcConnectionsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3583
3700
|
return [
|
|
3584
3701
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3585
3702
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3586
3703
|
];
|
|
3587
3704
|
}).s("Kafka", "ListClientVpcConnections", {}).n("KafkaClient", "ListClientVpcConnectionsCommand").f(void 0, void 0).ser(se_ListClientVpcConnectionsCommand).de(de_ListClientVpcConnectionsCommand).build() {
|
|
3705
|
+
static {
|
|
3706
|
+
__name(this, "ListClientVpcConnectionsCommand");
|
|
3707
|
+
}
|
|
3588
3708
|
};
|
|
3589
|
-
__name(_ListClientVpcConnectionsCommand, "ListClientVpcConnectionsCommand");
|
|
3590
|
-
var ListClientVpcConnectionsCommand = _ListClientVpcConnectionsCommand;
|
|
3591
3709
|
|
|
3592
3710
|
// src/commands/ListClusterOperationsCommand.ts
|
|
3593
3711
|
|
|
3594
3712
|
|
|
3595
3713
|
|
|
3596
|
-
var
|
|
3714
|
+
var ListClusterOperationsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3597
3715
|
return [
|
|
3598
3716
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3599
3717
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3600
3718
|
];
|
|
3601
3719
|
}).s("Kafka", "ListClusterOperations", {}).n("KafkaClient", "ListClusterOperationsCommand").f(void 0, void 0).ser(se_ListClusterOperationsCommand).de(de_ListClusterOperationsCommand).build() {
|
|
3720
|
+
static {
|
|
3721
|
+
__name(this, "ListClusterOperationsCommand");
|
|
3722
|
+
}
|
|
3602
3723
|
};
|
|
3603
|
-
__name(_ListClusterOperationsCommand, "ListClusterOperationsCommand");
|
|
3604
|
-
var ListClusterOperationsCommand = _ListClusterOperationsCommand;
|
|
3605
3724
|
|
|
3606
3725
|
// src/commands/ListClusterOperationsV2Command.ts
|
|
3607
3726
|
|
|
3608
3727
|
|
|
3609
3728
|
|
|
3610
|
-
var
|
|
3729
|
+
var ListClusterOperationsV2Command = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3611
3730
|
return [
|
|
3612
3731
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3613
3732
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3614
3733
|
];
|
|
3615
3734
|
}).s("Kafka", "ListClusterOperationsV2", {}).n("KafkaClient", "ListClusterOperationsV2Command").f(void 0, void 0).ser(se_ListClusterOperationsV2Command).de(de_ListClusterOperationsV2Command).build() {
|
|
3735
|
+
static {
|
|
3736
|
+
__name(this, "ListClusterOperationsV2Command");
|
|
3737
|
+
}
|
|
3616
3738
|
};
|
|
3617
|
-
__name(_ListClusterOperationsV2Command, "ListClusterOperationsV2Command");
|
|
3618
|
-
var ListClusterOperationsV2Command = _ListClusterOperationsV2Command;
|
|
3619
3739
|
|
|
3620
3740
|
// src/commands/ListClustersCommand.ts
|
|
3621
3741
|
|
|
3622
3742
|
|
|
3623
3743
|
|
|
3624
|
-
var
|
|
3744
|
+
var ListClustersCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3625
3745
|
return [
|
|
3626
3746
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3627
3747
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3628
3748
|
];
|
|
3629
3749
|
}).s("Kafka", "ListClusters", {}).n("KafkaClient", "ListClustersCommand").f(void 0, void 0).ser(se_ListClustersCommand).de(de_ListClustersCommand).build() {
|
|
3750
|
+
static {
|
|
3751
|
+
__name(this, "ListClustersCommand");
|
|
3752
|
+
}
|
|
3630
3753
|
};
|
|
3631
|
-
__name(_ListClustersCommand, "ListClustersCommand");
|
|
3632
|
-
var ListClustersCommand = _ListClustersCommand;
|
|
3633
3754
|
|
|
3634
3755
|
// src/commands/ListClustersV2Command.ts
|
|
3635
3756
|
|
|
3636
3757
|
|
|
3637
3758
|
|
|
3638
|
-
var
|
|
3759
|
+
var ListClustersV2Command = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3639
3760
|
return [
|
|
3640
3761
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3641
3762
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3642
3763
|
];
|
|
3643
3764
|
}).s("Kafka", "ListClustersV2", {}).n("KafkaClient", "ListClustersV2Command").f(void 0, void 0).ser(se_ListClustersV2Command).de(de_ListClustersV2Command).build() {
|
|
3765
|
+
static {
|
|
3766
|
+
__name(this, "ListClustersV2Command");
|
|
3767
|
+
}
|
|
3644
3768
|
};
|
|
3645
|
-
__name(_ListClustersV2Command, "ListClustersV2Command");
|
|
3646
|
-
var ListClustersV2Command = _ListClustersV2Command;
|
|
3647
3769
|
|
|
3648
3770
|
// src/commands/ListConfigurationRevisionsCommand.ts
|
|
3649
3771
|
|
|
3650
3772
|
|
|
3651
3773
|
|
|
3652
|
-
var
|
|
3774
|
+
var ListConfigurationRevisionsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3653
3775
|
return [
|
|
3654
3776
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3655
3777
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3656
3778
|
];
|
|
3657
3779
|
}).s("Kafka", "ListConfigurationRevisions", {}).n("KafkaClient", "ListConfigurationRevisionsCommand").f(void 0, void 0).ser(se_ListConfigurationRevisionsCommand).de(de_ListConfigurationRevisionsCommand).build() {
|
|
3780
|
+
static {
|
|
3781
|
+
__name(this, "ListConfigurationRevisionsCommand");
|
|
3782
|
+
}
|
|
3658
3783
|
};
|
|
3659
|
-
__name(_ListConfigurationRevisionsCommand, "ListConfigurationRevisionsCommand");
|
|
3660
|
-
var ListConfigurationRevisionsCommand = _ListConfigurationRevisionsCommand;
|
|
3661
3784
|
|
|
3662
3785
|
// src/commands/ListConfigurationsCommand.ts
|
|
3663
3786
|
|
|
3664
3787
|
|
|
3665
3788
|
|
|
3666
|
-
var
|
|
3789
|
+
var ListConfigurationsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3667
3790
|
return [
|
|
3668
3791
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3669
3792
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3670
3793
|
];
|
|
3671
3794
|
}).s("Kafka", "ListConfigurations", {}).n("KafkaClient", "ListConfigurationsCommand").f(void 0, void 0).ser(se_ListConfigurationsCommand).de(de_ListConfigurationsCommand).build() {
|
|
3795
|
+
static {
|
|
3796
|
+
__name(this, "ListConfigurationsCommand");
|
|
3797
|
+
}
|
|
3672
3798
|
};
|
|
3673
|
-
__name(_ListConfigurationsCommand, "ListConfigurationsCommand");
|
|
3674
|
-
var ListConfigurationsCommand = _ListConfigurationsCommand;
|
|
3675
3799
|
|
|
3676
3800
|
// src/commands/ListKafkaVersionsCommand.ts
|
|
3677
3801
|
|
|
3678
3802
|
|
|
3679
3803
|
|
|
3680
|
-
var
|
|
3804
|
+
var ListKafkaVersionsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3681
3805
|
return [
|
|
3682
3806
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3683
3807
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3684
3808
|
];
|
|
3685
3809
|
}).s("Kafka", "ListKafkaVersions", {}).n("KafkaClient", "ListKafkaVersionsCommand").f(void 0, void 0).ser(se_ListKafkaVersionsCommand).de(de_ListKafkaVersionsCommand).build() {
|
|
3810
|
+
static {
|
|
3811
|
+
__name(this, "ListKafkaVersionsCommand");
|
|
3812
|
+
}
|
|
3686
3813
|
};
|
|
3687
|
-
__name(_ListKafkaVersionsCommand, "ListKafkaVersionsCommand");
|
|
3688
|
-
var ListKafkaVersionsCommand = _ListKafkaVersionsCommand;
|
|
3689
3814
|
|
|
3690
3815
|
// src/commands/ListNodesCommand.ts
|
|
3691
3816
|
|
|
3692
3817
|
|
|
3693
3818
|
|
|
3694
|
-
var
|
|
3819
|
+
var ListNodesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3695
3820
|
return [
|
|
3696
3821
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3697
3822
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3698
3823
|
];
|
|
3699
3824
|
}).s("Kafka", "ListNodes", {}).n("KafkaClient", "ListNodesCommand").f(void 0, void 0).ser(se_ListNodesCommand).de(de_ListNodesCommand).build() {
|
|
3825
|
+
static {
|
|
3826
|
+
__name(this, "ListNodesCommand");
|
|
3827
|
+
}
|
|
3700
3828
|
};
|
|
3701
|
-
__name(_ListNodesCommand, "ListNodesCommand");
|
|
3702
|
-
var ListNodesCommand = _ListNodesCommand;
|
|
3703
3829
|
|
|
3704
3830
|
// src/commands/ListReplicatorsCommand.ts
|
|
3705
3831
|
|
|
3706
3832
|
|
|
3707
3833
|
|
|
3708
|
-
var
|
|
3834
|
+
var ListReplicatorsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3709
3835
|
return [
|
|
3710
3836
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3711
3837
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3712
3838
|
];
|
|
3713
3839
|
}).s("Kafka", "ListReplicators", {}).n("KafkaClient", "ListReplicatorsCommand").f(void 0, void 0).ser(se_ListReplicatorsCommand).de(de_ListReplicatorsCommand).build() {
|
|
3840
|
+
static {
|
|
3841
|
+
__name(this, "ListReplicatorsCommand");
|
|
3842
|
+
}
|
|
3714
3843
|
};
|
|
3715
|
-
__name(_ListReplicatorsCommand, "ListReplicatorsCommand");
|
|
3716
|
-
var ListReplicatorsCommand = _ListReplicatorsCommand;
|
|
3717
3844
|
|
|
3718
3845
|
// src/commands/ListScramSecretsCommand.ts
|
|
3719
3846
|
|
|
3720
3847
|
|
|
3721
3848
|
|
|
3722
|
-
var
|
|
3849
|
+
var ListScramSecretsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3723
3850
|
return [
|
|
3724
3851
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3725
3852
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3726
3853
|
];
|
|
3727
3854
|
}).s("Kafka", "ListScramSecrets", {}).n("KafkaClient", "ListScramSecretsCommand").f(void 0, void 0).ser(se_ListScramSecretsCommand).de(de_ListScramSecretsCommand).build() {
|
|
3855
|
+
static {
|
|
3856
|
+
__name(this, "ListScramSecretsCommand");
|
|
3857
|
+
}
|
|
3728
3858
|
};
|
|
3729
|
-
__name(_ListScramSecretsCommand, "ListScramSecretsCommand");
|
|
3730
|
-
var ListScramSecretsCommand = _ListScramSecretsCommand;
|
|
3731
3859
|
|
|
3732
3860
|
// src/commands/ListTagsForResourceCommand.ts
|
|
3733
3861
|
|
|
3734
3862
|
|
|
3735
3863
|
|
|
3736
|
-
var
|
|
3864
|
+
var ListTagsForResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3737
3865
|
return [
|
|
3738
3866
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3739
3867
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3740
3868
|
];
|
|
3741
3869
|
}).s("Kafka", "ListTagsForResource", {}).n("KafkaClient", "ListTagsForResourceCommand").f(void 0, void 0).ser(se_ListTagsForResourceCommand).de(de_ListTagsForResourceCommand).build() {
|
|
3870
|
+
static {
|
|
3871
|
+
__name(this, "ListTagsForResourceCommand");
|
|
3872
|
+
}
|
|
3742
3873
|
};
|
|
3743
|
-
__name(_ListTagsForResourceCommand, "ListTagsForResourceCommand");
|
|
3744
|
-
var ListTagsForResourceCommand = _ListTagsForResourceCommand;
|
|
3745
3874
|
|
|
3746
3875
|
// src/commands/ListVpcConnectionsCommand.ts
|
|
3747
3876
|
|
|
3748
3877
|
|
|
3749
3878
|
|
|
3750
|
-
var
|
|
3879
|
+
var ListVpcConnectionsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3751
3880
|
return [
|
|
3752
3881
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3753
3882
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3754
3883
|
];
|
|
3755
3884
|
}).s("Kafka", "ListVpcConnections", {}).n("KafkaClient", "ListVpcConnectionsCommand").f(void 0, void 0).ser(se_ListVpcConnectionsCommand).de(de_ListVpcConnectionsCommand).build() {
|
|
3885
|
+
static {
|
|
3886
|
+
__name(this, "ListVpcConnectionsCommand");
|
|
3887
|
+
}
|
|
3756
3888
|
};
|
|
3757
|
-
__name(_ListVpcConnectionsCommand, "ListVpcConnectionsCommand");
|
|
3758
|
-
var ListVpcConnectionsCommand = _ListVpcConnectionsCommand;
|
|
3759
3889
|
|
|
3760
3890
|
// src/commands/PutClusterPolicyCommand.ts
|
|
3761
3891
|
|
|
3762
3892
|
|
|
3763
3893
|
|
|
3764
|
-
var
|
|
3894
|
+
var PutClusterPolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3765
3895
|
return [
|
|
3766
3896
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3767
3897
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3768
3898
|
];
|
|
3769
3899
|
}).s("Kafka", "PutClusterPolicy", {}).n("KafkaClient", "PutClusterPolicyCommand").f(void 0, void 0).ser(se_PutClusterPolicyCommand).de(de_PutClusterPolicyCommand).build() {
|
|
3900
|
+
static {
|
|
3901
|
+
__name(this, "PutClusterPolicyCommand");
|
|
3902
|
+
}
|
|
3770
3903
|
};
|
|
3771
|
-
__name(_PutClusterPolicyCommand, "PutClusterPolicyCommand");
|
|
3772
|
-
var PutClusterPolicyCommand = _PutClusterPolicyCommand;
|
|
3773
3904
|
|
|
3774
3905
|
// src/commands/RebootBrokerCommand.ts
|
|
3775
3906
|
|
|
3776
3907
|
|
|
3777
3908
|
|
|
3778
|
-
var
|
|
3909
|
+
var RebootBrokerCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3779
3910
|
return [
|
|
3780
3911
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3781
3912
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3782
3913
|
];
|
|
3783
3914
|
}).s("Kafka", "RebootBroker", {}).n("KafkaClient", "RebootBrokerCommand").f(void 0, void 0).ser(se_RebootBrokerCommand).de(de_RebootBrokerCommand).build() {
|
|
3915
|
+
static {
|
|
3916
|
+
__name(this, "RebootBrokerCommand");
|
|
3917
|
+
}
|
|
3784
3918
|
};
|
|
3785
|
-
__name(_RebootBrokerCommand, "RebootBrokerCommand");
|
|
3786
|
-
var RebootBrokerCommand = _RebootBrokerCommand;
|
|
3787
3919
|
|
|
3788
3920
|
// src/commands/RejectClientVpcConnectionCommand.ts
|
|
3789
3921
|
|
|
3790
3922
|
|
|
3791
3923
|
|
|
3792
|
-
var
|
|
3924
|
+
var RejectClientVpcConnectionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3793
3925
|
return [
|
|
3794
3926
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3795
3927
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3796
3928
|
];
|
|
3797
3929
|
}).s("Kafka", "RejectClientVpcConnection", {}).n("KafkaClient", "RejectClientVpcConnectionCommand").f(void 0, void 0).ser(se_RejectClientVpcConnectionCommand).de(de_RejectClientVpcConnectionCommand).build() {
|
|
3930
|
+
static {
|
|
3931
|
+
__name(this, "RejectClientVpcConnectionCommand");
|
|
3932
|
+
}
|
|
3798
3933
|
};
|
|
3799
|
-
__name(_RejectClientVpcConnectionCommand, "RejectClientVpcConnectionCommand");
|
|
3800
|
-
var RejectClientVpcConnectionCommand = _RejectClientVpcConnectionCommand;
|
|
3801
3934
|
|
|
3802
3935
|
// src/commands/TagResourceCommand.ts
|
|
3803
3936
|
|
|
3804
3937
|
|
|
3805
3938
|
|
|
3806
|
-
var
|
|
3939
|
+
var TagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3807
3940
|
return [
|
|
3808
3941
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3809
3942
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3810
3943
|
];
|
|
3811
3944
|
}).s("Kafka", "TagResource", {}).n("KafkaClient", "TagResourceCommand").f(void 0, void 0).ser(se_TagResourceCommand).de(de_TagResourceCommand).build() {
|
|
3945
|
+
static {
|
|
3946
|
+
__name(this, "TagResourceCommand");
|
|
3947
|
+
}
|
|
3812
3948
|
};
|
|
3813
|
-
__name(_TagResourceCommand, "TagResourceCommand");
|
|
3814
|
-
var TagResourceCommand = _TagResourceCommand;
|
|
3815
3949
|
|
|
3816
3950
|
// src/commands/UntagResourceCommand.ts
|
|
3817
3951
|
|
|
3818
3952
|
|
|
3819
3953
|
|
|
3820
|
-
var
|
|
3954
|
+
var UntagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3821
3955
|
return [
|
|
3822
3956
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3823
3957
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3824
3958
|
];
|
|
3825
3959
|
}).s("Kafka", "UntagResource", {}).n("KafkaClient", "UntagResourceCommand").f(void 0, void 0).ser(se_UntagResourceCommand).de(de_UntagResourceCommand).build() {
|
|
3960
|
+
static {
|
|
3961
|
+
__name(this, "UntagResourceCommand");
|
|
3962
|
+
}
|
|
3826
3963
|
};
|
|
3827
|
-
__name(_UntagResourceCommand, "UntagResourceCommand");
|
|
3828
|
-
var UntagResourceCommand = _UntagResourceCommand;
|
|
3829
3964
|
|
|
3830
3965
|
// src/commands/UpdateBrokerCountCommand.ts
|
|
3831
3966
|
|
|
3832
3967
|
|
|
3833
3968
|
|
|
3834
|
-
var
|
|
3969
|
+
var UpdateBrokerCountCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3835
3970
|
return [
|
|
3836
3971
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3837
3972
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3838
3973
|
];
|
|
3839
3974
|
}).s("Kafka", "UpdateBrokerCount", {}).n("KafkaClient", "UpdateBrokerCountCommand").f(void 0, void 0).ser(se_UpdateBrokerCountCommand).de(de_UpdateBrokerCountCommand).build() {
|
|
3975
|
+
static {
|
|
3976
|
+
__name(this, "UpdateBrokerCountCommand");
|
|
3977
|
+
}
|
|
3840
3978
|
};
|
|
3841
|
-
__name(_UpdateBrokerCountCommand, "UpdateBrokerCountCommand");
|
|
3842
|
-
var UpdateBrokerCountCommand = _UpdateBrokerCountCommand;
|
|
3843
3979
|
|
|
3844
3980
|
// src/commands/UpdateBrokerStorageCommand.ts
|
|
3845
3981
|
|
|
3846
3982
|
|
|
3847
3983
|
|
|
3848
|
-
var
|
|
3984
|
+
var UpdateBrokerStorageCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3849
3985
|
return [
|
|
3850
3986
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3851
3987
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3852
3988
|
];
|
|
3853
3989
|
}).s("Kafka", "UpdateBrokerStorage", {}).n("KafkaClient", "UpdateBrokerStorageCommand").f(void 0, void 0).ser(se_UpdateBrokerStorageCommand).de(de_UpdateBrokerStorageCommand).build() {
|
|
3990
|
+
static {
|
|
3991
|
+
__name(this, "UpdateBrokerStorageCommand");
|
|
3992
|
+
}
|
|
3854
3993
|
};
|
|
3855
|
-
__name(_UpdateBrokerStorageCommand, "UpdateBrokerStorageCommand");
|
|
3856
|
-
var UpdateBrokerStorageCommand = _UpdateBrokerStorageCommand;
|
|
3857
3994
|
|
|
3858
3995
|
// src/commands/UpdateBrokerTypeCommand.ts
|
|
3859
3996
|
|
|
3860
3997
|
|
|
3861
3998
|
|
|
3862
|
-
var
|
|
3999
|
+
var UpdateBrokerTypeCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3863
4000
|
return [
|
|
3864
4001
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3865
4002
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3866
4003
|
];
|
|
3867
4004
|
}).s("Kafka", "UpdateBrokerType", {}).n("KafkaClient", "UpdateBrokerTypeCommand").f(void 0, void 0).ser(se_UpdateBrokerTypeCommand).de(de_UpdateBrokerTypeCommand).build() {
|
|
4005
|
+
static {
|
|
4006
|
+
__name(this, "UpdateBrokerTypeCommand");
|
|
4007
|
+
}
|
|
3868
4008
|
};
|
|
3869
|
-
__name(_UpdateBrokerTypeCommand, "UpdateBrokerTypeCommand");
|
|
3870
|
-
var UpdateBrokerTypeCommand = _UpdateBrokerTypeCommand;
|
|
3871
4009
|
|
|
3872
4010
|
// src/commands/UpdateClusterConfigurationCommand.ts
|
|
3873
4011
|
|
|
3874
4012
|
|
|
3875
4013
|
|
|
3876
|
-
var
|
|
4014
|
+
var UpdateClusterConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3877
4015
|
return [
|
|
3878
4016
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3879
4017
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3880
4018
|
];
|
|
3881
4019
|
}).s("Kafka", "UpdateClusterConfiguration", {}).n("KafkaClient", "UpdateClusterConfigurationCommand").f(void 0, void 0).ser(se_UpdateClusterConfigurationCommand).de(de_UpdateClusterConfigurationCommand).build() {
|
|
4020
|
+
static {
|
|
4021
|
+
__name(this, "UpdateClusterConfigurationCommand");
|
|
4022
|
+
}
|
|
3882
4023
|
};
|
|
3883
|
-
__name(_UpdateClusterConfigurationCommand, "UpdateClusterConfigurationCommand");
|
|
3884
|
-
var UpdateClusterConfigurationCommand = _UpdateClusterConfigurationCommand;
|
|
3885
4024
|
|
|
3886
4025
|
// src/commands/UpdateClusterKafkaVersionCommand.ts
|
|
3887
4026
|
|
|
3888
4027
|
|
|
3889
4028
|
|
|
3890
|
-
var
|
|
4029
|
+
var UpdateClusterKafkaVersionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3891
4030
|
return [
|
|
3892
4031
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3893
4032
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3894
4033
|
];
|
|
3895
4034
|
}).s("Kafka", "UpdateClusterKafkaVersion", {}).n("KafkaClient", "UpdateClusterKafkaVersionCommand").f(void 0, void 0).ser(se_UpdateClusterKafkaVersionCommand).de(de_UpdateClusterKafkaVersionCommand).build() {
|
|
4035
|
+
static {
|
|
4036
|
+
__name(this, "UpdateClusterKafkaVersionCommand");
|
|
4037
|
+
}
|
|
3896
4038
|
};
|
|
3897
|
-
__name(_UpdateClusterKafkaVersionCommand, "UpdateClusterKafkaVersionCommand");
|
|
3898
|
-
var UpdateClusterKafkaVersionCommand = _UpdateClusterKafkaVersionCommand;
|
|
3899
4039
|
|
|
3900
4040
|
// src/commands/UpdateConfigurationCommand.ts
|
|
3901
4041
|
|
|
3902
4042
|
|
|
3903
4043
|
|
|
3904
|
-
var
|
|
4044
|
+
var UpdateConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3905
4045
|
return [
|
|
3906
4046
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3907
4047
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3908
4048
|
];
|
|
3909
4049
|
}).s("Kafka", "UpdateConfiguration", {}).n("KafkaClient", "UpdateConfigurationCommand").f(void 0, void 0).ser(se_UpdateConfigurationCommand).de(de_UpdateConfigurationCommand).build() {
|
|
4050
|
+
static {
|
|
4051
|
+
__name(this, "UpdateConfigurationCommand");
|
|
4052
|
+
}
|
|
3910
4053
|
};
|
|
3911
|
-
__name(_UpdateConfigurationCommand, "UpdateConfigurationCommand");
|
|
3912
|
-
var UpdateConfigurationCommand = _UpdateConfigurationCommand;
|
|
3913
4054
|
|
|
3914
4055
|
// src/commands/UpdateConnectivityCommand.ts
|
|
3915
4056
|
|
|
3916
4057
|
|
|
3917
4058
|
|
|
3918
|
-
var
|
|
4059
|
+
var UpdateConnectivityCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3919
4060
|
return [
|
|
3920
4061
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3921
4062
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3922
4063
|
];
|
|
3923
4064
|
}).s("Kafka", "UpdateConnectivity", {}).n("KafkaClient", "UpdateConnectivityCommand").f(void 0, void 0).ser(se_UpdateConnectivityCommand).de(de_UpdateConnectivityCommand).build() {
|
|
4065
|
+
static {
|
|
4066
|
+
__name(this, "UpdateConnectivityCommand");
|
|
4067
|
+
}
|
|
3924
4068
|
};
|
|
3925
|
-
__name(_UpdateConnectivityCommand, "UpdateConnectivityCommand");
|
|
3926
|
-
var UpdateConnectivityCommand = _UpdateConnectivityCommand;
|
|
3927
4069
|
|
|
3928
4070
|
// src/commands/UpdateMonitoringCommand.ts
|
|
3929
4071
|
|
|
3930
4072
|
|
|
3931
4073
|
|
|
3932
|
-
var
|
|
4074
|
+
var UpdateMonitoringCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3933
4075
|
return [
|
|
3934
4076
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3935
4077
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3936
4078
|
];
|
|
3937
4079
|
}).s("Kafka", "UpdateMonitoring", {}).n("KafkaClient", "UpdateMonitoringCommand").f(void 0, void 0).ser(se_UpdateMonitoringCommand).de(de_UpdateMonitoringCommand).build() {
|
|
4080
|
+
static {
|
|
4081
|
+
__name(this, "UpdateMonitoringCommand");
|
|
4082
|
+
}
|
|
3938
4083
|
};
|
|
3939
|
-
__name(_UpdateMonitoringCommand, "UpdateMonitoringCommand");
|
|
3940
|
-
var UpdateMonitoringCommand = _UpdateMonitoringCommand;
|
|
3941
4084
|
|
|
3942
4085
|
// src/commands/UpdateReplicationInfoCommand.ts
|
|
3943
4086
|
|
|
3944
4087
|
|
|
3945
4088
|
|
|
3946
|
-
var
|
|
4089
|
+
var UpdateReplicationInfoCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3947
4090
|
return [
|
|
3948
4091
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3949
4092
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3950
4093
|
];
|
|
3951
4094
|
}).s("Kafka", "UpdateReplicationInfo", {}).n("KafkaClient", "UpdateReplicationInfoCommand").f(void 0, void 0).ser(se_UpdateReplicationInfoCommand).de(de_UpdateReplicationInfoCommand).build() {
|
|
4095
|
+
static {
|
|
4096
|
+
__name(this, "UpdateReplicationInfoCommand");
|
|
4097
|
+
}
|
|
3952
4098
|
};
|
|
3953
|
-
__name(_UpdateReplicationInfoCommand, "UpdateReplicationInfoCommand");
|
|
3954
|
-
var UpdateReplicationInfoCommand = _UpdateReplicationInfoCommand;
|
|
3955
4099
|
|
|
3956
4100
|
// src/commands/UpdateSecurityCommand.ts
|
|
3957
4101
|
|
|
3958
4102
|
|
|
3959
4103
|
|
|
3960
|
-
var
|
|
4104
|
+
var UpdateSecurityCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3961
4105
|
return [
|
|
3962
4106
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3963
4107
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3964
4108
|
];
|
|
3965
4109
|
}).s("Kafka", "UpdateSecurity", {}).n("KafkaClient", "UpdateSecurityCommand").f(void 0, void 0).ser(se_UpdateSecurityCommand).de(de_UpdateSecurityCommand).build() {
|
|
4110
|
+
static {
|
|
4111
|
+
__name(this, "UpdateSecurityCommand");
|
|
4112
|
+
}
|
|
3966
4113
|
};
|
|
3967
|
-
__name(_UpdateSecurityCommand, "UpdateSecurityCommand");
|
|
3968
|
-
var UpdateSecurityCommand = _UpdateSecurityCommand;
|
|
3969
4114
|
|
|
3970
4115
|
// src/commands/UpdateStorageCommand.ts
|
|
3971
4116
|
|
|
3972
4117
|
|
|
3973
4118
|
|
|
3974
|
-
var
|
|
4119
|
+
var UpdateStorageCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3975
4120
|
return [
|
|
3976
4121
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3977
4122
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3978
4123
|
];
|
|
3979
4124
|
}).s("Kafka", "UpdateStorage", {}).n("KafkaClient", "UpdateStorageCommand").f(void 0, void 0).ser(se_UpdateStorageCommand).de(de_UpdateStorageCommand).build() {
|
|
4125
|
+
static {
|
|
4126
|
+
__name(this, "UpdateStorageCommand");
|
|
4127
|
+
}
|
|
3980
4128
|
};
|
|
3981
|
-
__name(_UpdateStorageCommand, "UpdateStorageCommand");
|
|
3982
|
-
var UpdateStorageCommand = _UpdateStorageCommand;
|
|
3983
4129
|
|
|
3984
4130
|
// src/Kafka.ts
|
|
3985
4131
|
var commands = {
|
|
@@ -4036,10 +4182,11 @@ var commands = {
|
|
|
4036
4182
|
UpdateSecurityCommand,
|
|
4037
4183
|
UpdateStorageCommand
|
|
4038
4184
|
};
|
|
4039
|
-
var
|
|
4185
|
+
var Kafka = class extends KafkaClient {
|
|
4186
|
+
static {
|
|
4187
|
+
__name(this, "Kafka");
|
|
4188
|
+
}
|
|
4040
4189
|
};
|
|
4041
|
-
__name(_Kafka, "Kafka");
|
|
4042
|
-
var Kafka = _Kafka;
|
|
4043
4190
|
(0, import_smithy_client.createAggregatedClient)(commands, Kafka);
|
|
4044
4191
|
|
|
4045
4192
|
// src/pagination/ListClientVpcConnectionsPaginator.ts
|