@aws-sdk/client-kafka 3.932.0 → 3.934.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/README.md +24 -0
- package/dist-cjs/index.js +351 -4
- package/dist-es/Kafka.js +6 -0
- package/dist-es/commands/DescribeTopicCommand.js +16 -0
- package/dist-es/commands/DescribeTopicPartitionsCommand.js +16 -0
- package/dist-es/commands/ListTopicsCommand.js +16 -0
- package/dist-es/commands/index.js +3 -0
- package/dist-es/models/models_0.js +6 -0
- package/dist-es/pagination/DescribeTopicPartitionsPaginator.js +4 -0
- package/dist-es/pagination/ListTopicsPaginator.js +4 -0
- package/dist-es/pagination/index.js +2 -0
- package/dist-es/schemas/schemas_0.js +297 -4
- package/dist-types/Kafka.d.ts +21 -0
- package/dist-types/KafkaClient.d.ts +5 -2
- package/dist-types/commands/DescribeTopicCommand.d.ts +95 -0
- package/dist-types/commands/DescribeTopicPartitionsCommand.d.ts +104 -0
- package/dist-types/commands/ListTopicsCommand.d.ts +101 -0
- package/dist-types/commands/index.d.ts +3 -0
- package/dist-types/models/models_0.d.ts +205 -0
- package/dist-types/pagination/DescribeTopicPartitionsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListTopicsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +2 -0
- package/dist-types/schemas/schemas_0.d.ts +14 -0
- package/dist-types/ts3.4/Kafka.d.ts +51 -0
- package/dist-types/ts3.4/KafkaClient.d.ts +18 -0
- package/dist-types/ts3.4/commands/DescribeTopicCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/DescribeTopicPartitionsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListTopicsCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/index.d.ts +3 -0
- package/dist-types/ts3.4/models/models_0.d.ts +52 -0
- package/dist-types/ts3.4/pagination/DescribeTopicPartitionsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListTopicsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +2 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +14 -0
- package/package.json +6 -6
package/dist-es/Kafka.js
CHANGED
|
@@ -18,6 +18,8 @@ import { DescribeClusterV2Command, } from "./commands/DescribeClusterV2Command";
|
|
|
18
18
|
import { DescribeConfigurationCommand, } from "./commands/DescribeConfigurationCommand";
|
|
19
19
|
import { DescribeConfigurationRevisionCommand, } from "./commands/DescribeConfigurationRevisionCommand";
|
|
20
20
|
import { DescribeReplicatorCommand, } from "./commands/DescribeReplicatorCommand";
|
|
21
|
+
import { DescribeTopicCommand, } from "./commands/DescribeTopicCommand";
|
|
22
|
+
import { DescribeTopicPartitionsCommand, } from "./commands/DescribeTopicPartitionsCommand";
|
|
21
23
|
import { DescribeVpcConnectionCommand, } from "./commands/DescribeVpcConnectionCommand";
|
|
22
24
|
import { GetBootstrapBrokersCommand, } from "./commands/GetBootstrapBrokersCommand";
|
|
23
25
|
import { GetClusterPolicyCommand, } from "./commands/GetClusterPolicyCommand";
|
|
@@ -34,6 +36,7 @@ import { ListNodesCommand } from "./commands/ListNodesCommand";
|
|
|
34
36
|
import { ListReplicatorsCommand, } from "./commands/ListReplicatorsCommand";
|
|
35
37
|
import { ListScramSecretsCommand, } from "./commands/ListScramSecretsCommand";
|
|
36
38
|
import { ListTagsForResourceCommand, } from "./commands/ListTagsForResourceCommand";
|
|
39
|
+
import { ListTopicsCommand } from "./commands/ListTopicsCommand";
|
|
37
40
|
import { ListVpcConnectionsCommand, } from "./commands/ListVpcConnectionsCommand";
|
|
38
41
|
import { PutClusterPolicyCommand, } from "./commands/PutClusterPolicyCommand";
|
|
39
42
|
import { RebootBrokerCommand, } from "./commands/RebootBrokerCommand";
|
|
@@ -73,6 +76,8 @@ const commands = {
|
|
|
73
76
|
DescribeConfigurationCommand,
|
|
74
77
|
DescribeConfigurationRevisionCommand,
|
|
75
78
|
DescribeReplicatorCommand,
|
|
79
|
+
DescribeTopicCommand,
|
|
80
|
+
DescribeTopicPartitionsCommand,
|
|
76
81
|
DescribeVpcConnectionCommand,
|
|
77
82
|
GetBootstrapBrokersCommand,
|
|
78
83
|
GetClusterPolicyCommand,
|
|
@@ -89,6 +94,7 @@ const commands = {
|
|
|
89
94
|
ListReplicatorsCommand,
|
|
90
95
|
ListScramSecretsCommand,
|
|
91
96
|
ListTagsForResourceCommand,
|
|
97
|
+
ListTopicsCommand,
|
|
92
98
|
ListVpcConnectionsCommand,
|
|
93
99
|
PutClusterPolicyCommand,
|
|
94
100
|
RebootBrokerCommand,
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { DescribeTopic } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class DescribeTopicCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("Kafka", "DescribeTopic", {})
|
|
13
|
+
.n("KafkaClient", "DescribeTopicCommand")
|
|
14
|
+
.sc(DescribeTopic)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { DescribeTopicPartitions } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class DescribeTopicPartitionsCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("Kafka", "DescribeTopicPartitions", {})
|
|
13
|
+
.n("KafkaClient", "DescribeTopicPartitionsCommand")
|
|
14
|
+
.sc(DescribeTopicPartitions)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { ListTopics } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class ListTopicsCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("Kafka", "ListTopics", {})
|
|
13
|
+
.n("KafkaClient", "ListTopicsCommand")
|
|
14
|
+
.sc(ListTopics)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -17,6 +17,8 @@ export * from "./DescribeClusterV2Command";
|
|
|
17
17
|
export * from "./DescribeConfigurationCommand";
|
|
18
18
|
export * from "./DescribeConfigurationRevisionCommand";
|
|
19
19
|
export * from "./DescribeReplicatorCommand";
|
|
20
|
+
export * from "./DescribeTopicCommand";
|
|
21
|
+
export * from "./DescribeTopicPartitionsCommand";
|
|
20
22
|
export * from "./DescribeVpcConnectionCommand";
|
|
21
23
|
export * from "./GetBootstrapBrokersCommand";
|
|
22
24
|
export * from "./GetClusterPolicyCommand";
|
|
@@ -33,6 +35,7 @@ export * from "./ListNodesCommand";
|
|
|
33
35
|
export * from "./ListReplicatorsCommand";
|
|
34
36
|
export * from "./ListScramSecretsCommand";
|
|
35
37
|
export * from "./ListTagsForResourceCommand";
|
|
38
|
+
export * from "./ListTopicsCommand";
|
|
36
39
|
export * from "./ListVpcConnectionsCommand";
|
|
37
40
|
export * from "./PutClusterPolicyCommand";
|
|
38
41
|
export * from "./RebootBrokerCommand";
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
2
|
+
import { DescribeTopicPartitionsCommand, } from "../commands/DescribeTopicPartitionsCommand";
|
|
3
|
+
import { KafkaClient } from "../KafkaClient";
|
|
4
|
+
export const paginateDescribeTopicPartitions = createPaginator(KafkaClient, DescribeTopicPartitionsCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
2
|
+
import { ListTopicsCommand } from "../commands/ListTopicsCommand";
|
|
3
|
+
import { KafkaClient } from "../KafkaClient";
|
|
4
|
+
export const paginateListTopics = createPaginator(KafkaClient, ListTopicsCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
export * from "./DescribeTopicPartitionsPaginator";
|
|
1
2
|
export * from "./Interfaces";
|
|
2
3
|
export * from "./ListClientVpcConnectionsPaginator";
|
|
3
4
|
export * from "./ListClusterOperationsPaginator";
|
|
@@ -10,4 +11,5 @@ export * from "./ListKafkaVersionsPaginator";
|
|
|
10
11
|
export * from "./ListNodesPaginator";
|
|
11
12
|
export * from "./ListReplicatorsPaginator";
|
|
12
13
|
export * from "./ListScramSecretsPaginator";
|
|
14
|
+
export * from "./ListTopicsPaginator";
|
|
13
15
|
export * from "./ListVpcConnectionsPaginator";
|
|
@@ -94,7 +94,8 @@ const _CVIA = "ClientVpcIpAddress";
|
|
|
94
94
|
const _CWL = "CloudWatchLogs";
|
|
95
95
|
const _Co = "Configuration";
|
|
96
96
|
const _Cod = "Code";
|
|
97
|
-
const _Con = "
|
|
97
|
+
const _Con = "Configs";
|
|
98
|
+
const _Conf = "Configurations";
|
|
98
99
|
const _D = "Description";
|
|
99
100
|
const _DACNCG = "DetectAndCopyNewConsumerGroups";
|
|
100
101
|
const _DACNT = "DetectAndCopyNewTopics";
|
|
@@ -133,6 +134,12 @@ const _DRRes = "DescribeReplicatorRequest";
|
|
|
133
134
|
const _DRResc = "DescribeReplicatorResponse";
|
|
134
135
|
const _DRe = "DescribeReplicator";
|
|
135
136
|
const _DS = "DeliveryStream";
|
|
137
|
+
const _DT = "DescribeTopic";
|
|
138
|
+
const _DTP = "DescribeTopicPartitions";
|
|
139
|
+
const _DTPR = "DescribeTopicPartitionsRequest";
|
|
140
|
+
const _DTPRe = "DescribeTopicPartitionsResponse";
|
|
141
|
+
const _DTR = "DescribeTopicRequest";
|
|
142
|
+
const _DTRe = "DescribeTopicResponse";
|
|
136
143
|
const _DVC = "DeleteVpcConnection";
|
|
137
144
|
const _DVCR = "DeleteVpcConnectionRequest";
|
|
138
145
|
const _DVCRe = "DeleteVpcConnectionResponse";
|
|
@@ -171,6 +178,7 @@ const _IP = "InvalidParameter";
|
|
|
171
178
|
const _IRR = "IsReplicatorReference";
|
|
172
179
|
const _ISEE = "InternalServerErrorException";
|
|
173
180
|
const _IT = "InstanceType";
|
|
181
|
+
const _Is = "Isr";
|
|
174
182
|
const _JE = "JmxExporter";
|
|
175
183
|
const _JEI = "JmxExporterInfo";
|
|
176
184
|
const _KBNI = "KafkaBrokerNodeId";
|
|
@@ -183,6 +191,7 @@ const _KCSa = "KafkaClustersSummary";
|
|
|
183
191
|
const _KCa = "KafkaCluster";
|
|
184
192
|
const _KV = "KafkaVersion";
|
|
185
193
|
const _KVa = "KafkaVersions";
|
|
194
|
+
const _L = "Leader";
|
|
186
195
|
const _LC = "ListClusters";
|
|
187
196
|
const _LCO = "ListClusterOperations";
|
|
188
197
|
const _LCOR = "ListClusterOperationsRequest";
|
|
@@ -219,9 +228,12 @@ const _LRi = "ListReplicators";
|
|
|
219
228
|
const _LSS = "ListScramSecrets";
|
|
220
229
|
const _LSSR = "ListScramSecretsRequest";
|
|
221
230
|
const _LSSRi = "ListScramSecretsResponse";
|
|
231
|
+
const _LT = "ListTopics";
|
|
222
232
|
const _LTFR = "ListTagsForResource";
|
|
223
233
|
const _LTFRR = "ListTagsForResourceRequest";
|
|
224
234
|
const _LTFRRi = "ListTagsForResourceResponse";
|
|
235
|
+
const _LTR = "ListTopicsRequest";
|
|
236
|
+
const _LTRi = "ListTopicsResponse";
|
|
225
237
|
const _LVC = "ListVpcConnections";
|
|
226
238
|
const _LVCR = "ListVpcConnectionsRequest";
|
|
227
239
|
const _LVCRi = "ListVpcConnectionsResponse";
|
|
@@ -243,11 +255,13 @@ const _O = "Owner";
|
|
|
243
255
|
const _OA = "OperationArn";
|
|
244
256
|
const _OM = "OpenMonitoring";
|
|
245
257
|
const _OMI = "OpenMonitoringInfo";
|
|
258
|
+
const _OOSRC = "OutOfSyncReplicaCount";
|
|
246
259
|
const _OS = "OperationState";
|
|
247
260
|
const _OSp = "OperationSteps";
|
|
248
261
|
const _OT = "OperationType";
|
|
249
262
|
const _P = "Provisioned";
|
|
250
263
|
const _PA = "PublicAccess";
|
|
264
|
+
const _PC = "PartitionCount";
|
|
251
265
|
const _PCP = "PutClusterPolicy";
|
|
252
266
|
const _PCPR = "PutClusterPolicyRequest";
|
|
253
267
|
const _PCPRu = "PutClusterPolicyResponse";
|
|
@@ -255,6 +269,8 @@ const _PI = "PrometheusInfo";
|
|
|
255
269
|
const _PIr = "PrincipalId";
|
|
256
270
|
const _PR = "ProvisionedRequest";
|
|
257
271
|
const _PT = "ProvisionedThroughput";
|
|
272
|
+
const _Pa = "Partitions";
|
|
273
|
+
const _Par = "Partition";
|
|
258
274
|
const _Po = "Policy";
|
|
259
275
|
const _Pr = "Prometheus";
|
|
260
276
|
const _Pre = "Prefix";
|
|
@@ -268,6 +284,7 @@ const _RCVC = "RejectClientVpcConnection";
|
|
|
268
284
|
const _RCVCR = "RejectClientVpcConnectionRequest";
|
|
269
285
|
const _RCVCRe = "RejectClientVpcConnectionResponse";
|
|
270
286
|
const _RD = "ReplicatorDescription";
|
|
287
|
+
const _RF = "ReplicationFactor";
|
|
271
288
|
const _RI = "ReplicationInfo";
|
|
272
289
|
const _RID = "ReplicationInfoDescription";
|
|
273
290
|
const _RIL = "ReplicationInfoList";
|
|
@@ -283,6 +300,7 @@ const _RSe = "ReplicatorSummary";
|
|
|
283
300
|
const _RTNC = "ReplicationTopicNameConfiguration";
|
|
284
301
|
const _Re = "Revision";
|
|
285
302
|
const _Rep = "Replicators";
|
|
303
|
+
const _Repl = "Replicas";
|
|
286
304
|
const _Rev = "Revisions";
|
|
287
305
|
const _S = "S3";
|
|
288
306
|
const _SA = "SecretArn";
|
|
@@ -316,18 +334,23 @@ const _St = "State";
|
|
|
316
334
|
const _Sta = "Status";
|
|
317
335
|
const _Su = "Subnets";
|
|
318
336
|
const _T = "Tls";
|
|
337
|
+
const _TA = "TopicArn";
|
|
319
338
|
const _TBEBSVI = "TargetBrokerEBSVolumeInfo";
|
|
320
339
|
const _TCA = "TargetClusterArn";
|
|
321
340
|
const _TCI = "TargetClusterInfo";
|
|
322
341
|
const _TCT = "TargetCompressionType";
|
|
342
|
+
const _TI = "TopicInfo";
|
|
323
343
|
const _TIT = "TargetInstanceType";
|
|
324
344
|
const _TK = "TagKeys";
|
|
325
345
|
const _TKCA = "TargetKafkaClusterArn";
|
|
326
346
|
const _TKCAa = "TargetKafkaClusterAlias";
|
|
327
347
|
const _TKV = "TargetKafkaVersion";
|
|
328
348
|
const _TMRE = "TooManyRequestsException";
|
|
349
|
+
const _TN = "TopicName";
|
|
329
350
|
const _TNC = "TopicNameConfiguration";
|
|
351
|
+
const _TNF = "TopicNameFilter";
|
|
330
352
|
const _TNOBN = "TargetNumberOfBrokerNodes";
|
|
353
|
+
const _TPI = "TopicPartitionInfo";
|
|
331
354
|
const _TR = "TopicReplication";
|
|
332
355
|
const _TRR = "TagResourceRequest";
|
|
333
356
|
const _TRU = "TopicReplicationUpdate";
|
|
@@ -336,6 +359,7 @@ const _TTE = "TopicsToExclude";
|
|
|
336
359
|
const _TTR = "TopicsToReplicate";
|
|
337
360
|
const _TV = "TargetVersions";
|
|
338
361
|
const _Ta = "Tags";
|
|
362
|
+
const _To = "Topics";
|
|
339
363
|
const _Ty = "Type";
|
|
340
364
|
const _U = "Unauthenticated";
|
|
341
365
|
const _UBC = "UpdateBrokerCount";
|
|
@@ -465,8 +489,9 @@ const _cV = "currentVersion";
|
|
|
465
489
|
const _cVC = "clientVpcConnections";
|
|
466
490
|
const _cVIA = "clientVpcIpAddress";
|
|
467
491
|
const _cWL = "cloudWatchLogs";
|
|
468
|
-
const _co = "
|
|
492
|
+
const _co = "configs";
|
|
469
493
|
const _cod = "code";
|
|
494
|
+
const _con = "configurations";
|
|
470
495
|
const _d = "description";
|
|
471
496
|
const _dACNCG = "detectAndCopyNewConsumerGroups";
|
|
472
497
|
const _dACNT = "detectAndCopyNewTopics";
|
|
@@ -496,6 +521,7 @@ const _iC = "inCluster";
|
|
|
496
521
|
const _iP = "invalidParameter";
|
|
497
522
|
const _iRR = "isReplicatorReference";
|
|
498
523
|
const _iT = "instanceType";
|
|
524
|
+
const _is = "isr";
|
|
499
525
|
const _jE = "jmxExporter";
|
|
500
526
|
const _jN = "jsonName";
|
|
501
527
|
const _kBNI = "kafkaBrokerNodeId";
|
|
@@ -504,6 +530,7 @@ const _kCA = "kafkaClusterAlias";
|
|
|
504
530
|
const _kCS = "kafkaClustersSummary";
|
|
505
531
|
const _kV = "kafkaVersion";
|
|
506
532
|
const _kVa = "kafkaVersions";
|
|
533
|
+
const _l = "leader";
|
|
507
534
|
const _lG = "logGroup";
|
|
508
535
|
const _lI = "loggingInfo";
|
|
509
536
|
const _lOBEBSVI = "__listOfBrokerEBSVolumeInfo";
|
|
@@ -525,6 +552,8 @@ const _lORI = "__listOfReplicationInfo";
|
|
|
525
552
|
const _lORID = "__listOfReplicationInfoDescription";
|
|
526
553
|
const _lORIS = "__listOfReplicationInfoSummary";
|
|
527
554
|
const _lORS = "__listOfReplicatorSummary";
|
|
555
|
+
const _lOTI = "__listOfTopicInfo";
|
|
556
|
+
const _lOTPI = "__listOfTopicPartitionInfo";
|
|
528
557
|
const _lOUSS = "__listOfUnprocessedScramSecret";
|
|
529
558
|
const _lOVC = "__listOfVpcConfig";
|
|
530
559
|
const _lOVCi = "__listOfVpcConnection";
|
|
@@ -542,19 +571,24 @@ const _nTo = "nodeType";
|
|
|
542
571
|
const _o = "owner";
|
|
543
572
|
const _oA = "operationArn";
|
|
544
573
|
const _oM = "openMonitoring";
|
|
574
|
+
const _oOSRC = "outOfSyncReplicaCount";
|
|
545
575
|
const _oS = "operationState";
|
|
546
576
|
const _oSp = "operationSteps";
|
|
547
577
|
const _oT = "operationType";
|
|
548
578
|
const _p = "provisioned";
|
|
549
579
|
const _pA = "publicAccess";
|
|
580
|
+
const _pC = "partitionCount";
|
|
550
581
|
const _pI = "principalId";
|
|
551
582
|
const _pT = "provisionedThroughput";
|
|
583
|
+
const _pa = "partitions";
|
|
584
|
+
const _par = "partition";
|
|
552
585
|
const _po = "policy";
|
|
553
586
|
const _pr = "prometheus";
|
|
554
587
|
const _pre = "prefix";
|
|
555
588
|
const _r = "rebalancing";
|
|
556
589
|
const _rA = "replicatorArn";
|
|
557
590
|
const _rD = "replicatorDescription";
|
|
591
|
+
const _rF = "replicationFactor";
|
|
558
592
|
const _rIL = "replicationInfoList";
|
|
559
593
|
const _rISL = "replicationInfoSummaryList";
|
|
560
594
|
const _rN = "replicatorName";
|
|
@@ -563,6 +597,7 @@ const _rRA = "replicatorResourceArn";
|
|
|
563
597
|
const _rS = "replicatorState";
|
|
564
598
|
const _re = "revision";
|
|
565
599
|
const _rep = "replicators";
|
|
600
|
+
const _repl = "replicas";
|
|
566
601
|
const _rev = "revisions";
|
|
567
602
|
const _s = "s3";
|
|
568
603
|
const _sA = "secretArn";
|
|
@@ -594,6 +629,7 @@ const _st = "state";
|
|
|
594
629
|
const _sta = "status";
|
|
595
630
|
const _su = "subnets";
|
|
596
631
|
const _t = "tls";
|
|
632
|
+
const _tA = "topicArn";
|
|
597
633
|
const _tBEBSVI = "targetBrokerEBSVolumeInfo";
|
|
598
634
|
const _tCA = "targetClusterArn";
|
|
599
635
|
const _tCI = "targetClusterInfo";
|
|
@@ -603,13 +639,16 @@ const _tK = "tagKeys";
|
|
|
603
639
|
const _tKCA = "targetKafkaClusterArn";
|
|
604
640
|
const _tKCAa = "targetKafkaClusterAlias";
|
|
605
641
|
const _tKV = "targetKafkaVersion";
|
|
642
|
+
const _tN = "topicName";
|
|
606
643
|
const _tNC = "topicNameConfiguration";
|
|
644
|
+
const _tNF = "topicNameFilter";
|
|
607
645
|
const _tNOBN = "targetNumberOfBrokerNodes";
|
|
608
646
|
const _tR = "topicReplication";
|
|
609
647
|
const _tTE = "topicsToExclude";
|
|
610
648
|
const _tTR = "topicsToReplicate";
|
|
611
649
|
const _tV = "targetVersions";
|
|
612
650
|
const _ta = "tags";
|
|
651
|
+
const _to = "topics";
|
|
613
652
|
const _ty = "type";
|
|
614
653
|
const _u = "unauthenticated";
|
|
615
654
|
const _uI = "userIdentity";
|
|
@@ -2576,6 +2615,106 @@ export var DescribeReplicatorResponse = [
|
|
|
2576
2615
|
],
|
|
2577
2616
|
],
|
|
2578
2617
|
];
|
|
2618
|
+
export var DescribeTopicPartitionsRequest = [
|
|
2619
|
+
3,
|
|
2620
|
+
n0,
|
|
2621
|
+
_DTPR,
|
|
2622
|
+
0,
|
|
2623
|
+
[_CA, _TN, _MR, _NT],
|
|
2624
|
+
[
|
|
2625
|
+
[0, 1],
|
|
2626
|
+
[0, 1],
|
|
2627
|
+
[
|
|
2628
|
+
1,
|
|
2629
|
+
{
|
|
2630
|
+
[_hQ]: _mR,
|
|
2631
|
+
},
|
|
2632
|
+
],
|
|
2633
|
+
[
|
|
2634
|
+
0,
|
|
2635
|
+
{
|
|
2636
|
+
[_hQ]: _nT,
|
|
2637
|
+
},
|
|
2638
|
+
],
|
|
2639
|
+
],
|
|
2640
|
+
];
|
|
2641
|
+
export var DescribeTopicPartitionsResponse = [
|
|
2642
|
+
3,
|
|
2643
|
+
n0,
|
|
2644
|
+
_DTPRe,
|
|
2645
|
+
0,
|
|
2646
|
+
[_Pa, _NT],
|
|
2647
|
+
[
|
|
2648
|
+
[
|
|
2649
|
+
() => __listOfTopicPartitionInfo,
|
|
2650
|
+
{
|
|
2651
|
+
[_jN]: _pa,
|
|
2652
|
+
},
|
|
2653
|
+
],
|
|
2654
|
+
[
|
|
2655
|
+
0,
|
|
2656
|
+
{
|
|
2657
|
+
[_jN]: _nT,
|
|
2658
|
+
},
|
|
2659
|
+
],
|
|
2660
|
+
],
|
|
2661
|
+
];
|
|
2662
|
+
export var DescribeTopicRequest = [
|
|
2663
|
+
3,
|
|
2664
|
+
n0,
|
|
2665
|
+
_DTR,
|
|
2666
|
+
0,
|
|
2667
|
+
[_CA, _TN],
|
|
2668
|
+
[
|
|
2669
|
+
[0, 1],
|
|
2670
|
+
[0, 1],
|
|
2671
|
+
],
|
|
2672
|
+
];
|
|
2673
|
+
export var DescribeTopicResponse = [
|
|
2674
|
+
3,
|
|
2675
|
+
n0,
|
|
2676
|
+
_DTRe,
|
|
2677
|
+
0,
|
|
2678
|
+
[_TA, _TN, _RF, _PC, _Con, _Sta],
|
|
2679
|
+
[
|
|
2680
|
+
[
|
|
2681
|
+
0,
|
|
2682
|
+
{
|
|
2683
|
+
[_jN]: _tA,
|
|
2684
|
+
},
|
|
2685
|
+
],
|
|
2686
|
+
[
|
|
2687
|
+
0,
|
|
2688
|
+
{
|
|
2689
|
+
[_jN]: _tN,
|
|
2690
|
+
},
|
|
2691
|
+
],
|
|
2692
|
+
[
|
|
2693
|
+
1,
|
|
2694
|
+
{
|
|
2695
|
+
[_jN]: _rF,
|
|
2696
|
+
},
|
|
2697
|
+
],
|
|
2698
|
+
[
|
|
2699
|
+
1,
|
|
2700
|
+
{
|
|
2701
|
+
[_jN]: _pC,
|
|
2702
|
+
},
|
|
2703
|
+
],
|
|
2704
|
+
[
|
|
2705
|
+
0,
|
|
2706
|
+
{
|
|
2707
|
+
[_jN]: _co,
|
|
2708
|
+
},
|
|
2709
|
+
],
|
|
2710
|
+
[
|
|
2711
|
+
0,
|
|
2712
|
+
{
|
|
2713
|
+
[_jN]: _sta,
|
|
2714
|
+
},
|
|
2715
|
+
],
|
|
2716
|
+
],
|
|
2717
|
+
];
|
|
2579
2718
|
export var DescribeVpcConnectionRequest = [3, n0, _DVCRes, 0, [_Ar], [[0, 1]]];
|
|
2580
2719
|
export var DescribeVpcConnectionResponse = [
|
|
2581
2720
|
3,
|
|
@@ -3388,12 +3527,12 @@ export var ListConfigurationsResponse = [
|
|
|
3388
3527
|
n0,
|
|
3389
3528
|
_LCRist,
|
|
3390
3529
|
0,
|
|
3391
|
-
[
|
|
3530
|
+
[_Conf, _NT],
|
|
3392
3531
|
[
|
|
3393
3532
|
[
|
|
3394
3533
|
() => __listOfConfiguration,
|
|
3395
3534
|
{
|
|
3396
|
-
[_jN]:
|
|
3535
|
+
[_jN]: _con,
|
|
3397
3536
|
},
|
|
3398
3537
|
],
|
|
3399
3538
|
[
|
|
@@ -3596,6 +3735,55 @@ export var ListTagsForResourceResponse = [
|
|
|
3596
3735
|
],
|
|
3597
3736
|
],
|
|
3598
3737
|
];
|
|
3738
|
+
export var ListTopicsRequest = [
|
|
3739
|
+
3,
|
|
3740
|
+
n0,
|
|
3741
|
+
_LTR,
|
|
3742
|
+
0,
|
|
3743
|
+
[_CA, _MR, _NT, _TNF],
|
|
3744
|
+
[
|
|
3745
|
+
[0, 1],
|
|
3746
|
+
[
|
|
3747
|
+
1,
|
|
3748
|
+
{
|
|
3749
|
+
[_hQ]: _mR,
|
|
3750
|
+
},
|
|
3751
|
+
],
|
|
3752
|
+
[
|
|
3753
|
+
0,
|
|
3754
|
+
{
|
|
3755
|
+
[_hQ]: _nT,
|
|
3756
|
+
},
|
|
3757
|
+
],
|
|
3758
|
+
[
|
|
3759
|
+
0,
|
|
3760
|
+
{
|
|
3761
|
+
[_hQ]: _tNF,
|
|
3762
|
+
},
|
|
3763
|
+
],
|
|
3764
|
+
],
|
|
3765
|
+
];
|
|
3766
|
+
export var ListTopicsResponse = [
|
|
3767
|
+
3,
|
|
3768
|
+
n0,
|
|
3769
|
+
_LTRi,
|
|
3770
|
+
0,
|
|
3771
|
+
[_To, _NT],
|
|
3772
|
+
[
|
|
3773
|
+
[
|
|
3774
|
+
() => __listOfTopicInfo,
|
|
3775
|
+
{
|
|
3776
|
+
[_jN]: _to,
|
|
3777
|
+
},
|
|
3778
|
+
],
|
|
3779
|
+
[
|
|
3780
|
+
0,
|
|
3781
|
+
{
|
|
3782
|
+
[_jN]: _nT,
|
|
3783
|
+
},
|
|
3784
|
+
],
|
|
3785
|
+
],
|
|
3786
|
+
];
|
|
3599
3787
|
export var ListVpcConnectionsRequest = [
|
|
3600
3788
|
3,
|
|
3601
3789
|
n0,
|
|
@@ -4699,6 +4887,78 @@ export var TooManyRequestsException = [
|
|
|
4699
4887
|
],
|
|
4700
4888
|
];
|
|
4701
4889
|
TypeRegistry.for(n0).registerError(TooManyRequestsException, __TooManyRequestsException);
|
|
4890
|
+
export var TopicInfo = [
|
|
4891
|
+
3,
|
|
4892
|
+
n0,
|
|
4893
|
+
_TI,
|
|
4894
|
+
0,
|
|
4895
|
+
[_TA, _TN, _RF, _PC, _OOSRC],
|
|
4896
|
+
[
|
|
4897
|
+
[
|
|
4898
|
+
0,
|
|
4899
|
+
{
|
|
4900
|
+
[_jN]: _tA,
|
|
4901
|
+
},
|
|
4902
|
+
],
|
|
4903
|
+
[
|
|
4904
|
+
0,
|
|
4905
|
+
{
|
|
4906
|
+
[_jN]: _tN,
|
|
4907
|
+
},
|
|
4908
|
+
],
|
|
4909
|
+
[
|
|
4910
|
+
1,
|
|
4911
|
+
{
|
|
4912
|
+
[_jN]: _rF,
|
|
4913
|
+
},
|
|
4914
|
+
],
|
|
4915
|
+
[
|
|
4916
|
+
1,
|
|
4917
|
+
{
|
|
4918
|
+
[_jN]: _pC,
|
|
4919
|
+
},
|
|
4920
|
+
],
|
|
4921
|
+
[
|
|
4922
|
+
1,
|
|
4923
|
+
{
|
|
4924
|
+
[_jN]: _oOSRC,
|
|
4925
|
+
},
|
|
4926
|
+
],
|
|
4927
|
+
],
|
|
4928
|
+
];
|
|
4929
|
+
export var TopicPartitionInfo = [
|
|
4930
|
+
3,
|
|
4931
|
+
n0,
|
|
4932
|
+
_TPI,
|
|
4933
|
+
0,
|
|
4934
|
+
[_Par, _L, _Repl, _Is],
|
|
4935
|
+
[
|
|
4936
|
+
[
|
|
4937
|
+
1,
|
|
4938
|
+
{
|
|
4939
|
+
[_jN]: _par,
|
|
4940
|
+
},
|
|
4941
|
+
],
|
|
4942
|
+
[
|
|
4943
|
+
1,
|
|
4944
|
+
{
|
|
4945
|
+
[_jN]: _l,
|
|
4946
|
+
},
|
|
4947
|
+
],
|
|
4948
|
+
[
|
|
4949
|
+
64 | 1,
|
|
4950
|
+
{
|
|
4951
|
+
[_jN]: _repl,
|
|
4952
|
+
},
|
|
4953
|
+
],
|
|
4954
|
+
[
|
|
4955
|
+
64 | 1,
|
|
4956
|
+
{
|
|
4957
|
+
[_jN]: _is,
|
|
4958
|
+
},
|
|
4959
|
+
],
|
|
4960
|
+
],
|
|
4961
|
+
];
|
|
4702
4962
|
export var TopicReplication = [
|
|
4703
4963
|
3,
|
|
4704
4964
|
n0,
|
|
@@ -5740,6 +6000,7 @@ export var __Unit = "unit";
|
|
|
5740
6000
|
export var KafkaServiceException = [-3, _sm, "KafkaServiceException", 0, [], []];
|
|
5741
6001
|
TypeRegistry.for(_sm).registerError(KafkaServiceException, __KafkaServiceException);
|
|
5742
6002
|
export var __listOf__double = 64 | 1;
|
|
6003
|
+
export var __listOf__integer = 64 | 1;
|
|
5743
6004
|
export var __listOf__string = 64 | 0;
|
|
5744
6005
|
export var __listOf__stringMax249 = 64 | 0;
|
|
5745
6006
|
export var __listOf__stringMax256 = 64 | 0;
|
|
@@ -5774,6 +6035,8 @@ export var __listOfReplicationInfoDescription = [
|
|
|
5774
6035
|
];
|
|
5775
6036
|
export var __listOfReplicationInfoSummary = [1, n0, _lORIS, 0, [() => ReplicationInfoSummary, 0]];
|
|
5776
6037
|
export var __listOfReplicatorSummary = [1, n0, _lORS, 0, [() => ReplicatorSummary, 0]];
|
|
6038
|
+
export var __listOfTopicInfo = [1, n0, _lOTI, 0, [() => TopicInfo, 0]];
|
|
6039
|
+
export var __listOfTopicPartitionInfo = [1, n0, _lOTPI, 0, [() => TopicPartitionInfo, 0]];
|
|
5777
6040
|
export var __listOfUnprocessedScramSecret = [1, n0, _lOUSS, 0, [() => UnprocessedScramSecret, 0]];
|
|
5778
6041
|
export var __listOfVpcConfig = [1, n0, _lOVC, 0, [() => VpcConfig, 0]];
|
|
5779
6042
|
export var __listOfVpcConnection = [1, n0, _lOVCi, 0, [() => VpcConnection, 0]];
|
|
@@ -5968,6 +6231,26 @@ export var DescribeReplicator = [
|
|
|
5968
6231
|
() => DescribeReplicatorRequest,
|
|
5969
6232
|
() => DescribeReplicatorResponse,
|
|
5970
6233
|
];
|
|
6234
|
+
export var DescribeTopic = [
|
|
6235
|
+
9,
|
|
6236
|
+
n0,
|
|
6237
|
+
_DT,
|
|
6238
|
+
{
|
|
6239
|
+
[_h]: ["GET", "/v1/clusters/{ClusterArn}/topics/{TopicName}", 200],
|
|
6240
|
+
},
|
|
6241
|
+
() => DescribeTopicRequest,
|
|
6242
|
+
() => DescribeTopicResponse,
|
|
6243
|
+
];
|
|
6244
|
+
export var DescribeTopicPartitions = [
|
|
6245
|
+
9,
|
|
6246
|
+
n0,
|
|
6247
|
+
_DTP,
|
|
6248
|
+
{
|
|
6249
|
+
[_h]: ["GET", "/v1/clusters/{ClusterArn}/topics/{TopicName}/partitions", 200],
|
|
6250
|
+
},
|
|
6251
|
+
() => DescribeTopicPartitionsRequest,
|
|
6252
|
+
() => DescribeTopicPartitionsResponse,
|
|
6253
|
+
];
|
|
5971
6254
|
export var DescribeVpcConnection = [
|
|
5972
6255
|
9,
|
|
5973
6256
|
n0,
|
|
@@ -6128,6 +6411,16 @@ export var ListTagsForResource = [
|
|
|
6128
6411
|
() => ListTagsForResourceRequest,
|
|
6129
6412
|
() => ListTagsForResourceResponse,
|
|
6130
6413
|
];
|
|
6414
|
+
export var ListTopics = [
|
|
6415
|
+
9,
|
|
6416
|
+
n0,
|
|
6417
|
+
_LT,
|
|
6418
|
+
{
|
|
6419
|
+
[_h]: ["GET", "/v1/clusters/{ClusterArn}/topics", 200],
|
|
6420
|
+
},
|
|
6421
|
+
() => ListTopicsRequest,
|
|
6422
|
+
() => ListTopicsResponse,
|
|
6423
|
+
];
|
|
6131
6424
|
export var ListVpcConnections = [
|
|
6132
6425
|
9,
|
|
6133
6426
|
n0,
|