@aws-sdk/client-kafka 3.428.0 → 3.430.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (50) hide show
  1. package/README.md +40 -0
  2. package/dist-cjs/Kafka.js +10 -0
  3. package/dist-cjs/commands/CreateReplicatorCommand.js +51 -0
  4. package/dist-cjs/commands/DeleteReplicatorCommand.js +51 -0
  5. package/dist-cjs/commands/DescribeReplicatorCommand.js +51 -0
  6. package/dist-cjs/commands/ListReplicatorsCommand.js +51 -0
  7. package/dist-cjs/commands/UpdateReplicationInfoCommand.js +51 -0
  8. package/dist-cjs/commands/index.js +5 -0
  9. package/dist-cjs/endpoint/ruleset.js +3 -3
  10. package/dist-cjs/models/models_0.js +15 -1
  11. package/dist-cjs/pagination/ListReplicatorsPaginator.js +29 -0
  12. package/dist-cjs/pagination/index.js +1 -0
  13. package/dist-cjs/protocols/Aws_restJson1.js +591 -2
  14. package/dist-es/Kafka.js +10 -0
  15. package/dist-es/commands/CreateReplicatorCommand.js +47 -0
  16. package/dist-es/commands/DeleteReplicatorCommand.js +47 -0
  17. package/dist-es/commands/DescribeReplicatorCommand.js +47 -0
  18. package/dist-es/commands/ListReplicatorsCommand.js +47 -0
  19. package/dist-es/commands/UpdateReplicationInfoCommand.js +47 -0
  20. package/dist-es/commands/index.js +5 -0
  21. package/dist-es/endpoint/ruleset.js +3 -3
  22. package/dist-es/models/models_0.js +14 -0
  23. package/dist-es/pagination/ListReplicatorsPaginator.js +25 -0
  24. package/dist-es/pagination/index.js +1 -0
  25. package/dist-es/protocols/Aws_restJson1.js +578 -0
  26. package/dist-types/Kafka.d.ts +35 -0
  27. package/dist-types/KafkaClient.d.ts +7 -2
  28. package/dist-types/commands/CreateReplicatorCommand.d.ts +147 -0
  29. package/dist-types/commands/DeleteReplicatorCommand.d.ts +96 -0
  30. package/dist-types/commands/DescribeReplicatorCommand.d.ts +153 -0
  31. package/dist-types/commands/ListReplicatorsCommand.d.ts +121 -0
  32. package/dist-types/commands/UpdateReplicationInfoCommand.d.ts +119 -0
  33. package/dist-types/commands/index.d.ts +5 -0
  34. package/dist-types/models/models_0.d.ts +656 -35
  35. package/dist-types/pagination/ListReplicatorsPaginator.d.ts +7 -0
  36. package/dist-types/pagination/index.d.ts +1 -0
  37. package/dist-types/protocols/Aws_restJson1.d.ts +45 -0
  38. package/dist-types/ts3.4/Kafka.d.ts +85 -0
  39. package/dist-types/ts3.4/KafkaClient.d.ts +30 -0
  40. package/dist-types/ts3.4/commands/CreateReplicatorCommand.d.ts +38 -0
  41. package/dist-types/ts3.4/commands/DeleteReplicatorCommand.d.ts +38 -0
  42. package/dist-types/ts3.4/commands/DescribeReplicatorCommand.d.ts +39 -0
  43. package/dist-types/ts3.4/commands/ListReplicatorsCommand.d.ts +38 -0
  44. package/dist-types/ts3.4/commands/UpdateReplicationInfoCommand.d.ts +42 -0
  45. package/dist-types/ts3.4/commands/index.d.ts +5 -0
  46. package/dist-types/ts3.4/models/models_0.d.ts +192 -35
  47. package/dist-types/ts3.4/pagination/ListReplicatorsPaginator.d.ts +11 -0
  48. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  49. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +60 -0
  50. package/package.json +11 -11
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListReplicatorsCommandInput, ListReplicatorsCommandOutput } from "../commands/ListReplicatorsCommand";
3
+ import { KafkaPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare function paginateListReplicators(config: KafkaPaginationConfiguration, input: ListReplicatorsCommandInput, ...additionalArguments: any): Paginator<ListReplicatorsCommandOutput>;
@@ -8,5 +8,6 @@ export * from "./ListConfigurationRevisionsPaginator";
8
8
  export * from "./ListConfigurationsPaginator";
9
9
  export * from "./ListKafkaVersionsPaginator";
10
10
  export * from "./ListNodesPaginator";
11
+ export * from "./ListReplicatorsPaginator";
11
12
  export * from "./ListScramSecretsPaginator";
12
13
  export * from "./ListVpcConnectionsPaginator";
@@ -5,10 +5,12 @@ import { BatchDisassociateScramSecretCommandInput, BatchDisassociateScramSecretC
5
5
  import { CreateClusterCommandInput, CreateClusterCommandOutput } from "../commands/CreateClusterCommand";
6
6
  import { CreateClusterV2CommandInput, CreateClusterV2CommandOutput } from "../commands/CreateClusterV2Command";
7
7
  import { CreateConfigurationCommandInput, CreateConfigurationCommandOutput } from "../commands/CreateConfigurationCommand";
8
+ import { CreateReplicatorCommandInput, CreateReplicatorCommandOutput } from "../commands/CreateReplicatorCommand";
8
9
  import { CreateVpcConnectionCommandInput, CreateVpcConnectionCommandOutput } from "../commands/CreateVpcConnectionCommand";
9
10
  import { DeleteClusterCommandInput, DeleteClusterCommandOutput } from "../commands/DeleteClusterCommand";
10
11
  import { DeleteClusterPolicyCommandInput, DeleteClusterPolicyCommandOutput } from "../commands/DeleteClusterPolicyCommand";
11
12
  import { DeleteConfigurationCommandInput, DeleteConfigurationCommandOutput } from "../commands/DeleteConfigurationCommand";
13
+ import { DeleteReplicatorCommandInput, DeleteReplicatorCommandOutput } from "../commands/DeleteReplicatorCommand";
12
14
  import { DeleteVpcConnectionCommandInput, DeleteVpcConnectionCommandOutput } from "../commands/DeleteVpcConnectionCommand";
13
15
  import { DescribeClusterCommandInput, DescribeClusterCommandOutput } from "../commands/DescribeClusterCommand";
14
16
  import { DescribeClusterOperationCommandInput, DescribeClusterOperationCommandOutput } from "../commands/DescribeClusterOperationCommand";
@@ -16,6 +18,7 @@ import { DescribeClusterOperationV2CommandInput, DescribeClusterOperationV2Comma
16
18
  import { DescribeClusterV2CommandInput, DescribeClusterV2CommandOutput } from "../commands/DescribeClusterV2Command";
17
19
  import { DescribeConfigurationCommandInput, DescribeConfigurationCommandOutput } from "../commands/DescribeConfigurationCommand";
18
20
  import { DescribeConfigurationRevisionCommandInput, DescribeConfigurationRevisionCommandOutput } from "../commands/DescribeConfigurationRevisionCommand";
21
+ import { DescribeReplicatorCommandInput, DescribeReplicatorCommandOutput } from "../commands/DescribeReplicatorCommand";
19
22
  import { DescribeVpcConnectionCommandInput, DescribeVpcConnectionCommandOutput } from "../commands/DescribeVpcConnectionCommand";
20
23
  import { GetBootstrapBrokersCommandInput, GetBootstrapBrokersCommandOutput } from "../commands/GetBootstrapBrokersCommand";
21
24
  import { GetClusterPolicyCommandInput, GetClusterPolicyCommandOutput } from "../commands/GetClusterPolicyCommand";
@@ -29,6 +32,7 @@ import { ListConfigurationRevisionsCommandInput, ListConfigurationRevisionsComma
29
32
  import { ListConfigurationsCommandInput, ListConfigurationsCommandOutput } from "../commands/ListConfigurationsCommand";
30
33
  import { ListKafkaVersionsCommandInput, ListKafkaVersionsCommandOutput } from "../commands/ListKafkaVersionsCommand";
31
34
  import { ListNodesCommandInput, ListNodesCommandOutput } from "../commands/ListNodesCommand";
35
+ import { ListReplicatorsCommandInput, ListReplicatorsCommandOutput } from "../commands/ListReplicatorsCommand";
32
36
  import { ListScramSecretsCommandInput, ListScramSecretsCommandOutput } from "../commands/ListScramSecretsCommand";
33
37
  import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
34
38
  import { ListVpcConnectionsCommandInput, ListVpcConnectionsCommandOutput } from "../commands/ListVpcConnectionsCommand";
@@ -45,6 +49,7 @@ import { UpdateClusterKafkaVersionCommandInput, UpdateClusterKafkaVersionCommand
45
49
  import { UpdateConfigurationCommandInput, UpdateConfigurationCommandOutput } from "../commands/UpdateConfigurationCommand";
46
50
  import { UpdateConnectivityCommandInput, UpdateConnectivityCommandOutput } from "../commands/UpdateConnectivityCommand";
47
51
  import { UpdateMonitoringCommandInput, UpdateMonitoringCommandOutput } from "../commands/UpdateMonitoringCommand";
52
+ import { UpdateReplicationInfoCommandInput, UpdateReplicationInfoCommandOutput } from "../commands/UpdateReplicationInfoCommand";
48
53
  import { UpdateSecurityCommandInput, UpdateSecurityCommandOutput } from "../commands/UpdateSecurityCommand";
49
54
  import { UpdateStorageCommandInput, UpdateStorageCommandOutput } from "../commands/UpdateStorageCommand";
50
55
  /**
@@ -67,6 +72,10 @@ export declare const se_CreateClusterV2Command: (input: CreateClusterV2CommandIn
67
72
  * serializeAws_restJson1CreateConfigurationCommand
68
73
  */
69
74
  export declare const se_CreateConfigurationCommand: (input: CreateConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
75
+ /**
76
+ * serializeAws_restJson1CreateReplicatorCommand
77
+ */
78
+ export declare const se_CreateReplicatorCommand: (input: CreateReplicatorCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
70
79
  /**
71
80
  * serializeAws_restJson1CreateVpcConnectionCommand
72
81
  */
@@ -83,6 +92,10 @@ export declare const se_DeleteClusterPolicyCommand: (input: DeleteClusterPolicyC
83
92
  * serializeAws_restJson1DeleteConfigurationCommand
84
93
  */
85
94
  export declare const se_DeleteConfigurationCommand: (input: DeleteConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
95
+ /**
96
+ * serializeAws_restJson1DeleteReplicatorCommand
97
+ */
98
+ export declare const se_DeleteReplicatorCommand: (input: DeleteReplicatorCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
86
99
  /**
87
100
  * serializeAws_restJson1DeleteVpcConnectionCommand
88
101
  */
@@ -111,6 +124,10 @@ export declare const se_DescribeConfigurationCommand: (input: DescribeConfigurat
111
124
  * serializeAws_restJson1DescribeConfigurationRevisionCommand
112
125
  */
113
126
  export declare const se_DescribeConfigurationRevisionCommand: (input: DescribeConfigurationRevisionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
127
+ /**
128
+ * serializeAws_restJson1DescribeReplicatorCommand
129
+ */
130
+ export declare const se_DescribeReplicatorCommand: (input: DescribeReplicatorCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
114
131
  /**
115
132
  * serializeAws_restJson1DescribeVpcConnectionCommand
116
133
  */
@@ -163,6 +180,10 @@ export declare const se_ListKafkaVersionsCommand: (input: ListKafkaVersionsComma
163
180
  * serializeAws_restJson1ListNodesCommand
164
181
  */
165
182
  export declare const se_ListNodesCommand: (input: ListNodesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
183
+ /**
184
+ * serializeAws_restJson1ListReplicatorsCommand
185
+ */
186
+ export declare const se_ListReplicatorsCommand: (input: ListReplicatorsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
166
187
  /**
167
188
  * serializeAws_restJson1ListScramSecretsCommand
168
189
  */
@@ -227,6 +248,10 @@ export declare const se_UpdateConnectivityCommand: (input: UpdateConnectivityCom
227
248
  * serializeAws_restJson1UpdateMonitoringCommand
228
249
  */
229
250
  export declare const se_UpdateMonitoringCommand: (input: UpdateMonitoringCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
251
+ /**
252
+ * serializeAws_restJson1UpdateReplicationInfoCommand
253
+ */
254
+ export declare const se_UpdateReplicationInfoCommand: (input: UpdateReplicationInfoCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
230
255
  /**
231
256
  * serializeAws_restJson1UpdateSecurityCommand
232
257
  */
@@ -255,6 +280,10 @@ export declare const de_CreateClusterV2Command: (output: __HttpResponse, context
255
280
  * deserializeAws_restJson1CreateConfigurationCommand
256
281
  */
257
282
  export declare const de_CreateConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateConfigurationCommandOutput>;
283
+ /**
284
+ * deserializeAws_restJson1CreateReplicatorCommand
285
+ */
286
+ export declare const de_CreateReplicatorCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateReplicatorCommandOutput>;
258
287
  /**
259
288
  * deserializeAws_restJson1CreateVpcConnectionCommand
260
289
  */
@@ -271,6 +300,10 @@ export declare const de_DeleteClusterPolicyCommand: (output: __HttpResponse, con
271
300
  * deserializeAws_restJson1DeleteConfigurationCommand
272
301
  */
273
302
  export declare const de_DeleteConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteConfigurationCommandOutput>;
303
+ /**
304
+ * deserializeAws_restJson1DeleteReplicatorCommand
305
+ */
306
+ export declare const de_DeleteReplicatorCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteReplicatorCommandOutput>;
274
307
  /**
275
308
  * deserializeAws_restJson1DeleteVpcConnectionCommand
276
309
  */
@@ -299,6 +332,10 @@ export declare const de_DescribeConfigurationCommand: (output: __HttpResponse, c
299
332
  * deserializeAws_restJson1DescribeConfigurationRevisionCommand
300
333
  */
301
334
  export declare const de_DescribeConfigurationRevisionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeConfigurationRevisionCommandOutput>;
335
+ /**
336
+ * deserializeAws_restJson1DescribeReplicatorCommand
337
+ */
338
+ export declare const de_DescribeReplicatorCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeReplicatorCommandOutput>;
302
339
  /**
303
340
  * deserializeAws_restJson1DescribeVpcConnectionCommand
304
341
  */
@@ -351,6 +388,10 @@ export declare const de_ListKafkaVersionsCommand: (output: __HttpResponse, conte
351
388
  * deserializeAws_restJson1ListNodesCommand
352
389
  */
353
390
  export declare const de_ListNodesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListNodesCommandOutput>;
391
+ /**
392
+ * deserializeAws_restJson1ListReplicatorsCommand
393
+ */
394
+ export declare const de_ListReplicatorsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListReplicatorsCommandOutput>;
354
395
  /**
355
396
  * deserializeAws_restJson1ListScramSecretsCommand
356
397
  */
@@ -415,6 +456,10 @@ export declare const de_UpdateConnectivityCommand: (output: __HttpResponse, cont
415
456
  * deserializeAws_restJson1UpdateMonitoringCommand
416
457
  */
417
458
  export declare const de_UpdateMonitoringCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateMonitoringCommandOutput>;
459
+ /**
460
+ * deserializeAws_restJson1UpdateReplicationInfoCommand
461
+ */
462
+ export declare const de_UpdateReplicationInfoCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateReplicationInfoCommandOutput>;
418
463
  /**
419
464
  * deserializeAws_restJson1UpdateSecurityCommand
420
465
  */
@@ -19,6 +19,10 @@ import {
19
19
  CreateConfigurationCommandInput,
20
20
  CreateConfigurationCommandOutput,
21
21
  } from "./commands/CreateConfigurationCommand";
22
+ import {
23
+ CreateReplicatorCommandInput,
24
+ CreateReplicatorCommandOutput,
25
+ } from "./commands/CreateReplicatorCommand";
22
26
  import {
23
27
  CreateVpcConnectionCommandInput,
24
28
  CreateVpcConnectionCommandOutput,
@@ -35,6 +39,10 @@ import {
35
39
  DeleteConfigurationCommandInput,
36
40
  DeleteConfigurationCommandOutput,
37
41
  } from "./commands/DeleteConfigurationCommand";
42
+ import {
43
+ DeleteReplicatorCommandInput,
44
+ DeleteReplicatorCommandOutput,
45
+ } from "./commands/DeleteReplicatorCommand";
38
46
  import {
39
47
  DeleteVpcConnectionCommandInput,
40
48
  DeleteVpcConnectionCommandOutput,
@@ -63,6 +71,10 @@ import {
63
71
  DescribeConfigurationRevisionCommandInput,
64
72
  DescribeConfigurationRevisionCommandOutput,
65
73
  } from "./commands/DescribeConfigurationRevisionCommand";
74
+ import {
75
+ DescribeReplicatorCommandInput,
76
+ DescribeReplicatorCommandOutput,
77
+ } from "./commands/DescribeReplicatorCommand";
66
78
  import {
67
79
  DescribeVpcConnectionCommandInput,
68
80
  DescribeVpcConnectionCommandOutput,
@@ -115,6 +127,10 @@ import {
115
127
  ListNodesCommandInput,
116
128
  ListNodesCommandOutput,
117
129
  } from "./commands/ListNodesCommand";
130
+ import {
131
+ ListReplicatorsCommandInput,
132
+ ListReplicatorsCommandOutput,
133
+ } from "./commands/ListReplicatorsCommand";
118
134
  import {
119
135
  ListScramSecretsCommandInput,
120
136
  ListScramSecretsCommandOutput,
@@ -179,6 +195,10 @@ import {
179
195
  UpdateMonitoringCommandInput,
180
196
  UpdateMonitoringCommandOutput,
181
197
  } from "./commands/UpdateMonitoringCommand";
198
+ import {
199
+ UpdateReplicationInfoCommandInput,
200
+ UpdateReplicationInfoCommandOutput,
201
+ } from "./commands/UpdateReplicationInfoCommand";
182
202
  import {
183
203
  UpdateSecurityCommandInput,
184
204
  UpdateSecurityCommandOutput,
@@ -254,6 +274,19 @@ export interface Kafka {
254
274
  options: __HttpHandlerOptions,
255
275
  cb: (err: any, data?: CreateConfigurationCommandOutput) => void
256
276
  ): void;
277
+ createReplicator(
278
+ args: CreateReplicatorCommandInput,
279
+ options?: __HttpHandlerOptions
280
+ ): Promise<CreateReplicatorCommandOutput>;
281
+ createReplicator(
282
+ args: CreateReplicatorCommandInput,
283
+ cb: (err: any, data?: CreateReplicatorCommandOutput) => void
284
+ ): void;
285
+ createReplicator(
286
+ args: CreateReplicatorCommandInput,
287
+ options: __HttpHandlerOptions,
288
+ cb: (err: any, data?: CreateReplicatorCommandOutput) => void
289
+ ): void;
257
290
  createVpcConnection(
258
291
  args: CreateVpcConnectionCommandInput,
259
292
  options?: __HttpHandlerOptions
@@ -306,6 +339,19 @@ export interface Kafka {
306
339
  options: __HttpHandlerOptions,
307
340
  cb: (err: any, data?: DeleteConfigurationCommandOutput) => void
308
341
  ): void;
342
+ deleteReplicator(
343
+ args: DeleteReplicatorCommandInput,
344
+ options?: __HttpHandlerOptions
345
+ ): Promise<DeleteReplicatorCommandOutput>;
346
+ deleteReplicator(
347
+ args: DeleteReplicatorCommandInput,
348
+ cb: (err: any, data?: DeleteReplicatorCommandOutput) => void
349
+ ): void;
350
+ deleteReplicator(
351
+ args: DeleteReplicatorCommandInput,
352
+ options: __HttpHandlerOptions,
353
+ cb: (err: any, data?: DeleteReplicatorCommandOutput) => void
354
+ ): void;
309
355
  deleteVpcConnection(
310
356
  args: DeleteVpcConnectionCommandInput,
311
357
  options?: __HttpHandlerOptions
@@ -397,6 +443,19 @@ export interface Kafka {
397
443
  options: __HttpHandlerOptions,
398
444
  cb: (err: any, data?: DescribeConfigurationRevisionCommandOutput) => void
399
445
  ): void;
446
+ describeReplicator(
447
+ args: DescribeReplicatorCommandInput,
448
+ options?: __HttpHandlerOptions
449
+ ): Promise<DescribeReplicatorCommandOutput>;
450
+ describeReplicator(
451
+ args: DescribeReplicatorCommandInput,
452
+ cb: (err: any, data?: DescribeReplicatorCommandOutput) => void
453
+ ): void;
454
+ describeReplicator(
455
+ args: DescribeReplicatorCommandInput,
456
+ options: __HttpHandlerOptions,
457
+ cb: (err: any, data?: DescribeReplicatorCommandOutput) => void
458
+ ): void;
400
459
  describeVpcConnection(
401
460
  args: DescribeVpcConnectionCommandInput,
402
461
  options?: __HttpHandlerOptions
@@ -566,6 +625,19 @@ export interface Kafka {
566
625
  options: __HttpHandlerOptions,
567
626
  cb: (err: any, data?: ListNodesCommandOutput) => void
568
627
  ): void;
628
+ listReplicators(
629
+ args: ListReplicatorsCommandInput,
630
+ options?: __HttpHandlerOptions
631
+ ): Promise<ListReplicatorsCommandOutput>;
632
+ listReplicators(
633
+ args: ListReplicatorsCommandInput,
634
+ cb: (err: any, data?: ListReplicatorsCommandOutput) => void
635
+ ): void;
636
+ listReplicators(
637
+ args: ListReplicatorsCommandInput,
638
+ options: __HttpHandlerOptions,
639
+ cb: (err: any, data?: ListReplicatorsCommandOutput) => void
640
+ ): void;
569
641
  listScramSecrets(
570
642
  args: ListScramSecretsCommandInput,
571
643
  options?: __HttpHandlerOptions
@@ -774,6 +846,19 @@ export interface Kafka {
774
846
  options: __HttpHandlerOptions,
775
847
  cb: (err: any, data?: UpdateMonitoringCommandOutput) => void
776
848
  ): void;
849
+ updateReplicationInfo(
850
+ args: UpdateReplicationInfoCommandInput,
851
+ options?: __HttpHandlerOptions
852
+ ): Promise<UpdateReplicationInfoCommandOutput>;
853
+ updateReplicationInfo(
854
+ args: UpdateReplicationInfoCommandInput,
855
+ cb: (err: any, data?: UpdateReplicationInfoCommandOutput) => void
856
+ ): void;
857
+ updateReplicationInfo(
858
+ args: UpdateReplicationInfoCommandInput,
859
+ options: __HttpHandlerOptions,
860
+ cb: (err: any, data?: UpdateReplicationInfoCommandOutput) => void
861
+ ): void;
777
862
  updateSecurity(
778
863
  args: UpdateSecurityCommandInput,
779
864
  options?: __HttpHandlerOptions
@@ -65,6 +65,10 @@ import {
65
65
  CreateConfigurationCommandInput,
66
66
  CreateConfigurationCommandOutput,
67
67
  } from "./commands/CreateConfigurationCommand";
68
+ import {
69
+ CreateReplicatorCommandInput,
70
+ CreateReplicatorCommandOutput,
71
+ } from "./commands/CreateReplicatorCommand";
68
72
  import {
69
73
  CreateVpcConnectionCommandInput,
70
74
  CreateVpcConnectionCommandOutput,
@@ -81,6 +85,10 @@ import {
81
85
  DeleteConfigurationCommandInput,
82
86
  DeleteConfigurationCommandOutput,
83
87
  } from "./commands/DeleteConfigurationCommand";
88
+ import {
89
+ DeleteReplicatorCommandInput,
90
+ DeleteReplicatorCommandOutput,
91
+ } from "./commands/DeleteReplicatorCommand";
84
92
  import {
85
93
  DeleteVpcConnectionCommandInput,
86
94
  DeleteVpcConnectionCommandOutput,
@@ -109,6 +117,10 @@ import {
109
117
  DescribeConfigurationRevisionCommandInput,
110
118
  DescribeConfigurationRevisionCommandOutput,
111
119
  } from "./commands/DescribeConfigurationRevisionCommand";
120
+ import {
121
+ DescribeReplicatorCommandInput,
122
+ DescribeReplicatorCommandOutput,
123
+ } from "./commands/DescribeReplicatorCommand";
112
124
  import {
113
125
  DescribeVpcConnectionCommandInput,
114
126
  DescribeVpcConnectionCommandOutput,
@@ -161,6 +173,10 @@ import {
161
173
  ListNodesCommandInput,
162
174
  ListNodesCommandOutput,
163
175
  } from "./commands/ListNodesCommand";
176
+ import {
177
+ ListReplicatorsCommandInput,
178
+ ListReplicatorsCommandOutput,
179
+ } from "./commands/ListReplicatorsCommand";
164
180
  import {
165
181
  ListScramSecretsCommandInput,
166
182
  ListScramSecretsCommandOutput,
@@ -225,6 +241,10 @@ import {
225
241
  UpdateMonitoringCommandInput,
226
242
  UpdateMonitoringCommandOutput,
227
243
  } from "./commands/UpdateMonitoringCommand";
244
+ import {
245
+ UpdateReplicationInfoCommandInput,
246
+ UpdateReplicationInfoCommandOutput,
247
+ } from "./commands/UpdateReplicationInfoCommand";
228
248
  import {
229
249
  UpdateSecurityCommandInput,
230
250
  UpdateSecurityCommandOutput,
@@ -246,10 +266,12 @@ export type ServiceInputTypes =
246
266
  | CreateClusterCommandInput
247
267
  | CreateClusterV2CommandInput
248
268
  | CreateConfigurationCommandInput
269
+ | CreateReplicatorCommandInput
249
270
  | CreateVpcConnectionCommandInput
250
271
  | DeleteClusterCommandInput
251
272
  | DeleteClusterPolicyCommandInput
252
273
  | DeleteConfigurationCommandInput
274
+ | DeleteReplicatorCommandInput
253
275
  | DeleteVpcConnectionCommandInput
254
276
  | DescribeClusterCommandInput
255
277
  | DescribeClusterOperationCommandInput
@@ -257,6 +279,7 @@ export type ServiceInputTypes =
257
279
  | DescribeClusterV2CommandInput
258
280
  | DescribeConfigurationCommandInput
259
281
  | DescribeConfigurationRevisionCommandInput
282
+ | DescribeReplicatorCommandInput
260
283
  | DescribeVpcConnectionCommandInput
261
284
  | GetBootstrapBrokersCommandInput
262
285
  | GetClusterPolicyCommandInput
@@ -270,6 +293,7 @@ export type ServiceInputTypes =
270
293
  | ListConfigurationsCommandInput
271
294
  | ListKafkaVersionsCommandInput
272
295
  | ListNodesCommandInput
296
+ | ListReplicatorsCommandInput
273
297
  | ListScramSecretsCommandInput
274
298
  | ListTagsForResourceCommandInput
275
299
  | ListVpcConnectionsCommandInput
@@ -286,6 +310,7 @@ export type ServiceInputTypes =
286
310
  | UpdateConfigurationCommandInput
287
311
  | UpdateConnectivityCommandInput
288
312
  | UpdateMonitoringCommandInput
313
+ | UpdateReplicationInfoCommandInput
289
314
  | UpdateSecurityCommandInput
290
315
  | UpdateStorageCommandInput;
291
316
  export type ServiceOutputTypes =
@@ -294,10 +319,12 @@ export type ServiceOutputTypes =
294
319
  | CreateClusterCommandOutput
295
320
  | CreateClusterV2CommandOutput
296
321
  | CreateConfigurationCommandOutput
322
+ | CreateReplicatorCommandOutput
297
323
  | CreateVpcConnectionCommandOutput
298
324
  | DeleteClusterCommandOutput
299
325
  | DeleteClusterPolicyCommandOutput
300
326
  | DeleteConfigurationCommandOutput
327
+ | DeleteReplicatorCommandOutput
301
328
  | DeleteVpcConnectionCommandOutput
302
329
  | DescribeClusterCommandOutput
303
330
  | DescribeClusterOperationCommandOutput
@@ -305,6 +332,7 @@ export type ServiceOutputTypes =
305
332
  | DescribeClusterV2CommandOutput
306
333
  | DescribeConfigurationCommandOutput
307
334
  | DescribeConfigurationRevisionCommandOutput
335
+ | DescribeReplicatorCommandOutput
308
336
  | DescribeVpcConnectionCommandOutput
309
337
  | GetBootstrapBrokersCommandOutput
310
338
  | GetClusterPolicyCommandOutput
@@ -318,6 +346,7 @@ export type ServiceOutputTypes =
318
346
  | ListConfigurationsCommandOutput
319
347
  | ListKafkaVersionsCommandOutput
320
348
  | ListNodesCommandOutput
349
+ | ListReplicatorsCommandOutput
321
350
  | ListScramSecretsCommandOutput
322
351
  | ListTagsForResourceCommandOutput
323
352
  | ListVpcConnectionsCommandOutput
@@ -334,6 +363,7 @@ export type ServiceOutputTypes =
334
363
  | UpdateConfigurationCommandOutput
335
364
  | UpdateConnectivityCommandOutput
336
365
  | UpdateMonitoringCommandOutput
366
+ | UpdateReplicationInfoCommandOutput
337
367
  | UpdateSecurityCommandOutput
338
368
  | UpdateStorageCommandOutput;
339
369
  export interface ClientDefaults
@@ -0,0 +1,38 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@smithy/types";
9
+ import {
10
+ KafkaClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../KafkaClient";
14
+ import {
15
+ CreateReplicatorRequest,
16
+ CreateReplicatorResponse,
17
+ } from "../models/models_0";
18
+ export { __MetadataBearer, $Command };
19
+ export interface CreateReplicatorCommandInput extends CreateReplicatorRequest {}
20
+ export interface CreateReplicatorCommandOutput
21
+ extends CreateReplicatorResponse,
22
+ __MetadataBearer {}
23
+ export declare class CreateReplicatorCommand extends $Command<
24
+ CreateReplicatorCommandInput,
25
+ CreateReplicatorCommandOutput,
26
+ KafkaClientResolvedConfig
27
+ > {
28
+ readonly input: CreateReplicatorCommandInput;
29
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
30
+ constructor(input: CreateReplicatorCommandInput);
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: KafkaClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<CreateReplicatorCommandInput, CreateReplicatorCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -0,0 +1,38 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@smithy/types";
9
+ import {
10
+ KafkaClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../KafkaClient";
14
+ import {
15
+ DeleteReplicatorRequest,
16
+ DeleteReplicatorResponse,
17
+ } from "../models/models_0";
18
+ export { __MetadataBearer, $Command };
19
+ export interface DeleteReplicatorCommandInput extends DeleteReplicatorRequest {}
20
+ export interface DeleteReplicatorCommandOutput
21
+ extends DeleteReplicatorResponse,
22
+ __MetadataBearer {}
23
+ export declare class DeleteReplicatorCommand extends $Command<
24
+ DeleteReplicatorCommandInput,
25
+ DeleteReplicatorCommandOutput,
26
+ KafkaClientResolvedConfig
27
+ > {
28
+ readonly input: DeleteReplicatorCommandInput;
29
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
30
+ constructor(input: DeleteReplicatorCommandInput);
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: KafkaClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<DeleteReplicatorCommandInput, DeleteReplicatorCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -0,0 +1,39 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@smithy/types";
9
+ import {
10
+ KafkaClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../KafkaClient";
14
+ import {
15
+ DescribeReplicatorRequest,
16
+ DescribeReplicatorResponse,
17
+ } from "../models/models_0";
18
+ export { __MetadataBearer, $Command };
19
+ export interface DescribeReplicatorCommandInput
20
+ extends DescribeReplicatorRequest {}
21
+ export interface DescribeReplicatorCommandOutput
22
+ extends DescribeReplicatorResponse,
23
+ __MetadataBearer {}
24
+ export declare class DescribeReplicatorCommand extends $Command<
25
+ DescribeReplicatorCommandInput,
26
+ DescribeReplicatorCommandOutput,
27
+ KafkaClientResolvedConfig
28
+ > {
29
+ readonly input: DescribeReplicatorCommandInput;
30
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
+ constructor(input: DescribeReplicatorCommandInput);
32
+ resolveMiddleware(
33
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
+ configuration: KafkaClientResolvedConfig,
35
+ options?: __HttpHandlerOptions
36
+ ): Handler<DescribeReplicatorCommandInput, DescribeReplicatorCommandOutput>;
37
+ private serialize;
38
+ private deserialize;
39
+ }
@@ -0,0 +1,38 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@smithy/types";
9
+ import {
10
+ KafkaClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../KafkaClient";
14
+ import {
15
+ ListReplicatorsRequest,
16
+ ListReplicatorsResponse,
17
+ } from "../models/models_0";
18
+ export { __MetadataBearer, $Command };
19
+ export interface ListReplicatorsCommandInput extends ListReplicatorsRequest {}
20
+ export interface ListReplicatorsCommandOutput
21
+ extends ListReplicatorsResponse,
22
+ __MetadataBearer {}
23
+ export declare class ListReplicatorsCommand extends $Command<
24
+ ListReplicatorsCommandInput,
25
+ ListReplicatorsCommandOutput,
26
+ KafkaClientResolvedConfig
27
+ > {
28
+ readonly input: ListReplicatorsCommandInput;
29
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
30
+ constructor(input: ListReplicatorsCommandInput);
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: KafkaClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<ListReplicatorsCommandInput, ListReplicatorsCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -0,0 +1,42 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@smithy/types";
9
+ import {
10
+ KafkaClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../KafkaClient";
14
+ import {
15
+ UpdateReplicationInfoRequest,
16
+ UpdateReplicationInfoResponse,
17
+ } from "../models/models_0";
18
+ export { __MetadataBearer, $Command };
19
+ export interface UpdateReplicationInfoCommandInput
20
+ extends UpdateReplicationInfoRequest {}
21
+ export interface UpdateReplicationInfoCommandOutput
22
+ extends UpdateReplicationInfoResponse,
23
+ __MetadataBearer {}
24
+ export declare class UpdateReplicationInfoCommand extends $Command<
25
+ UpdateReplicationInfoCommandInput,
26
+ UpdateReplicationInfoCommandOutput,
27
+ KafkaClientResolvedConfig
28
+ > {
29
+ readonly input: UpdateReplicationInfoCommandInput;
30
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
+ constructor(input: UpdateReplicationInfoCommandInput);
32
+ resolveMiddleware(
33
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
+ configuration: KafkaClientResolvedConfig,
35
+ options?: __HttpHandlerOptions
36
+ ): Handler<
37
+ UpdateReplicationInfoCommandInput,
38
+ UpdateReplicationInfoCommandOutput
39
+ >;
40
+ private serialize;
41
+ private deserialize;
42
+ }
@@ -3,10 +3,12 @@ export * from "./BatchDisassociateScramSecretCommand";
3
3
  export * from "./CreateClusterCommand";
4
4
  export * from "./CreateClusterV2Command";
5
5
  export * from "./CreateConfigurationCommand";
6
+ export * from "./CreateReplicatorCommand";
6
7
  export * from "./CreateVpcConnectionCommand";
7
8
  export * from "./DeleteClusterCommand";
8
9
  export * from "./DeleteClusterPolicyCommand";
9
10
  export * from "./DeleteConfigurationCommand";
11
+ export * from "./DeleteReplicatorCommand";
10
12
  export * from "./DeleteVpcConnectionCommand";
11
13
  export * from "./DescribeClusterCommand";
12
14
  export * from "./DescribeClusterOperationCommand";
@@ -14,6 +16,7 @@ export * from "./DescribeClusterOperationV2Command";
14
16
  export * from "./DescribeClusterV2Command";
15
17
  export * from "./DescribeConfigurationCommand";
16
18
  export * from "./DescribeConfigurationRevisionCommand";
19
+ export * from "./DescribeReplicatorCommand";
17
20
  export * from "./DescribeVpcConnectionCommand";
18
21
  export * from "./GetBootstrapBrokersCommand";
19
22
  export * from "./GetClusterPolicyCommand";
@@ -27,6 +30,7 @@ export * from "./ListConfigurationRevisionsCommand";
27
30
  export * from "./ListConfigurationsCommand";
28
31
  export * from "./ListKafkaVersionsCommand";
29
32
  export * from "./ListNodesCommand";
33
+ export * from "./ListReplicatorsCommand";
30
34
  export * from "./ListScramSecretsCommand";
31
35
  export * from "./ListTagsForResourceCommand";
32
36
  export * from "./ListVpcConnectionsCommand";
@@ -43,5 +47,6 @@ export * from "./UpdateClusterKafkaVersionCommand";
43
47
  export * from "./UpdateConfigurationCommand";
44
48
  export * from "./UpdateConnectivityCommand";
45
49
  export * from "./UpdateMonitoringCommand";
50
+ export * from "./UpdateReplicationInfoCommand";
46
51
  export * from "./UpdateSecurityCommand";
47
52
  export * from "./UpdateStorageCommand";