@@ -27,6 +27,11 @@ import {
27
27
CreateConfigurationCommandInput ,
28
28
CreateConfigurationCommandOutput ,
29
29
} from "./commands/CreateConfigurationCommand" ;
30
+ import {
31
+ CreateReplicatorCommand ,
32
+ CreateReplicatorCommandInput ,
33
+ CreateReplicatorCommandOutput ,
34
+ } from "./commands/CreateReplicatorCommand" ;
30
35
import {
31
36
CreateVpcConnectionCommand ,
32
37
CreateVpcConnectionCommandInput ,
@@ -47,6 +52,11 @@ import {
47
52
DeleteConfigurationCommandInput ,
48
53
DeleteConfigurationCommandOutput ,
49
54
} from "./commands/DeleteConfigurationCommand" ;
55
+ import {
56
+ DeleteReplicatorCommand ,
57
+ DeleteReplicatorCommandInput ,
58
+ DeleteReplicatorCommandOutput ,
59
+ } from "./commands/DeleteReplicatorCommand" ;
50
60
import {
51
61
DeleteVpcConnectionCommand ,
52
62
DeleteVpcConnectionCommandInput ,
@@ -82,6 +92,11 @@ import {
82
92
DescribeConfigurationRevisionCommandInput ,
83
93
DescribeConfigurationRevisionCommandOutput ,
84
94
} from "./commands/DescribeConfigurationRevisionCommand" ;
95
+ import {
96
+ DescribeReplicatorCommand ,
97
+ DescribeReplicatorCommandInput ,
98
+ DescribeReplicatorCommandOutput ,
99
+ } from "./commands/DescribeReplicatorCommand" ;
85
100
import {
86
101
DescribeVpcConnectionCommand ,
87
102
DescribeVpcConnectionCommandInput ,
@@ -143,6 +158,11 @@ import {
143
158
ListKafkaVersionsCommandOutput ,
144
159
} from "./commands/ListKafkaVersionsCommand" ;
145
160
import { ListNodesCommand , ListNodesCommandInput , ListNodesCommandOutput } from "./commands/ListNodesCommand" ;
161
+ import {
162
+ ListReplicatorsCommand ,
163
+ ListReplicatorsCommandInput ,
164
+ ListReplicatorsCommandOutput ,
165
+ } from "./commands/ListReplicatorsCommand" ;
146
166
import {
147
167
ListScramSecretsCommand ,
148
168
ListScramSecretsCommandInput ,
@@ -219,6 +239,11 @@ import {
219
239
UpdateMonitoringCommandInput ,
220
240
UpdateMonitoringCommandOutput ,
221
241
} from "./commands/UpdateMonitoringCommand" ;
242
+ import {
243
+ UpdateReplicationInfoCommand ,
244
+ UpdateReplicationInfoCommandInput ,
245
+ UpdateReplicationInfoCommandOutput ,
246
+ } from "./commands/UpdateReplicationInfoCommand" ;
222
247
import {
223
248
UpdateSecurityCommand ,
224
249
UpdateSecurityCommandInput ,
@@ -237,17 +262,20 @@ const commands = {
237
262
CreateClusterCommand,
238
263
CreateClusterV2Command,
239
264
CreateConfigurationCommand,
265
+ CreateReplicatorCommand,
240
266
CreateVpcConnectionCommand,
241
267
DeleteClusterCommand,
242
268
DeleteClusterPolicyCommand,
243
269
DeleteConfigurationCommand,
270
+ DeleteReplicatorCommand,
244
271
DeleteVpcConnectionCommand,
245
272
DescribeClusterCommand,
246
273
DescribeClusterOperationCommand,
247
274
DescribeClusterOperationV2Command,
248
275
DescribeClusterV2Command,
249
276
DescribeConfigurationCommand,
250
277
DescribeConfigurationRevisionCommand,
278
+ DescribeReplicatorCommand,
251
279
DescribeVpcConnectionCommand,
252
280
GetBootstrapBrokersCommand,
253
281
GetClusterPolicyCommand,
@@ -261,6 +289,7 @@ const commands = {
261
289
ListConfigurationsCommand,
262
290
ListKafkaVersionsCommand,
263
291
ListNodesCommand,
292
+ ListReplicatorsCommand,
264
293
ListScramSecretsCommand,
265
294
ListTagsForResourceCommand,
266
295
ListVpcConnectionsCommand,
@@ -277,6 +306,7 @@ const commands = {
277
306
UpdateConfigurationCommand,
278
307
UpdateConnectivityCommand,
279
308
UpdateMonitoringCommand,
309
+ UpdateReplicationInfoCommand,
280
310
UpdateSecurityCommand,
281
311
UpdateStorageCommand,
282
312
} ;
@@ -358,6 +388,23 @@ export interface Kafka {
358
388
cb : ( err : any , data ?: CreateConfigurationCommandOutput ) => void
359
389
) : void ;
360
390
391
+ /**
392
+ * @see {@link CreateReplicatorCommand }
393
+ */
394
+ createReplicator (
395
+ args : CreateReplicatorCommandInput ,
396
+ options ?: __HttpHandlerOptions
397
+ ) : Promise < CreateReplicatorCommandOutput > ;
398
+ createReplicator (
399
+ args : CreateReplicatorCommandInput ,
400
+ cb : ( err : any , data ?: CreateReplicatorCommandOutput ) => void
401
+ ) : void ;
402
+ createReplicator (
403
+ args : CreateReplicatorCommandInput ,
404
+ options : __HttpHandlerOptions ,
405
+ cb : ( err : any , data ?: CreateReplicatorCommandOutput ) => void
406
+ ) : void ;
407
+
361
408
/**
362
409
* @see {@link CreateVpcConnectionCommand }
363
410
*/
@@ -420,6 +467,23 @@ export interface Kafka {
420
467
cb : ( err : any , data ?: DeleteConfigurationCommandOutput ) => void
421
468
) : void ;
422
469
470
+ /**
471
+ * @see {@link DeleteReplicatorCommand }
472
+ */
473
+ deleteReplicator (
474
+ args : DeleteReplicatorCommandInput ,
475
+ options ?: __HttpHandlerOptions
476
+ ) : Promise < DeleteReplicatorCommandOutput > ;
477
+ deleteReplicator (
478
+ args : DeleteReplicatorCommandInput ,
479
+ cb : ( err : any , data ?: DeleteReplicatorCommandOutput ) => void
480
+ ) : void ;
481
+ deleteReplicator (
482
+ args : DeleteReplicatorCommandInput ,
483
+ options : __HttpHandlerOptions ,
484
+ cb : ( err : any , data ?: DeleteReplicatorCommandOutput ) => void
485
+ ) : void ;
486
+
423
487
/**
424
488
* @see {@link DeleteVpcConnectionCommand }
425
489
*/
@@ -536,6 +600,23 @@ export interface Kafka {
536
600
cb : ( err : any , data ?: DescribeConfigurationRevisionCommandOutput ) => void
537
601
) : void ;
538
602
603
+ /**
604
+ * @see {@link DescribeReplicatorCommand }
605
+ */
606
+ describeReplicator (
607
+ args : DescribeReplicatorCommandInput ,
608
+ options ?: __HttpHandlerOptions
609
+ ) : Promise < DescribeReplicatorCommandOutput > ;
610
+ describeReplicator (
611
+ args : DescribeReplicatorCommandInput ,
612
+ cb : ( err : any , data ?: DescribeReplicatorCommandOutput ) => void
613
+ ) : void ;
614
+ describeReplicator (
615
+ args : DescribeReplicatorCommandInput ,
616
+ options : __HttpHandlerOptions ,
617
+ cb : ( err : any , data ?: DescribeReplicatorCommandOutput ) => void
618
+ ) : void ;
619
+
539
620
/**
540
621
* @see {@link DescribeVpcConnectionCommand }
541
622
*/
@@ -742,6 +823,20 @@ export interface Kafka {
742
823
cb : ( err : any , data ?: ListNodesCommandOutput ) => void
743
824
) : void ;
744
825
826
+ /**
827
+ * @see {@link ListReplicatorsCommand }
828
+ */
829
+ listReplicators (
830
+ args : ListReplicatorsCommandInput ,
831
+ options ?: __HttpHandlerOptions
832
+ ) : Promise < ListReplicatorsCommandOutput > ;
833
+ listReplicators ( args : ListReplicatorsCommandInput , cb : ( err : any , data ?: ListReplicatorsCommandOutput ) => void ) : void ;
834
+ listReplicators (
835
+ args : ListReplicatorsCommandInput ,
836
+ options : __HttpHandlerOptions ,
837
+ cb : ( err : any , data ?: ListReplicatorsCommandOutput ) => void
838
+ ) : void ;
839
+
745
840
/**
746
841
* @see {@link ListScramSecretsCommand }
747
842
*/
@@ -996,6 +1091,23 @@ export interface Kafka {
996
1091
cb : ( err : any , data ?: UpdateMonitoringCommandOutput ) => void
997
1092
) : void ;
998
1093
1094
+ /**
1095
+ * @see {@link UpdateReplicationInfoCommand }
1096
+ */
1097
+ updateReplicationInfo (
1098
+ args : UpdateReplicationInfoCommandInput ,
1099
+ options ?: __HttpHandlerOptions
1100
+ ) : Promise < UpdateReplicationInfoCommandOutput > ;
1101
+ updateReplicationInfo (
1102
+ args : UpdateReplicationInfoCommandInput ,
1103
+ cb : ( err : any , data ?: UpdateReplicationInfoCommandOutput ) => void
1104
+ ) : void ;
1105
+ updateReplicationInfo (
1106
+ args : UpdateReplicationInfoCommandInput ,
1107
+ options : __HttpHandlerOptions ,
1108
+ cb : ( err : any , data ?: UpdateReplicationInfoCommandOutput ) => void
1109
+ ) : void ;
1110
+
999
1111
/**
1000
1112
* @see {@link UpdateSecurityCommand }
1001
1113
*/
0 commit comments