@aws-sdk/client-kafka 3.1097.0 → 3.1099.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 +35 -0
- package/dist-cjs/index.js +535 -151
- package/dist-es/Kafka.js +10 -0
- package/dist-es/commands/CreateChannelCommand.js +4 -0
- package/dist-es/commands/DeleteChannelCommand.js +4 -0
- package/dist-es/commands/DescribeChannelCommand.js +4 -0
- package/dist-es/commands/ListChannelsCommand.js +4 -0
- package/dist-es/commands/UpdateChannelCommand.js +4 -0
- package/dist-es/commands/index.js +5 -0
- package/dist-es/models/enums.js +36 -0
- package/dist-es/schemas/schemas_0.js +432 -150
- package/dist-types/Kafka.d.ts +35 -0
- package/dist-types/KafkaClient.d.ts +7 -2
- package/dist-types/commands/CreateChannelCommand.d.ts +181 -0
- package/dist-types/commands/DeleteChannelCommand.d.ts +94 -0
- package/dist-types/commands/DescribeChannelCommand.d.ts +186 -0
- package/dist-types/commands/ListChannelsCommand.d.ts +105 -0
- package/dist-types/commands/UpdateChannelCommand.d.ts +100 -0
- package/dist-types/commands/index.d.ts +5 -0
- package/dist-types/models/enums.d.ts +92 -0
- package/dist-types/models/models_0.d.ts +632 -1
- package/dist-types/schemas/schemas_0.d.ts +34 -0
- package/dist-types/ts3.4/Kafka.d.ts +85 -0
- package/dist-types/ts3.4/KafkaClient.d.ts +30 -0
- package/dist-types/ts3.4/commands/CreateChannelCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DeleteChannelCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DescribeChannelCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListChannelsCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/UpdateChannelCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/index.d.ts +5 -0
- package/dist-types/ts3.4/models/enums.d.ts +45 -0
- package/dist-types/ts3.4/models/models_0.d.ts +157 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +34 -0
- package/package.json +6 -6
|
@@ -36,6 +36,10 @@ export declare var BrokerLogs$: StaticStructureSchema;
|
|
|
36
36
|
export declare var BrokerNodeGroupInfo$: StaticStructureSchema;
|
|
37
37
|
export declare var BrokerNodeInfo$: StaticStructureSchema;
|
|
38
38
|
export declare var BrokerSoftwareInfo$: StaticStructureSchema;
|
|
39
|
+
export declare var Catalog$: StaticStructureSchema;
|
|
40
|
+
export declare var ChannelInfo$: StaticStructureSchema;
|
|
41
|
+
export declare var ChannelLoggingInfo$: StaticStructureSchema;
|
|
42
|
+
export declare var ChannelStateInfo$: StaticStructureSchema;
|
|
39
43
|
export declare var ClientAuthentication$: StaticStructureSchema;
|
|
40
44
|
export declare var ClientVpcConnection$: StaticStructureSchema;
|
|
41
45
|
export declare var CloudWatchLogs$: StaticStructureSchema;
|
|
@@ -56,6 +60,8 @@ export declare var ConnectivityInfo$: StaticStructureSchema;
|
|
|
56
60
|
export declare var ConsumerGroupReplication$: StaticStructureSchema;
|
|
57
61
|
export declare var ConsumerGroupReplicationUpdate$: StaticStructureSchema;
|
|
58
62
|
export declare var ControllerNodeInfo$: StaticStructureSchema;
|
|
63
|
+
export declare var CreateChannelRequest$: StaticStructureSchema;
|
|
64
|
+
export declare var CreateChannelResponse$: StaticStructureSchema;
|
|
59
65
|
export declare var CreateClusterRequest$: StaticStructureSchema;
|
|
60
66
|
export declare var CreateClusterResponse$: StaticStructureSchema;
|
|
61
67
|
export declare var CreateClusterV2Request$: StaticStructureSchema;
|
|
@@ -68,6 +74,9 @@ export declare var CreateTopicRequest$: StaticStructureSchema;
|
|
|
68
74
|
export declare var CreateTopicResponse$: StaticStructureSchema;
|
|
69
75
|
export declare var CreateVpcConnectionRequest$: StaticStructureSchema;
|
|
70
76
|
export declare var CreateVpcConnectionResponse$: StaticStructureSchema;
|
|
77
|
+
export declare var DeadLetterQueueS3$: StaticStructureSchema;
|
|
78
|
+
export declare var DeleteChannelRequest$: StaticStructureSchema;
|
|
79
|
+
export declare var DeleteChannelResponse$: StaticStructureSchema;
|
|
71
80
|
export declare var DeleteClusterPolicyRequest$: StaticStructureSchema;
|
|
72
81
|
export declare var DeleteClusterPolicyResponse$: StaticStructureSchema;
|
|
73
82
|
export declare var DeleteClusterRequest$: StaticStructureSchema;
|
|
@@ -80,6 +89,8 @@ export declare var DeleteTopicRequest$: StaticStructureSchema;
|
|
|
80
89
|
export declare var DeleteTopicResponse$: StaticStructureSchema;
|
|
81
90
|
export declare var DeleteVpcConnectionRequest$: StaticStructureSchema;
|
|
82
91
|
export declare var DeleteVpcConnectionResponse$: StaticStructureSchema;
|
|
92
|
+
export declare var DescribeChannelRequest$: StaticStructureSchema;
|
|
93
|
+
export declare var DescribeChannelResponse$: StaticStructureSchema;
|
|
83
94
|
export declare var DescribeClusterOperationRequest$: StaticStructureSchema;
|
|
84
95
|
export declare var DescribeClusterOperationResponse$: StaticStructureSchema;
|
|
85
96
|
export declare var DescribeClusterOperationV2Request$: StaticStructureSchema;
|
|
@@ -100,8 +111,10 @@ export declare var DescribeTopicRequest$: StaticStructureSchema;
|
|
|
100
111
|
export declare var DescribeTopicResponse$: StaticStructureSchema;
|
|
101
112
|
export declare var DescribeVpcConnectionRequest$: StaticStructureSchema;
|
|
102
113
|
export declare var DescribeVpcConnectionResponse$: StaticStructureSchema;
|
|
114
|
+
export declare var DestinationTable$: StaticStructureSchema;
|
|
103
115
|
export declare var EBSStorageInfo$: StaticStructureSchema;
|
|
104
116
|
export declare var EncryptionAtRest$: StaticStructureSchema;
|
|
117
|
+
export declare var EncryptionConfiguration$: StaticStructureSchema;
|
|
105
118
|
export declare var EncryptionInfo$: StaticStructureSchema;
|
|
106
119
|
export declare var EncryptionInTransit$: StaticStructureSchema;
|
|
107
120
|
export declare var ErrorInfo$: StaticStructureSchema;
|
|
@@ -113,6 +126,8 @@ export declare var GetClusterPolicyResponse$: StaticStructureSchema;
|
|
|
113
126
|
export declare var GetCompatibleKafkaVersionsRequest$: StaticStructureSchema;
|
|
114
127
|
export declare var GetCompatibleKafkaVersionsResponse$: StaticStructureSchema;
|
|
115
128
|
export declare var Iam$: StaticStructureSchema;
|
|
129
|
+
export declare var IcebergDestinationConfiguration$: StaticStructureSchema;
|
|
130
|
+
export declare var IcebergDestinationUpdate$: StaticStructureSchema;
|
|
116
131
|
export declare var JmxExporter$: StaticStructureSchema;
|
|
117
132
|
export declare var JmxExporterInfo$: StaticStructureSchema;
|
|
118
133
|
export declare var KafkaCluster$: StaticStructureSchema;
|
|
@@ -124,6 +139,8 @@ export declare var KafkaClusterMTLSAuthentication$: StaticStructureSchema;
|
|
|
124
139
|
export declare var KafkaClusterSaslScramAuthentication$: StaticStructureSchema;
|
|
125
140
|
export declare var KafkaClusterSummary$: StaticStructureSchema;
|
|
126
141
|
export declare var KafkaVersion$: StaticStructureSchema;
|
|
142
|
+
export declare var ListChannelsRequest$: StaticStructureSchema;
|
|
143
|
+
export declare var ListChannelsResponse$: StaticStructureSchema;
|
|
127
144
|
export declare var ListClientVpcConnectionsRequest$: StaticStructureSchema;
|
|
128
145
|
export declare var ListClientVpcConnectionsResponse$: StaticStructureSchema;
|
|
129
146
|
export declare var ListClusterOperationsRequest$: StaticStructureSchema;
|
|
@@ -160,6 +177,8 @@ export declare var NodeExporterInfo$: StaticStructureSchema;
|
|
|
160
177
|
export declare var NodeInfo$: StaticStructureSchema;
|
|
161
178
|
export declare var OpenMonitoring$: StaticStructureSchema;
|
|
162
179
|
export declare var OpenMonitoringInfo$: StaticStructureSchema;
|
|
180
|
+
export declare var PartitionSource$: StaticStructureSchema;
|
|
181
|
+
export declare var PartitionSpec$: StaticStructureSchema;
|
|
163
182
|
export declare var Prometheus$: StaticStructureSchema;
|
|
164
183
|
export declare var PrometheusInfo$: StaticStructureSchema;
|
|
165
184
|
export declare var Provisioned$: StaticStructureSchema;
|
|
@@ -171,6 +190,8 @@ export declare var PutClusterPolicyResponse$: StaticStructureSchema;
|
|
|
171
190
|
export declare var Rebalancing$: StaticStructureSchema;
|
|
172
191
|
export declare var RebootBrokerRequest$: StaticStructureSchema;
|
|
173
192
|
export declare var RebootBrokerResponse$: StaticStructureSchema;
|
|
193
|
+
export declare var RecordConverter$: StaticStructureSchema;
|
|
194
|
+
export declare var RecordSchema$: StaticStructureSchema;
|
|
174
195
|
export declare var RejectClientVpcConnectionRequest$: StaticStructureSchema;
|
|
175
196
|
export declare var RejectClientVpcConnectionResponse$: StaticStructureSchema;
|
|
176
197
|
export declare var ReplicationInfo$: StaticStructureSchema;
|
|
@@ -185,7 +206,11 @@ export declare var ReplicatorLogDelivery$: StaticStructureSchema;
|
|
|
185
206
|
export declare var ReplicatorS3$: StaticStructureSchema;
|
|
186
207
|
export declare var ReplicatorSummary$: StaticStructureSchema;
|
|
187
208
|
export declare var S3$: StaticStructureSchema;
|
|
209
|
+
export declare var S3DestinationConfiguration$: StaticStructureSchema;
|
|
210
|
+
export declare var S3DestinationUpdate$: StaticStructureSchema;
|
|
211
|
+
export declare var S3Storage$: StaticStructureSchema;
|
|
188
212
|
export declare var Sasl$: StaticStructureSchema;
|
|
213
|
+
export declare var SchemaEvolution$: StaticStructureSchema;
|
|
189
214
|
export declare var Scram$: StaticStructureSchema;
|
|
190
215
|
export declare var Serverless$: StaticStructureSchema;
|
|
191
216
|
export declare var ServerlessClientAuthentication$: StaticStructureSchema;
|
|
@@ -194,8 +219,10 @@ export declare var ServerlessRequest$: StaticStructureSchema;
|
|
|
194
219
|
export declare var ServerlessSasl$: StaticStructureSchema;
|
|
195
220
|
export declare var StateInfo$: StaticStructureSchema;
|
|
196
221
|
export declare var StorageInfo$: StaticStructureSchema;
|
|
222
|
+
export declare var TableCreation$: StaticStructureSchema;
|
|
197
223
|
export declare var TagResourceRequest$: StaticStructureSchema;
|
|
198
224
|
export declare var Tls$: StaticStructureSchema;
|
|
225
|
+
export declare var TopicConfiguration$: StaticStructureSchema;
|
|
199
226
|
export declare var TopicInfo$: StaticStructureSchema;
|
|
200
227
|
export declare var TopicPartitionInfo$: StaticStructureSchema;
|
|
201
228
|
export declare var TopicReplication$: StaticStructureSchema;
|
|
@@ -209,6 +236,8 @@ export declare var UpdateBrokerStorageRequest$: StaticStructureSchema;
|
|
|
209
236
|
export declare var UpdateBrokerStorageResponse$: StaticStructureSchema;
|
|
210
237
|
export declare var UpdateBrokerTypeRequest$: StaticStructureSchema;
|
|
211
238
|
export declare var UpdateBrokerTypeResponse$: StaticStructureSchema;
|
|
239
|
+
export declare var UpdateChannelRequest$: StaticStructureSchema;
|
|
240
|
+
export declare var UpdateChannelResponse$: StaticStructureSchema;
|
|
212
241
|
export declare var UpdateClusterConfigurationRequest$: StaticStructureSchema;
|
|
213
242
|
export declare var UpdateClusterConfigurationResponse$: StaticStructureSchema;
|
|
214
243
|
export declare var UpdateClusterKafkaVersionRequest$: StaticStructureSchema;
|
|
@@ -244,18 +273,21 @@ export declare var ZookeeperAccess$: StaticStructureSchema;
|
|
|
244
273
|
export declare var ZookeeperNodeInfo$: StaticStructureSchema;
|
|
245
274
|
export declare var BatchAssociateScramSecret$: StaticOperationSchema;
|
|
246
275
|
export declare var BatchDisassociateScramSecret$: StaticOperationSchema;
|
|
276
|
+
export declare var CreateChannel$: StaticOperationSchema;
|
|
247
277
|
export declare var CreateCluster$: StaticOperationSchema;
|
|
248
278
|
export declare var CreateClusterV2$: StaticOperationSchema;
|
|
249
279
|
export declare var CreateConfiguration$: StaticOperationSchema;
|
|
250
280
|
export declare var CreateReplicator$: StaticOperationSchema;
|
|
251
281
|
export declare var CreateTopic$: StaticOperationSchema;
|
|
252
282
|
export declare var CreateVpcConnection$: StaticOperationSchema;
|
|
283
|
+
export declare var DeleteChannel$: StaticOperationSchema;
|
|
253
284
|
export declare var DeleteCluster$: StaticOperationSchema;
|
|
254
285
|
export declare var DeleteClusterPolicy$: StaticOperationSchema;
|
|
255
286
|
export declare var DeleteConfiguration$: StaticOperationSchema;
|
|
256
287
|
export declare var DeleteReplicator$: StaticOperationSchema;
|
|
257
288
|
export declare var DeleteTopic$: StaticOperationSchema;
|
|
258
289
|
export declare var DeleteVpcConnection$: StaticOperationSchema;
|
|
290
|
+
export declare var DescribeChannel$: StaticOperationSchema;
|
|
259
291
|
export declare var DescribeCluster$: StaticOperationSchema;
|
|
260
292
|
export declare var DescribeClusterOperation$: StaticOperationSchema;
|
|
261
293
|
export declare var DescribeClusterOperationV2$: StaticOperationSchema;
|
|
@@ -269,6 +301,7 @@ export declare var DescribeVpcConnection$: StaticOperationSchema;
|
|
|
269
301
|
export declare var GetBootstrapBrokers$: StaticOperationSchema;
|
|
270
302
|
export declare var GetClusterPolicy$: StaticOperationSchema;
|
|
271
303
|
export declare var GetCompatibleKafkaVersions$: StaticOperationSchema;
|
|
304
|
+
export declare var ListChannels$: StaticOperationSchema;
|
|
272
305
|
export declare var ListClientVpcConnections$: StaticOperationSchema;
|
|
273
306
|
export declare var ListClusterOperations$: StaticOperationSchema;
|
|
274
307
|
export declare var ListClusterOperationsV2$: StaticOperationSchema;
|
|
@@ -291,6 +324,7 @@ export declare var UntagResource$: StaticOperationSchema;
|
|
|
291
324
|
export declare var UpdateBrokerCount$: StaticOperationSchema;
|
|
292
325
|
export declare var UpdateBrokerStorage$: StaticOperationSchema;
|
|
293
326
|
export declare var UpdateBrokerType$: StaticOperationSchema;
|
|
327
|
+
export declare var UpdateChannel$: StaticOperationSchema;
|
|
294
328
|
export declare var UpdateClusterConfiguration$: StaticOperationSchema;
|
|
295
329
|
export declare var UpdateClusterKafkaVersion$: StaticOperationSchema;
|
|
296
330
|
export declare var UpdateConfiguration$: StaticOperationSchema;
|
|
@@ -11,6 +11,10 @@ import {
|
|
|
11
11
|
BatchDisassociateScramSecretCommandInput,
|
|
12
12
|
BatchDisassociateScramSecretCommandOutput,
|
|
13
13
|
} from "./commands/BatchDisassociateScramSecretCommand";
|
|
14
|
+
import {
|
|
15
|
+
CreateChannelCommandInput,
|
|
16
|
+
CreateChannelCommandOutput,
|
|
17
|
+
} from "./commands/CreateChannelCommand";
|
|
14
18
|
import {
|
|
15
19
|
CreateClusterCommandInput,
|
|
16
20
|
CreateClusterCommandOutput,
|
|
@@ -32,6 +36,10 @@ import {
|
|
|
32
36
|
CreateVpcConnectionCommandInput,
|
|
33
37
|
CreateVpcConnectionCommandOutput,
|
|
34
38
|
} from "./commands/CreateVpcConnectionCommand";
|
|
39
|
+
import {
|
|
40
|
+
DeleteChannelCommandInput,
|
|
41
|
+
DeleteChannelCommandOutput,
|
|
42
|
+
} from "./commands/DeleteChannelCommand";
|
|
35
43
|
import {
|
|
36
44
|
DeleteClusterCommandInput,
|
|
37
45
|
DeleteClusterCommandOutput,
|
|
@@ -53,6 +61,10 @@ import {
|
|
|
53
61
|
DeleteVpcConnectionCommandInput,
|
|
54
62
|
DeleteVpcConnectionCommandOutput,
|
|
55
63
|
} from "./commands/DeleteVpcConnectionCommand";
|
|
64
|
+
import {
|
|
65
|
+
DescribeChannelCommandInput,
|
|
66
|
+
DescribeChannelCommandOutput,
|
|
67
|
+
} from "./commands/DescribeChannelCommand";
|
|
56
68
|
import {
|
|
57
69
|
DescribeClusterCommandInput,
|
|
58
70
|
DescribeClusterCommandOutput,
|
|
@@ -105,6 +117,10 @@ import {
|
|
|
105
117
|
GetCompatibleKafkaVersionsCommandInput,
|
|
106
118
|
GetCompatibleKafkaVersionsCommandOutput,
|
|
107
119
|
} from "./commands/GetCompatibleKafkaVersionsCommand";
|
|
120
|
+
import {
|
|
121
|
+
ListChannelsCommandInput,
|
|
122
|
+
ListChannelsCommandOutput,
|
|
123
|
+
} from "./commands/ListChannelsCommand";
|
|
108
124
|
import {
|
|
109
125
|
ListClientVpcConnectionsCommandInput,
|
|
110
126
|
ListClientVpcConnectionsCommandOutput,
|
|
@@ -184,6 +200,10 @@ import {
|
|
|
184
200
|
UpdateBrokerTypeCommandInput,
|
|
185
201
|
UpdateBrokerTypeCommandOutput,
|
|
186
202
|
} from "./commands/UpdateBrokerTypeCommand";
|
|
203
|
+
import {
|
|
204
|
+
UpdateChannelCommandInput,
|
|
205
|
+
UpdateChannelCommandOutput,
|
|
206
|
+
} from "./commands/UpdateChannelCommand";
|
|
187
207
|
import {
|
|
188
208
|
UpdateClusterConfigurationCommandInput,
|
|
189
209
|
UpdateClusterConfigurationCommandOutput,
|
|
@@ -249,6 +269,19 @@ export interface Kafka {
|
|
|
249
269
|
options: __HttpHandlerOptions,
|
|
250
270
|
cb: (err: any, data?: BatchDisassociateScramSecretCommandOutput) => void,
|
|
251
271
|
): void;
|
|
272
|
+
createChannel(
|
|
273
|
+
args: CreateChannelCommandInput,
|
|
274
|
+
options?: __HttpHandlerOptions,
|
|
275
|
+
): Promise<CreateChannelCommandOutput>;
|
|
276
|
+
createChannel(
|
|
277
|
+
args: CreateChannelCommandInput,
|
|
278
|
+
cb: (err: any, data?: CreateChannelCommandOutput) => void,
|
|
279
|
+
): void;
|
|
280
|
+
createChannel(
|
|
281
|
+
args: CreateChannelCommandInput,
|
|
282
|
+
options: __HttpHandlerOptions,
|
|
283
|
+
cb: (err: any, data?: CreateChannelCommandOutput) => void,
|
|
284
|
+
): void;
|
|
252
285
|
createCluster(
|
|
253
286
|
args: CreateClusterCommandInput,
|
|
254
287
|
options?: __HttpHandlerOptions,
|
|
@@ -327,6 +360,19 @@ export interface Kafka {
|
|
|
327
360
|
options: __HttpHandlerOptions,
|
|
328
361
|
cb: (err: any, data?: CreateVpcConnectionCommandOutput) => void,
|
|
329
362
|
): void;
|
|
363
|
+
deleteChannel(
|
|
364
|
+
args: DeleteChannelCommandInput,
|
|
365
|
+
options?: __HttpHandlerOptions,
|
|
366
|
+
): Promise<DeleteChannelCommandOutput>;
|
|
367
|
+
deleteChannel(
|
|
368
|
+
args: DeleteChannelCommandInput,
|
|
369
|
+
cb: (err: any, data?: DeleteChannelCommandOutput) => void,
|
|
370
|
+
): void;
|
|
371
|
+
deleteChannel(
|
|
372
|
+
args: DeleteChannelCommandInput,
|
|
373
|
+
options: __HttpHandlerOptions,
|
|
374
|
+
cb: (err: any, data?: DeleteChannelCommandOutput) => void,
|
|
375
|
+
): void;
|
|
330
376
|
deleteCluster(
|
|
331
377
|
args: DeleteClusterCommandInput,
|
|
332
378
|
options?: __HttpHandlerOptions,
|
|
@@ -405,6 +451,19 @@ export interface Kafka {
|
|
|
405
451
|
options: __HttpHandlerOptions,
|
|
406
452
|
cb: (err: any, data?: DeleteVpcConnectionCommandOutput) => void,
|
|
407
453
|
): void;
|
|
454
|
+
describeChannel(
|
|
455
|
+
args: DescribeChannelCommandInput,
|
|
456
|
+
options?: __HttpHandlerOptions,
|
|
457
|
+
): Promise<DescribeChannelCommandOutput>;
|
|
458
|
+
describeChannel(
|
|
459
|
+
args: DescribeChannelCommandInput,
|
|
460
|
+
cb: (err: any, data?: DescribeChannelCommandOutput) => void,
|
|
461
|
+
): void;
|
|
462
|
+
describeChannel(
|
|
463
|
+
args: DescribeChannelCommandInput,
|
|
464
|
+
options: __HttpHandlerOptions,
|
|
465
|
+
cb: (err: any, data?: DescribeChannelCommandOutput) => void,
|
|
466
|
+
): void;
|
|
408
467
|
describeCluster(
|
|
409
468
|
args: DescribeClusterCommandInput,
|
|
410
469
|
options?: __HttpHandlerOptions,
|
|
@@ -575,6 +634,19 @@ export interface Kafka {
|
|
|
575
634
|
options: __HttpHandlerOptions,
|
|
576
635
|
cb: (err: any, data?: GetCompatibleKafkaVersionsCommandOutput) => void,
|
|
577
636
|
): void;
|
|
637
|
+
listChannels(
|
|
638
|
+
args: ListChannelsCommandInput,
|
|
639
|
+
options?: __HttpHandlerOptions,
|
|
640
|
+
): Promise<ListChannelsCommandOutput>;
|
|
641
|
+
listChannels(
|
|
642
|
+
args: ListChannelsCommandInput,
|
|
643
|
+
cb: (err: any, data?: ListChannelsCommandOutput) => void,
|
|
644
|
+
): void;
|
|
645
|
+
listChannels(
|
|
646
|
+
args: ListChannelsCommandInput,
|
|
647
|
+
options: __HttpHandlerOptions,
|
|
648
|
+
cb: (err: any, data?: ListChannelsCommandOutput) => void,
|
|
649
|
+
): void;
|
|
578
650
|
listClientVpcConnections(
|
|
579
651
|
args: ListClientVpcConnectionsCommandInput,
|
|
580
652
|
options?: __HttpHandlerOptions,
|
|
@@ -867,6 +939,19 @@ export interface Kafka {
|
|
|
867
939
|
options: __HttpHandlerOptions,
|
|
868
940
|
cb: (err: any, data?: UpdateBrokerTypeCommandOutput) => void,
|
|
869
941
|
): void;
|
|
942
|
+
updateChannel(
|
|
943
|
+
args: UpdateChannelCommandInput,
|
|
944
|
+
options?: __HttpHandlerOptions,
|
|
945
|
+
): Promise<UpdateChannelCommandOutput>;
|
|
946
|
+
updateChannel(
|
|
947
|
+
args: UpdateChannelCommandInput,
|
|
948
|
+
cb: (err: any, data?: UpdateChannelCommandOutput) => void,
|
|
949
|
+
): void;
|
|
950
|
+
updateChannel(
|
|
951
|
+
args: UpdateChannelCommandInput,
|
|
952
|
+
options: __HttpHandlerOptions,
|
|
953
|
+
cb: (err: any, data?: UpdateChannelCommandOutput) => void,
|
|
954
|
+
): void;
|
|
870
955
|
updateClusterConfiguration(
|
|
871
956
|
args: UpdateClusterConfigurationCommandInput,
|
|
872
957
|
options?: __HttpHandlerOptions,
|
|
@@ -41,6 +41,10 @@ import {
|
|
|
41
41
|
BatchDisassociateScramSecretCommandInput,
|
|
42
42
|
BatchDisassociateScramSecretCommandOutput,
|
|
43
43
|
} from "./commands/BatchDisassociateScramSecretCommand";
|
|
44
|
+
import {
|
|
45
|
+
CreateChannelCommandInput,
|
|
46
|
+
CreateChannelCommandOutput,
|
|
47
|
+
} from "./commands/CreateChannelCommand";
|
|
44
48
|
import {
|
|
45
49
|
CreateClusterCommandInput,
|
|
46
50
|
CreateClusterCommandOutput,
|
|
@@ -62,6 +66,10 @@ import {
|
|
|
62
66
|
CreateVpcConnectionCommandInput,
|
|
63
67
|
CreateVpcConnectionCommandOutput,
|
|
64
68
|
} from "./commands/CreateVpcConnectionCommand";
|
|
69
|
+
import {
|
|
70
|
+
DeleteChannelCommandInput,
|
|
71
|
+
DeleteChannelCommandOutput,
|
|
72
|
+
} from "./commands/DeleteChannelCommand";
|
|
65
73
|
import {
|
|
66
74
|
DeleteClusterCommandInput,
|
|
67
75
|
DeleteClusterCommandOutput,
|
|
@@ -83,6 +91,10 @@ import {
|
|
|
83
91
|
DeleteVpcConnectionCommandInput,
|
|
84
92
|
DeleteVpcConnectionCommandOutput,
|
|
85
93
|
} from "./commands/DeleteVpcConnectionCommand";
|
|
94
|
+
import {
|
|
95
|
+
DescribeChannelCommandInput,
|
|
96
|
+
DescribeChannelCommandOutput,
|
|
97
|
+
} from "./commands/DescribeChannelCommand";
|
|
86
98
|
import {
|
|
87
99
|
DescribeClusterCommandInput,
|
|
88
100
|
DescribeClusterCommandOutput,
|
|
@@ -135,6 +147,10 @@ import {
|
|
|
135
147
|
GetCompatibleKafkaVersionsCommandInput,
|
|
136
148
|
GetCompatibleKafkaVersionsCommandOutput,
|
|
137
149
|
} from "./commands/GetCompatibleKafkaVersionsCommand";
|
|
150
|
+
import {
|
|
151
|
+
ListChannelsCommandInput,
|
|
152
|
+
ListChannelsCommandOutput,
|
|
153
|
+
} from "./commands/ListChannelsCommand";
|
|
138
154
|
import {
|
|
139
155
|
ListClientVpcConnectionsCommandInput,
|
|
140
156
|
ListClientVpcConnectionsCommandOutput,
|
|
@@ -214,6 +230,10 @@ import {
|
|
|
214
230
|
UpdateBrokerTypeCommandInput,
|
|
215
231
|
UpdateBrokerTypeCommandOutput,
|
|
216
232
|
} from "./commands/UpdateBrokerTypeCommand";
|
|
233
|
+
import {
|
|
234
|
+
UpdateChannelCommandInput,
|
|
235
|
+
UpdateChannelCommandOutput,
|
|
236
|
+
} from "./commands/UpdateChannelCommand";
|
|
217
237
|
import {
|
|
218
238
|
UpdateClusterConfigurationCommandInput,
|
|
219
239
|
UpdateClusterConfigurationCommandOutput,
|
|
@@ -261,18 +281,21 @@ export { __Client };
|
|
|
261
281
|
export type ServiceInputTypes =
|
|
262
282
|
| BatchAssociateScramSecretCommandInput
|
|
263
283
|
| BatchDisassociateScramSecretCommandInput
|
|
284
|
+
| CreateChannelCommandInput
|
|
264
285
|
| CreateClusterCommandInput
|
|
265
286
|
| CreateClusterV2CommandInput
|
|
266
287
|
| CreateConfigurationCommandInput
|
|
267
288
|
| CreateReplicatorCommandInput
|
|
268
289
|
| CreateTopicCommandInput
|
|
269
290
|
| CreateVpcConnectionCommandInput
|
|
291
|
+
| DeleteChannelCommandInput
|
|
270
292
|
| DeleteClusterCommandInput
|
|
271
293
|
| DeleteClusterPolicyCommandInput
|
|
272
294
|
| DeleteConfigurationCommandInput
|
|
273
295
|
| DeleteReplicatorCommandInput
|
|
274
296
|
| DeleteTopicCommandInput
|
|
275
297
|
| DeleteVpcConnectionCommandInput
|
|
298
|
+
| DescribeChannelCommandInput
|
|
276
299
|
| DescribeClusterCommandInput
|
|
277
300
|
| DescribeClusterOperationCommandInput
|
|
278
301
|
| DescribeClusterOperationV2CommandInput
|
|
@@ -286,6 +309,7 @@ export type ServiceInputTypes =
|
|
|
286
309
|
| GetBootstrapBrokersCommandInput
|
|
287
310
|
| GetClusterPolicyCommandInput
|
|
288
311
|
| GetCompatibleKafkaVersionsCommandInput
|
|
312
|
+
| ListChannelsCommandInput
|
|
289
313
|
| ListClientVpcConnectionsCommandInput
|
|
290
314
|
| ListClusterOperationsCommandInput
|
|
291
315
|
| ListClusterOperationsV2CommandInput
|
|
@@ -308,6 +332,7 @@ export type ServiceInputTypes =
|
|
|
308
332
|
| UpdateBrokerCountCommandInput
|
|
309
333
|
| UpdateBrokerStorageCommandInput
|
|
310
334
|
| UpdateBrokerTypeCommandInput
|
|
335
|
+
| UpdateChannelCommandInput
|
|
311
336
|
| UpdateClusterConfigurationCommandInput
|
|
312
337
|
| UpdateClusterKafkaVersionCommandInput
|
|
313
338
|
| UpdateConfigurationCommandInput
|
|
@@ -321,18 +346,21 @@ export type ServiceInputTypes =
|
|
|
321
346
|
export type ServiceOutputTypes =
|
|
322
347
|
| BatchAssociateScramSecretCommandOutput
|
|
323
348
|
| BatchDisassociateScramSecretCommandOutput
|
|
349
|
+
| CreateChannelCommandOutput
|
|
324
350
|
| CreateClusterCommandOutput
|
|
325
351
|
| CreateClusterV2CommandOutput
|
|
326
352
|
| CreateConfigurationCommandOutput
|
|
327
353
|
| CreateReplicatorCommandOutput
|
|
328
354
|
| CreateTopicCommandOutput
|
|
329
355
|
| CreateVpcConnectionCommandOutput
|
|
356
|
+
| DeleteChannelCommandOutput
|
|
330
357
|
| DeleteClusterCommandOutput
|
|
331
358
|
| DeleteClusterPolicyCommandOutput
|
|
332
359
|
| DeleteConfigurationCommandOutput
|
|
333
360
|
| DeleteReplicatorCommandOutput
|
|
334
361
|
| DeleteTopicCommandOutput
|
|
335
362
|
| DeleteVpcConnectionCommandOutput
|
|
363
|
+
| DescribeChannelCommandOutput
|
|
336
364
|
| DescribeClusterCommandOutput
|
|
337
365
|
| DescribeClusterOperationCommandOutput
|
|
338
366
|
| DescribeClusterOperationV2CommandOutput
|
|
@@ -346,6 +374,7 @@ export type ServiceOutputTypes =
|
|
|
346
374
|
| GetBootstrapBrokersCommandOutput
|
|
347
375
|
| GetClusterPolicyCommandOutput
|
|
348
376
|
| GetCompatibleKafkaVersionsCommandOutput
|
|
377
|
+
| ListChannelsCommandOutput
|
|
349
378
|
| ListClientVpcConnectionsCommandOutput
|
|
350
379
|
| ListClusterOperationsCommandOutput
|
|
351
380
|
| ListClusterOperationsV2CommandOutput
|
|
@@ -368,6 +397,7 @@ export type ServiceOutputTypes =
|
|
|
368
397
|
| UpdateBrokerCountCommandOutput
|
|
369
398
|
| UpdateBrokerStorageCommandOutput
|
|
370
399
|
| UpdateBrokerTypeCommandOutput
|
|
400
|
+
| UpdateChannelCommandOutput
|
|
371
401
|
| UpdateClusterConfigurationCommandOutput
|
|
372
402
|
| UpdateClusterKafkaVersionCommandOutput
|
|
373
403
|
| UpdateConfigurationCommandOutput
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
+
import { CreateChannelRequest, CreateChannelResponse } from "../models/models_0";
|
|
3
|
+
export { __MetadataBearer };
|
|
4
|
+
export interface CreateChannelCommandInput extends CreateChannelRequest {}
|
|
5
|
+
export interface CreateChannelCommandOutput extends CreateChannelResponse, __MetadataBearer {}
|
|
6
|
+
declare const CreateChannelCommand_base: {
|
|
7
|
+
new (
|
|
8
|
+
input: CreateChannelCommandInput,
|
|
9
|
+
): import("@smithy/core/client").CommandImpl<
|
|
10
|
+
CreateChannelCommandInput,
|
|
11
|
+
CreateChannelCommandOutput,
|
|
12
|
+
import("..").KafkaClientResolvedConfig,
|
|
13
|
+
import("..").ServiceInputTypes,
|
|
14
|
+
import("..").ServiceOutputTypes
|
|
15
|
+
>;
|
|
16
|
+
new (
|
|
17
|
+
input: CreateChannelCommandInput,
|
|
18
|
+
): import("@smithy/core/client").CommandImpl<
|
|
19
|
+
CreateChannelCommandInput,
|
|
20
|
+
CreateChannelCommandOutput,
|
|
21
|
+
import("..").KafkaClientResolvedConfig,
|
|
22
|
+
import("..").ServiceInputTypes,
|
|
23
|
+
import("..").ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
27
|
+
export declare class CreateChannelCommand extends CreateChannelCommand_base {
|
|
28
|
+
protected static __types: {
|
|
29
|
+
api: {
|
|
30
|
+
input: CreateChannelRequest;
|
|
31
|
+
output: CreateChannelResponse;
|
|
32
|
+
};
|
|
33
|
+
sdk: {
|
|
34
|
+
input: CreateChannelCommandInput;
|
|
35
|
+
output: CreateChannelCommandOutput;
|
|
36
|
+
};
|
|
37
|
+
};
|
|
38
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
+
import { DeleteChannelRequest, DeleteChannelResponse } from "../models/models_0";
|
|
3
|
+
export { __MetadataBearer };
|
|
4
|
+
export interface DeleteChannelCommandInput extends DeleteChannelRequest {}
|
|
5
|
+
export interface DeleteChannelCommandOutput extends DeleteChannelResponse, __MetadataBearer {}
|
|
6
|
+
declare const DeleteChannelCommand_base: {
|
|
7
|
+
new (
|
|
8
|
+
input: DeleteChannelCommandInput,
|
|
9
|
+
): import("@smithy/core/client").CommandImpl<
|
|
10
|
+
DeleteChannelCommandInput,
|
|
11
|
+
DeleteChannelCommandOutput,
|
|
12
|
+
import("..").KafkaClientResolvedConfig,
|
|
13
|
+
import("..").ServiceInputTypes,
|
|
14
|
+
import("..").ServiceOutputTypes
|
|
15
|
+
>;
|
|
16
|
+
new (
|
|
17
|
+
input: DeleteChannelCommandInput,
|
|
18
|
+
): import("@smithy/core/client").CommandImpl<
|
|
19
|
+
DeleteChannelCommandInput,
|
|
20
|
+
DeleteChannelCommandOutput,
|
|
21
|
+
import("..").KafkaClientResolvedConfig,
|
|
22
|
+
import("..").ServiceInputTypes,
|
|
23
|
+
import("..").ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
27
|
+
export declare class DeleteChannelCommand extends DeleteChannelCommand_base {
|
|
28
|
+
protected static __types: {
|
|
29
|
+
api: {
|
|
30
|
+
input: DeleteChannelRequest;
|
|
31
|
+
output: DeleteChannelResponse;
|
|
32
|
+
};
|
|
33
|
+
sdk: {
|
|
34
|
+
input: DeleteChannelCommandInput;
|
|
35
|
+
output: DeleteChannelCommandOutput;
|
|
36
|
+
};
|
|
37
|
+
};
|
|
38
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
+
import { DescribeChannelRequest, DescribeChannelResponse } from "../models/models_0";
|
|
3
|
+
export { __MetadataBearer };
|
|
4
|
+
export interface DescribeChannelCommandInput extends DescribeChannelRequest {}
|
|
5
|
+
export interface DescribeChannelCommandOutput extends DescribeChannelResponse, __MetadataBearer {}
|
|
6
|
+
declare const DescribeChannelCommand_base: {
|
|
7
|
+
new (
|
|
8
|
+
input: DescribeChannelCommandInput,
|
|
9
|
+
): import("@smithy/core/client").CommandImpl<
|
|
10
|
+
DescribeChannelCommandInput,
|
|
11
|
+
DescribeChannelCommandOutput,
|
|
12
|
+
import("..").KafkaClientResolvedConfig,
|
|
13
|
+
import("..").ServiceInputTypes,
|
|
14
|
+
import("..").ServiceOutputTypes
|
|
15
|
+
>;
|
|
16
|
+
new (
|
|
17
|
+
input: DescribeChannelCommandInput,
|
|
18
|
+
): import("@smithy/core/client").CommandImpl<
|
|
19
|
+
DescribeChannelCommandInput,
|
|
20
|
+
DescribeChannelCommandOutput,
|
|
21
|
+
import("..").KafkaClientResolvedConfig,
|
|
22
|
+
import("..").ServiceInputTypes,
|
|
23
|
+
import("..").ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
27
|
+
export declare class DescribeChannelCommand extends DescribeChannelCommand_base {
|
|
28
|
+
protected static __types: {
|
|
29
|
+
api: {
|
|
30
|
+
input: DescribeChannelRequest;
|
|
31
|
+
output: DescribeChannelResponse;
|
|
32
|
+
};
|
|
33
|
+
sdk: {
|
|
34
|
+
input: DescribeChannelCommandInput;
|
|
35
|
+
output: DescribeChannelCommandOutput;
|
|
36
|
+
};
|
|
37
|
+
};
|
|
38
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
+
import { ListChannelsRequest, ListChannelsResponse } from "../models/models_0";
|
|
3
|
+
export { __MetadataBearer };
|
|
4
|
+
export interface ListChannelsCommandInput extends ListChannelsRequest {}
|
|
5
|
+
export interface ListChannelsCommandOutput extends ListChannelsResponse, __MetadataBearer {}
|
|
6
|
+
declare const ListChannelsCommand_base: {
|
|
7
|
+
new (
|
|
8
|
+
input: ListChannelsCommandInput,
|
|
9
|
+
): import("@smithy/core/client").CommandImpl<
|
|
10
|
+
ListChannelsCommandInput,
|
|
11
|
+
ListChannelsCommandOutput,
|
|
12
|
+
import("..").KafkaClientResolvedConfig,
|
|
13
|
+
import("..").ServiceInputTypes,
|
|
14
|
+
import("..").ServiceOutputTypes
|
|
15
|
+
>;
|
|
16
|
+
new (
|
|
17
|
+
input: ListChannelsCommandInput,
|
|
18
|
+
): import("@smithy/core/client").CommandImpl<
|
|
19
|
+
ListChannelsCommandInput,
|
|
20
|
+
ListChannelsCommandOutput,
|
|
21
|
+
import("..").KafkaClientResolvedConfig,
|
|
22
|
+
import("..").ServiceInputTypes,
|
|
23
|
+
import("..").ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
27
|
+
export declare class ListChannelsCommand extends ListChannelsCommand_base {
|
|
28
|
+
protected static __types: {
|
|
29
|
+
api: {
|
|
30
|
+
input: ListChannelsRequest;
|
|
31
|
+
output: ListChannelsResponse;
|
|
32
|
+
};
|
|
33
|
+
sdk: {
|
|
34
|
+
input: ListChannelsCommandInput;
|
|
35
|
+
output: ListChannelsCommandOutput;
|
|
36
|
+
};
|
|
37
|
+
};
|
|
38
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
+
import { UpdateChannelRequest, UpdateChannelResponse } from "../models/models_0";
|
|
3
|
+
export { __MetadataBearer };
|
|
4
|
+
export interface UpdateChannelCommandInput extends UpdateChannelRequest {}
|
|
5
|
+
export interface UpdateChannelCommandOutput extends UpdateChannelResponse, __MetadataBearer {}
|
|
6
|
+
declare const UpdateChannelCommand_base: {
|
|
7
|
+
new (
|
|
8
|
+
input: UpdateChannelCommandInput,
|
|
9
|
+
): import("@smithy/core/client").CommandImpl<
|
|
10
|
+
UpdateChannelCommandInput,
|
|
11
|
+
UpdateChannelCommandOutput,
|
|
12
|
+
import("..").KafkaClientResolvedConfig,
|
|
13
|
+
import("..").ServiceInputTypes,
|
|
14
|
+
import("..").ServiceOutputTypes
|
|
15
|
+
>;
|
|
16
|
+
new (
|
|
17
|
+
input: UpdateChannelCommandInput,
|
|
18
|
+
): import("@smithy/core/client").CommandImpl<
|
|
19
|
+
UpdateChannelCommandInput,
|
|
20
|
+
UpdateChannelCommandOutput,
|
|
21
|
+
import("..").KafkaClientResolvedConfig,
|
|
22
|
+
import("..").ServiceInputTypes,
|
|
23
|
+
import("..").ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
27
|
+
export declare class UpdateChannelCommand extends UpdateChannelCommand_base {
|
|
28
|
+
protected static __types: {
|
|
29
|
+
api: {
|
|
30
|
+
input: UpdateChannelRequest;
|
|
31
|
+
output: UpdateChannelResponse;
|
|
32
|
+
};
|
|
33
|
+
sdk: {
|
|
34
|
+
input: UpdateChannelCommandInput;
|
|
35
|
+
output: UpdateChannelCommandOutput;
|
|
36
|
+
};
|
|
37
|
+
};
|
|
38
|
+
}
|
|
@@ -1,17 +1,20 @@
|
|
|
1
1
|
export * from "./BatchAssociateScramSecretCommand";
|
|
2
2
|
export * from "./BatchDisassociateScramSecretCommand";
|
|
3
|
+
export * from "./CreateChannelCommand";
|
|
3
4
|
export * from "./CreateClusterCommand";
|
|
4
5
|
export * from "./CreateClusterV2Command";
|
|
5
6
|
export * from "./CreateConfigurationCommand";
|
|
6
7
|
export * from "./CreateReplicatorCommand";
|
|
7
8
|
export * from "./CreateTopicCommand";
|
|
8
9
|
export * from "./CreateVpcConnectionCommand";
|
|
10
|
+
export * from "./DeleteChannelCommand";
|
|
9
11
|
export * from "./DeleteClusterCommand";
|
|
10
12
|
export * from "./DeleteClusterPolicyCommand";
|
|
11
13
|
export * from "./DeleteConfigurationCommand";
|
|
12
14
|
export * from "./DeleteReplicatorCommand";
|
|
13
15
|
export * from "./DeleteTopicCommand";
|
|
14
16
|
export * from "./DeleteVpcConnectionCommand";
|
|
17
|
+
export * from "./DescribeChannelCommand";
|
|
15
18
|
export * from "./DescribeClusterCommand";
|
|
16
19
|
export * from "./DescribeClusterOperationCommand";
|
|
17
20
|
export * from "./DescribeClusterOperationV2Command";
|
|
@@ -25,6 +28,7 @@ export * from "./DescribeVpcConnectionCommand";
|
|
|
25
28
|
export * from "./GetBootstrapBrokersCommand";
|
|
26
29
|
export * from "./GetClusterPolicyCommand";
|
|
27
30
|
export * from "./GetCompatibleKafkaVersionsCommand";
|
|
31
|
+
export * from "./ListChannelsCommand";
|
|
28
32
|
export * from "./ListClientVpcConnectionsCommand";
|
|
29
33
|
export * from "./ListClusterOperationsCommand";
|
|
30
34
|
export * from "./ListClusterOperationsV2Command";
|
|
@@ -47,6 +51,7 @@ export * from "./UntagResourceCommand";
|
|
|
47
51
|
export * from "./UpdateBrokerCountCommand";
|
|
48
52
|
export * from "./UpdateBrokerStorageCommand";
|
|
49
53
|
export * from "./UpdateBrokerTypeCommand";
|
|
54
|
+
export * from "./UpdateChannelCommand";
|
|
50
55
|
export * from "./UpdateClusterConfigurationCommand";
|
|
51
56
|
export * from "./UpdateClusterKafkaVersionCommand";
|
|
52
57
|
export * from "./UpdateConfigurationCommand";
|