@aws-sdk/client-kafka 3.41.0 → 3.45.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/CHANGELOG.md +41 -0
- package/dist-cjs/Kafka.js +60 -0
- package/dist-cjs/commands/CreateClusterV2Command.js +36 -0
- package/dist-cjs/commands/DescribeClusterV2Command.js +36 -0
- package/dist-cjs/commands/ListClustersV2Command.js +36 -0
- package/dist-cjs/commands/UpdateConnectivityCommand.js +36 -0
- package/dist-cjs/commands/index.js +4 -0
- package/dist-cjs/endpoints.js +1 -0
- package/dist-cjs/models/models_0.js +156 -43
- package/dist-cjs/pagination/ListClustersV2Paginator.js +35 -0
- package/dist-cjs/pagination/index.js +1 -0
- package/dist-cjs/protocols/Aws_restJson1.js +769 -52
- package/dist-es/Kafka.js +60 -0
- package/dist-es/commands/CreateClusterV2Command.js +39 -0
- package/dist-es/commands/DescribeClusterV2Command.js +39 -0
- package/dist-es/commands/ListClustersV2Command.js +39 -0
- package/dist-es/commands/UpdateConnectivityCommand.js +39 -0
- package/dist-es/commands/index.js +4 -0
- package/dist-es/endpoints.js +1 -0
- package/dist-es/models/models_0.js +108 -31
- package/dist-es/pagination/ListClustersV2Paginator.js +74 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +772 -17
- package/dist-types/Kafka.d.ts +29 -1
- package/dist-types/KafkaClient.d.ts +6 -2
- package/dist-types/commands/CreateClusterV2Command.d.ts +35 -0
- package/dist-types/commands/DescribeClusterV2Command.d.ts +35 -0
- package/dist-types/commands/ListClustersV2Command.d.ts +35 -0
- package/dist-types/commands/ListKafkaVersionsCommand.d.ts +1 -1
- package/dist-types/commands/UpdateConnectivityCommand.d.ts +35 -0
- package/dist-types/commands/index.d.ts +4 -0
- package/dist-types/models/models_0.d.ts +538 -87
- package/dist-types/pagination/ListClustersV2Paginator.d.ts +4 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +12 -0
- package/dist-types/ts3.4/Kafka.d.ts +20 -0
- package/dist-types/ts3.4/KafkaClient.d.ts +6 -2
- package/dist-types/ts3.4/commands/CreateClusterV2Command.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeClusterV2Command.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListClustersV2Command.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateConnectivityCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +307 -48
- package/dist-types/ts3.4/pagination/ListClustersV2Paginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +12 -0
- package/package.json +5 -5
|
@@ -10,10 +10,32 @@ export declare namespace BrokerEBSVolumeInfo {
|
|
|
10
10
|
|
|
11
11
|
const filterSensitiveLog: (obj: BrokerEBSVolumeInfo) => any;
|
|
12
12
|
}
|
|
13
|
+
export declare enum ClusterType {
|
|
14
|
+
PROVISIONED = "PROVISIONED",
|
|
15
|
+
SERVERLESS = "SERVERLESS"
|
|
16
|
+
}
|
|
13
17
|
export declare enum BrokerAZDistribution {
|
|
14
18
|
DEFAULT = "DEFAULT"
|
|
15
19
|
}
|
|
16
20
|
|
|
21
|
+
export interface PublicAccess {
|
|
22
|
+
|
|
23
|
+
Type?: string;
|
|
24
|
+
}
|
|
25
|
+
export declare namespace PublicAccess {
|
|
26
|
+
|
|
27
|
+
const filterSensitiveLog: (obj: PublicAccess) => any;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
export interface ConnectivityInfo {
|
|
31
|
+
|
|
32
|
+
PublicAccess?: PublicAccess;
|
|
33
|
+
}
|
|
34
|
+
export declare namespace ConnectivityInfo {
|
|
35
|
+
|
|
36
|
+
const filterSensitiveLog: (obj: ConnectivityInfo) => any;
|
|
37
|
+
}
|
|
38
|
+
|
|
17
39
|
export interface EBSStorageInfo {
|
|
18
40
|
|
|
19
41
|
VolumeSize?: number;
|
|
@@ -43,6 +65,8 @@ export interface BrokerNodeGroupInfo {
|
|
|
43
65
|
SecurityGroups?: string[];
|
|
44
66
|
|
|
45
67
|
StorageInfo?: StorageInfo;
|
|
68
|
+
|
|
69
|
+
ConnectivityInfo?: ConnectivityInfo;
|
|
46
70
|
}
|
|
47
71
|
export declare namespace BrokerNodeGroupInfo {
|
|
48
72
|
|
|
@@ -206,42 +230,109 @@ export declare namespace LoggingInfo {
|
|
|
206
230
|
const filterSensitiveLog: (obj: LoggingInfo) => any;
|
|
207
231
|
}
|
|
208
232
|
|
|
209
|
-
export interface
|
|
233
|
+
export interface JmxExporterInfo {
|
|
210
234
|
|
|
211
235
|
EnabledInBroker: boolean | undefined;
|
|
212
236
|
}
|
|
213
|
-
export declare namespace
|
|
237
|
+
export declare namespace JmxExporterInfo {
|
|
214
238
|
|
|
215
|
-
const filterSensitiveLog: (obj:
|
|
239
|
+
const filterSensitiveLog: (obj: JmxExporterInfo) => any;
|
|
216
240
|
}
|
|
217
241
|
|
|
218
|
-
export interface
|
|
242
|
+
export interface NodeExporterInfo {
|
|
219
243
|
|
|
220
244
|
EnabledInBroker: boolean | undefined;
|
|
221
245
|
}
|
|
222
|
-
export declare namespace
|
|
246
|
+
export declare namespace NodeExporterInfo {
|
|
223
247
|
|
|
224
|
-
const filterSensitiveLog: (obj:
|
|
248
|
+
const filterSensitiveLog: (obj: NodeExporterInfo) => any;
|
|
225
249
|
}
|
|
226
250
|
|
|
227
|
-
export interface
|
|
251
|
+
export interface PrometheusInfo {
|
|
228
252
|
|
|
229
|
-
JmxExporter?:
|
|
253
|
+
JmxExporter?: JmxExporterInfo;
|
|
230
254
|
|
|
231
|
-
NodeExporter?:
|
|
255
|
+
NodeExporter?: NodeExporterInfo;
|
|
232
256
|
}
|
|
233
|
-
export declare namespace
|
|
257
|
+
export declare namespace PrometheusInfo {
|
|
234
258
|
|
|
235
|
-
const filterSensitiveLog: (obj:
|
|
259
|
+
const filterSensitiveLog: (obj: PrometheusInfo) => any;
|
|
236
260
|
}
|
|
237
261
|
|
|
238
|
-
export interface
|
|
262
|
+
export interface OpenMonitoringInfo {
|
|
239
263
|
|
|
240
|
-
Prometheus:
|
|
264
|
+
Prometheus: PrometheusInfo | undefined;
|
|
241
265
|
}
|
|
242
|
-
export declare namespace
|
|
266
|
+
export declare namespace OpenMonitoringInfo {
|
|
243
267
|
|
|
244
|
-
const filterSensitiveLog: (obj:
|
|
268
|
+
const filterSensitiveLog: (obj: OpenMonitoringInfo) => any;
|
|
269
|
+
}
|
|
270
|
+
|
|
271
|
+
export interface Provisioned {
|
|
272
|
+
|
|
273
|
+
BrokerNodeGroupInfo: BrokerNodeGroupInfo | undefined;
|
|
274
|
+
|
|
275
|
+
CurrentBrokerSoftwareInfo?: BrokerSoftwareInfo;
|
|
276
|
+
|
|
277
|
+
ClientAuthentication?: ClientAuthentication;
|
|
278
|
+
|
|
279
|
+
EncryptionInfo?: EncryptionInfo;
|
|
280
|
+
|
|
281
|
+
EnhancedMonitoring?: EnhancedMonitoring | string;
|
|
282
|
+
|
|
283
|
+
OpenMonitoring?: OpenMonitoringInfo;
|
|
284
|
+
|
|
285
|
+
LoggingInfo?: LoggingInfo;
|
|
286
|
+
|
|
287
|
+
NumberOfBrokerNodes: number | undefined;
|
|
288
|
+
|
|
289
|
+
ZookeeperConnectString?: string;
|
|
290
|
+
|
|
291
|
+
ZookeeperConnectStringTls?: string;
|
|
292
|
+
}
|
|
293
|
+
export declare namespace Provisioned {
|
|
294
|
+
|
|
295
|
+
const filterSensitiveLog: (obj: Provisioned) => any;
|
|
296
|
+
}
|
|
297
|
+
|
|
298
|
+
export interface ServerlessSasl {
|
|
299
|
+
|
|
300
|
+
Iam?: Iam;
|
|
301
|
+
}
|
|
302
|
+
export declare namespace ServerlessSasl {
|
|
303
|
+
|
|
304
|
+
const filterSensitiveLog: (obj: ServerlessSasl) => any;
|
|
305
|
+
}
|
|
306
|
+
|
|
307
|
+
export interface ServerlessClientAuthentication {
|
|
308
|
+
|
|
309
|
+
Sasl?: ServerlessSasl;
|
|
310
|
+
}
|
|
311
|
+
export declare namespace ServerlessClientAuthentication {
|
|
312
|
+
|
|
313
|
+
const filterSensitiveLog: (obj: ServerlessClientAuthentication) => any;
|
|
314
|
+
}
|
|
315
|
+
|
|
316
|
+
export interface VpcConfig {
|
|
317
|
+
|
|
318
|
+
SubnetIds: string[] | undefined;
|
|
319
|
+
|
|
320
|
+
SecurityGroupIds?: string[];
|
|
321
|
+
}
|
|
322
|
+
export declare namespace VpcConfig {
|
|
323
|
+
|
|
324
|
+
const filterSensitiveLog: (obj: VpcConfig) => any;
|
|
325
|
+
}
|
|
326
|
+
|
|
327
|
+
export interface Serverless {
|
|
328
|
+
|
|
329
|
+
VpcConfigs: VpcConfig[] | undefined;
|
|
330
|
+
|
|
331
|
+
ClientAuthentication?: ServerlessClientAuthentication;
|
|
332
|
+
}
|
|
333
|
+
export declare namespace Serverless {
|
|
334
|
+
|
|
335
|
+
const filterSensitiveLog: (obj: Serverless) => any;
|
|
245
336
|
}
|
|
246
337
|
export declare enum ClusterState {
|
|
247
338
|
ACTIVE = "ACTIVE",
|
|
@@ -262,6 +353,75 @@ export declare namespace StateInfo {
|
|
|
262
353
|
const filterSensitiveLog: (obj: StateInfo) => any;
|
|
263
354
|
}
|
|
264
355
|
|
|
356
|
+
export interface Cluster {
|
|
357
|
+
|
|
358
|
+
ActiveOperationArn?: string;
|
|
359
|
+
|
|
360
|
+
ClusterType?: ClusterType | string;
|
|
361
|
+
|
|
362
|
+
ClusterArn?: string;
|
|
363
|
+
|
|
364
|
+
ClusterName?: string;
|
|
365
|
+
|
|
366
|
+
CreationTime?: Date;
|
|
367
|
+
|
|
368
|
+
CurrentVersion?: string;
|
|
369
|
+
|
|
370
|
+
State?: ClusterState | string;
|
|
371
|
+
|
|
372
|
+
StateInfo?: StateInfo;
|
|
373
|
+
|
|
374
|
+
Tags?: {
|
|
375
|
+
[key: string]: string;
|
|
376
|
+
};
|
|
377
|
+
|
|
378
|
+
Provisioned?: Provisioned;
|
|
379
|
+
|
|
380
|
+
Serverless?: Serverless;
|
|
381
|
+
}
|
|
382
|
+
export declare namespace Cluster {
|
|
383
|
+
|
|
384
|
+
const filterSensitiveLog: (obj: Cluster) => any;
|
|
385
|
+
}
|
|
386
|
+
|
|
387
|
+
export interface JmxExporter {
|
|
388
|
+
|
|
389
|
+
EnabledInBroker: boolean | undefined;
|
|
390
|
+
}
|
|
391
|
+
export declare namespace JmxExporter {
|
|
392
|
+
|
|
393
|
+
const filterSensitiveLog: (obj: JmxExporter) => any;
|
|
394
|
+
}
|
|
395
|
+
|
|
396
|
+
export interface NodeExporter {
|
|
397
|
+
|
|
398
|
+
EnabledInBroker: boolean | undefined;
|
|
399
|
+
}
|
|
400
|
+
export declare namespace NodeExporter {
|
|
401
|
+
|
|
402
|
+
const filterSensitiveLog: (obj: NodeExporter) => any;
|
|
403
|
+
}
|
|
404
|
+
|
|
405
|
+
export interface Prometheus {
|
|
406
|
+
|
|
407
|
+
JmxExporter?: JmxExporter;
|
|
408
|
+
|
|
409
|
+
NodeExporter?: NodeExporter;
|
|
410
|
+
}
|
|
411
|
+
export declare namespace Prometheus {
|
|
412
|
+
|
|
413
|
+
const filterSensitiveLog: (obj: Prometheus) => any;
|
|
414
|
+
}
|
|
415
|
+
|
|
416
|
+
export interface OpenMonitoring {
|
|
417
|
+
|
|
418
|
+
Prometheus: Prometheus | undefined;
|
|
419
|
+
}
|
|
420
|
+
export declare namespace OpenMonitoring {
|
|
421
|
+
|
|
422
|
+
const filterSensitiveLog: (obj: OpenMonitoring) => any;
|
|
423
|
+
}
|
|
424
|
+
|
|
265
425
|
export interface ClusterInfo {
|
|
266
426
|
|
|
267
427
|
ActiveOperationArn?: string;
|
|
@@ -368,6 +528,8 @@ export interface MutableClusterInfo {
|
|
|
368
528
|
ClientAuthentication?: ClientAuthentication;
|
|
369
529
|
|
|
370
530
|
EncryptionInfo?: EncryptionInfo;
|
|
531
|
+
|
|
532
|
+
ConnectivityInfo?: ConnectivityInfo;
|
|
371
533
|
}
|
|
372
534
|
export declare namespace MutableClusterInfo {
|
|
373
535
|
|
|
@@ -681,52 +843,54 @@ export declare namespace ConflictException {
|
|
|
681
843
|
|
|
682
844
|
const filterSensitiveLog: (obj: ConflictException) => any;
|
|
683
845
|
}
|
|
684
|
-
|
|
685
|
-
export interface JmxExporterInfo {
|
|
846
|
+
export interface CreateClusterRequest {
|
|
686
847
|
|
|
687
|
-
|
|
688
|
-
}
|
|
689
|
-
export declare namespace JmxExporterInfo {
|
|
848
|
+
BrokerNodeGroupInfo: BrokerNodeGroupInfo | undefined;
|
|
690
849
|
|
|
691
|
-
|
|
692
|
-
}
|
|
693
|
-
|
|
694
|
-
export interface NodeExporterInfo {
|
|
850
|
+
ClientAuthentication?: ClientAuthentication;
|
|
695
851
|
|
|
696
|
-
|
|
697
|
-
}
|
|
698
|
-
export declare namespace NodeExporterInfo {
|
|
852
|
+
ClusterName: string | undefined;
|
|
699
853
|
|
|
700
|
-
|
|
701
|
-
}
|
|
702
|
-
|
|
703
|
-
export interface PrometheusInfo {
|
|
854
|
+
ConfigurationInfo?: ConfigurationInfo;
|
|
704
855
|
|
|
705
|
-
|
|
856
|
+
EncryptionInfo?: EncryptionInfo;
|
|
706
857
|
|
|
707
|
-
|
|
858
|
+
EnhancedMonitoring?: EnhancedMonitoring | string;
|
|
859
|
+
|
|
860
|
+
OpenMonitoring?: OpenMonitoringInfo;
|
|
861
|
+
|
|
862
|
+
KafkaVersion: string | undefined;
|
|
863
|
+
LoggingInfo?: LoggingInfo;
|
|
864
|
+
|
|
865
|
+
NumberOfBrokerNodes: number | undefined;
|
|
866
|
+
|
|
867
|
+
Tags?: {
|
|
868
|
+
[key: string]: string;
|
|
869
|
+
};
|
|
708
870
|
}
|
|
709
|
-
export declare namespace
|
|
871
|
+
export declare namespace CreateClusterRequest {
|
|
710
872
|
|
|
711
|
-
const filterSensitiveLog: (obj:
|
|
873
|
+
const filterSensitiveLog: (obj: CreateClusterRequest) => any;
|
|
712
874
|
}
|
|
713
|
-
|
|
714
|
-
export interface OpenMonitoringInfo {
|
|
875
|
+
export interface CreateClusterResponse {
|
|
715
876
|
|
|
716
|
-
|
|
877
|
+
ClusterArn?: string;
|
|
878
|
+
|
|
879
|
+
ClusterName?: string;
|
|
880
|
+
|
|
881
|
+
State?: ClusterState | string;
|
|
717
882
|
}
|
|
718
|
-
export declare namespace
|
|
883
|
+
export declare namespace CreateClusterResponse {
|
|
719
884
|
|
|
720
|
-
const filterSensitiveLog: (obj:
|
|
885
|
+
const filterSensitiveLog: (obj: CreateClusterResponse) => any;
|
|
721
886
|
}
|
|
722
|
-
|
|
887
|
+
|
|
888
|
+
export interface ProvisionedRequest {
|
|
723
889
|
|
|
724
890
|
BrokerNodeGroupInfo: BrokerNodeGroupInfo | undefined;
|
|
725
891
|
|
|
726
892
|
ClientAuthentication?: ClientAuthentication;
|
|
727
893
|
|
|
728
|
-
ClusterName: string | undefined;
|
|
729
|
-
|
|
730
894
|
ConfigurationInfo?: ConfigurationInfo;
|
|
731
895
|
|
|
732
896
|
EncryptionInfo?: EncryptionInfo;
|
|
@@ -736,29 +900,55 @@ export interface CreateClusterRequest {
|
|
|
736
900
|
OpenMonitoring?: OpenMonitoringInfo;
|
|
737
901
|
|
|
738
902
|
KafkaVersion: string | undefined;
|
|
903
|
+
|
|
739
904
|
LoggingInfo?: LoggingInfo;
|
|
740
905
|
|
|
741
906
|
NumberOfBrokerNodes: number | undefined;
|
|
907
|
+
}
|
|
908
|
+
export declare namespace ProvisionedRequest {
|
|
909
|
+
|
|
910
|
+
const filterSensitiveLog: (obj: ProvisionedRequest) => any;
|
|
911
|
+
}
|
|
912
|
+
|
|
913
|
+
export interface ServerlessRequest {
|
|
914
|
+
|
|
915
|
+
VpcConfigs: VpcConfig[] | undefined;
|
|
916
|
+
|
|
917
|
+
ClientAuthentication?: ServerlessClientAuthentication;
|
|
918
|
+
}
|
|
919
|
+
export declare namespace ServerlessRequest {
|
|
920
|
+
|
|
921
|
+
const filterSensitiveLog: (obj: ServerlessRequest) => any;
|
|
922
|
+
}
|
|
923
|
+
export interface CreateClusterV2Request {
|
|
924
|
+
|
|
925
|
+
ClusterName: string | undefined;
|
|
742
926
|
|
|
743
927
|
Tags?: {
|
|
744
928
|
[key: string]: string;
|
|
745
929
|
};
|
|
930
|
+
|
|
931
|
+
Provisioned?: ProvisionedRequest;
|
|
932
|
+
|
|
933
|
+
Serverless?: ServerlessRequest;
|
|
746
934
|
}
|
|
747
|
-
export declare namespace
|
|
935
|
+
export declare namespace CreateClusterV2Request {
|
|
748
936
|
|
|
749
|
-
const filterSensitiveLog: (obj:
|
|
937
|
+
const filterSensitiveLog: (obj: CreateClusterV2Request) => any;
|
|
750
938
|
}
|
|
751
|
-
export interface
|
|
939
|
+
export interface CreateClusterV2Response {
|
|
752
940
|
|
|
753
941
|
ClusterArn?: string;
|
|
754
942
|
|
|
755
943
|
ClusterName?: string;
|
|
756
944
|
|
|
757
945
|
State?: ClusterState | string;
|
|
946
|
+
|
|
947
|
+
ClusterType?: ClusterType | string;
|
|
758
948
|
}
|
|
759
|
-
export declare namespace
|
|
949
|
+
export declare namespace CreateClusterV2Response {
|
|
760
950
|
|
|
761
|
-
const filterSensitiveLog: (obj:
|
|
951
|
+
const filterSensitiveLog: (obj: CreateClusterV2Response) => any;
|
|
762
952
|
}
|
|
763
953
|
export interface CreateConfigurationRequest {
|
|
764
954
|
|
|
@@ -860,6 +1050,22 @@ export declare namespace DescribeClusterOperationResponse {
|
|
|
860
1050
|
|
|
861
1051
|
const filterSensitiveLog: (obj: DescribeClusterOperationResponse) => any;
|
|
862
1052
|
}
|
|
1053
|
+
export interface DescribeClusterV2Request {
|
|
1054
|
+
|
|
1055
|
+
ClusterArn: string | undefined;
|
|
1056
|
+
}
|
|
1057
|
+
export declare namespace DescribeClusterV2Request {
|
|
1058
|
+
|
|
1059
|
+
const filterSensitiveLog: (obj: DescribeClusterV2Request) => any;
|
|
1060
|
+
}
|
|
1061
|
+
export interface DescribeClusterV2Response {
|
|
1062
|
+
|
|
1063
|
+
ClusterInfo?: Cluster;
|
|
1064
|
+
}
|
|
1065
|
+
export declare namespace DescribeClusterV2Response {
|
|
1066
|
+
|
|
1067
|
+
const filterSensitiveLog: (obj: DescribeClusterV2Response) => any;
|
|
1068
|
+
}
|
|
863
1069
|
export interface DescribeConfigurationRequest {
|
|
864
1070
|
|
|
865
1071
|
Arn: string | undefined;
|
|
@@ -931,6 +1137,12 @@ export interface GetBootstrapBrokersResponse {
|
|
|
931
1137
|
BootstrapBrokerStringSaslScram?: string;
|
|
932
1138
|
|
|
933
1139
|
BootstrapBrokerStringSaslIam?: string;
|
|
1140
|
+
|
|
1141
|
+
BootstrapBrokerStringPublicTls?: string;
|
|
1142
|
+
|
|
1143
|
+
BootstrapBrokerStringPublicSaslScram?: string;
|
|
1144
|
+
|
|
1145
|
+
BootstrapBrokerStringPublicSaslIam?: string;
|
|
934
1146
|
}
|
|
935
1147
|
export declare namespace GetBootstrapBrokersResponse {
|
|
936
1148
|
|
|
@@ -996,6 +1208,30 @@ export declare namespace ListClustersResponse {
|
|
|
996
1208
|
|
|
997
1209
|
const filterSensitiveLog: (obj: ListClustersResponse) => any;
|
|
998
1210
|
}
|
|
1211
|
+
export interface ListClustersV2Request {
|
|
1212
|
+
|
|
1213
|
+
ClusterNameFilter?: string;
|
|
1214
|
+
|
|
1215
|
+
ClusterTypeFilter?: string;
|
|
1216
|
+
|
|
1217
|
+
MaxResults?: number;
|
|
1218
|
+
|
|
1219
|
+
NextToken?: string;
|
|
1220
|
+
}
|
|
1221
|
+
export declare namespace ListClustersV2Request {
|
|
1222
|
+
|
|
1223
|
+
const filterSensitiveLog: (obj: ListClustersV2Request) => any;
|
|
1224
|
+
}
|
|
1225
|
+
export interface ListClustersV2Response {
|
|
1226
|
+
|
|
1227
|
+
ClusterInfoList?: Cluster[];
|
|
1228
|
+
|
|
1229
|
+
NextToken?: string;
|
|
1230
|
+
}
|
|
1231
|
+
export declare namespace ListClustersV2Response {
|
|
1232
|
+
|
|
1233
|
+
const filterSensitiveLog: (obj: ListClustersV2Response) => any;
|
|
1234
|
+
}
|
|
999
1235
|
export interface ListConfigurationRevisionsRequest {
|
|
1000
1236
|
|
|
1001
1237
|
Arn: string | undefined;
|
|
@@ -1296,6 +1532,29 @@ export declare namespace UpdateConfigurationResponse {
|
|
|
1296
1532
|
const filterSensitiveLog: (obj: UpdateConfigurationResponse) => any;
|
|
1297
1533
|
}
|
|
1298
1534
|
|
|
1535
|
+
export interface UpdateConnectivityRequest {
|
|
1536
|
+
|
|
1537
|
+
ClusterArn: string | undefined;
|
|
1538
|
+
|
|
1539
|
+
ConnectivityInfo: ConnectivityInfo | undefined;
|
|
1540
|
+
|
|
1541
|
+
CurrentVersion: string | undefined;
|
|
1542
|
+
}
|
|
1543
|
+
export declare namespace UpdateConnectivityRequest {
|
|
1544
|
+
|
|
1545
|
+
const filterSensitiveLog: (obj: UpdateConnectivityRequest) => any;
|
|
1546
|
+
}
|
|
1547
|
+
export interface UpdateConnectivityResponse {
|
|
1548
|
+
|
|
1549
|
+
ClusterArn?: string;
|
|
1550
|
+
|
|
1551
|
+
ClusterOperationArn?: string;
|
|
1552
|
+
}
|
|
1553
|
+
export declare namespace UpdateConnectivityResponse {
|
|
1554
|
+
|
|
1555
|
+
const filterSensitiveLog: (obj: UpdateConnectivityResponse) => any;
|
|
1556
|
+
}
|
|
1557
|
+
|
|
1299
1558
|
export interface UpdateMonitoringRequest {
|
|
1300
1559
|
|
|
1301
1560
|
ClusterArn: string | undefined;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import { ListClustersV2CommandInput, ListClustersV2CommandOutput } from "../commands/ListClustersV2Command";
|
|
3
|
+
import { KafkaPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
export declare function paginateListClustersV2(config: KafkaPaginationConfiguration, input: ListClustersV2CommandInput, ...additionalArguments: any): Paginator<ListClustersV2CommandOutput>;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export * from "./Interfaces";
|
|
2
2
|
export * from "./ListClusterOperationsPaginator";
|
|
3
3
|
export * from "./ListClustersPaginator";
|
|
4
|
+
export * from "./ListClustersV2Paginator";
|
|
4
5
|
export * from "./ListConfigurationRevisionsPaginator";
|
|
5
6
|
export * from "./ListConfigurationsPaginator";
|
|
6
7
|
export * from "./ListKafkaVersionsPaginator";
|
|
@@ -3,17 +3,20 @@ import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
|
|
|
3
3
|
import { BatchAssociateScramSecretCommandInput, BatchAssociateScramSecretCommandOutput } from "../commands/BatchAssociateScramSecretCommand";
|
|
4
4
|
import { BatchDisassociateScramSecretCommandInput, BatchDisassociateScramSecretCommandOutput } from "../commands/BatchDisassociateScramSecretCommand";
|
|
5
5
|
import { CreateClusterCommandInput, CreateClusterCommandOutput } from "../commands/CreateClusterCommand";
|
|
6
|
+
import { CreateClusterV2CommandInput, CreateClusterV2CommandOutput } from "../commands/CreateClusterV2Command";
|
|
6
7
|
import { CreateConfigurationCommandInput, CreateConfigurationCommandOutput } from "../commands/CreateConfigurationCommand";
|
|
7
8
|
import { DeleteClusterCommandInput, DeleteClusterCommandOutput } from "../commands/DeleteClusterCommand";
|
|
8
9
|
import { DeleteConfigurationCommandInput, DeleteConfigurationCommandOutput } from "../commands/DeleteConfigurationCommand";
|
|
9
10
|
import { DescribeClusterCommandInput, DescribeClusterCommandOutput } from "../commands/DescribeClusterCommand";
|
|
10
11
|
import { DescribeClusterOperationCommandInput, DescribeClusterOperationCommandOutput } from "../commands/DescribeClusterOperationCommand";
|
|
12
|
+
import { DescribeClusterV2CommandInput, DescribeClusterV2CommandOutput } from "../commands/DescribeClusterV2Command";
|
|
11
13
|
import { DescribeConfigurationCommandInput, DescribeConfigurationCommandOutput } from "../commands/DescribeConfigurationCommand";
|
|
12
14
|
import { DescribeConfigurationRevisionCommandInput, DescribeConfigurationRevisionCommandOutput } from "../commands/DescribeConfigurationRevisionCommand";
|
|
13
15
|
import { GetBootstrapBrokersCommandInput, GetBootstrapBrokersCommandOutput } from "../commands/GetBootstrapBrokersCommand";
|
|
14
16
|
import { GetCompatibleKafkaVersionsCommandInput, GetCompatibleKafkaVersionsCommandOutput } from "../commands/GetCompatibleKafkaVersionsCommand";
|
|
15
17
|
import { ListClusterOperationsCommandInput, ListClusterOperationsCommandOutput } from "../commands/ListClusterOperationsCommand";
|
|
16
18
|
import { ListClustersCommandInput, ListClustersCommandOutput } from "../commands/ListClustersCommand";
|
|
19
|
+
import { ListClustersV2CommandInput, ListClustersV2CommandOutput } from "../commands/ListClustersV2Command";
|
|
17
20
|
import { ListConfigurationRevisionsCommandInput, ListConfigurationRevisionsCommandOutput } from "../commands/ListConfigurationRevisionsCommand";
|
|
18
21
|
import { ListConfigurationsCommandInput, ListConfigurationsCommandOutput } from "../commands/ListConfigurationsCommand";
|
|
19
22
|
import { ListKafkaVersionsCommandInput, ListKafkaVersionsCommandOutput } from "../commands/ListKafkaVersionsCommand";
|
|
@@ -29,22 +32,26 @@ import { UpdateBrokerTypeCommandInput, UpdateBrokerTypeCommandOutput } from "../
|
|
|
29
32
|
import { UpdateClusterConfigurationCommandInput, UpdateClusterConfigurationCommandOutput } from "../commands/UpdateClusterConfigurationCommand";
|
|
30
33
|
import { UpdateClusterKafkaVersionCommandInput, UpdateClusterKafkaVersionCommandOutput } from "../commands/UpdateClusterKafkaVersionCommand";
|
|
31
34
|
import { UpdateConfigurationCommandInput, UpdateConfigurationCommandOutput } from "../commands/UpdateConfigurationCommand";
|
|
35
|
+
import { UpdateConnectivityCommandInput, UpdateConnectivityCommandOutput } from "../commands/UpdateConnectivityCommand";
|
|
32
36
|
import { UpdateMonitoringCommandInput, UpdateMonitoringCommandOutput } from "../commands/UpdateMonitoringCommand";
|
|
33
37
|
import { UpdateSecurityCommandInput, UpdateSecurityCommandOutput } from "../commands/UpdateSecurityCommand";
|
|
34
38
|
export declare const serializeAws_restJson1BatchAssociateScramSecretCommand: (input: BatchAssociateScramSecretCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
35
39
|
export declare const serializeAws_restJson1BatchDisassociateScramSecretCommand: (input: BatchDisassociateScramSecretCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
36
40
|
export declare const serializeAws_restJson1CreateClusterCommand: (input: CreateClusterCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
41
|
+
export declare const serializeAws_restJson1CreateClusterV2Command: (input: CreateClusterV2CommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
37
42
|
export declare const serializeAws_restJson1CreateConfigurationCommand: (input: CreateConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
38
43
|
export declare const serializeAws_restJson1DeleteClusterCommand: (input: DeleteClusterCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
39
44
|
export declare const serializeAws_restJson1DeleteConfigurationCommand: (input: DeleteConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
40
45
|
export declare const serializeAws_restJson1DescribeClusterCommand: (input: DescribeClusterCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
41
46
|
export declare const serializeAws_restJson1DescribeClusterOperationCommand: (input: DescribeClusterOperationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
47
|
+
export declare const serializeAws_restJson1DescribeClusterV2Command: (input: DescribeClusterV2CommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
42
48
|
export declare const serializeAws_restJson1DescribeConfigurationCommand: (input: DescribeConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
43
49
|
export declare const serializeAws_restJson1DescribeConfigurationRevisionCommand: (input: DescribeConfigurationRevisionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
44
50
|
export declare const serializeAws_restJson1GetBootstrapBrokersCommand: (input: GetBootstrapBrokersCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
45
51
|
export declare const serializeAws_restJson1GetCompatibleKafkaVersionsCommand: (input: GetCompatibleKafkaVersionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
46
52
|
export declare const serializeAws_restJson1ListClusterOperationsCommand: (input: ListClusterOperationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
47
53
|
export declare const serializeAws_restJson1ListClustersCommand: (input: ListClustersCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
54
|
+
export declare const serializeAws_restJson1ListClustersV2Command: (input: ListClustersV2CommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
48
55
|
export declare const serializeAws_restJson1ListConfigurationRevisionsCommand: (input: ListConfigurationRevisionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
49
56
|
export declare const serializeAws_restJson1ListConfigurationsCommand: (input: ListConfigurationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
50
57
|
export declare const serializeAws_restJson1ListKafkaVersionsCommand: (input: ListKafkaVersionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -60,22 +67,26 @@ export declare const serializeAws_restJson1UpdateBrokerTypeCommand: (input: Upda
|
|
|
60
67
|
export declare const serializeAws_restJson1UpdateClusterConfigurationCommand: (input: UpdateClusterConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
61
68
|
export declare const serializeAws_restJson1UpdateClusterKafkaVersionCommand: (input: UpdateClusterKafkaVersionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
62
69
|
export declare const serializeAws_restJson1UpdateConfigurationCommand: (input: UpdateConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
70
|
+
export declare const serializeAws_restJson1UpdateConnectivityCommand: (input: UpdateConnectivityCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
63
71
|
export declare const serializeAws_restJson1UpdateMonitoringCommand: (input: UpdateMonitoringCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
64
72
|
export declare const serializeAws_restJson1UpdateSecurityCommand: (input: UpdateSecurityCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
65
73
|
export declare const deserializeAws_restJson1BatchAssociateScramSecretCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<BatchAssociateScramSecretCommandOutput>;
|
|
66
74
|
export declare const deserializeAws_restJson1BatchDisassociateScramSecretCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<BatchDisassociateScramSecretCommandOutput>;
|
|
67
75
|
export declare const deserializeAws_restJson1CreateClusterCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateClusterCommandOutput>;
|
|
76
|
+
export declare const deserializeAws_restJson1CreateClusterV2Command: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateClusterV2CommandOutput>;
|
|
68
77
|
export declare const deserializeAws_restJson1CreateConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateConfigurationCommandOutput>;
|
|
69
78
|
export declare const deserializeAws_restJson1DeleteClusterCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteClusterCommandOutput>;
|
|
70
79
|
export declare const deserializeAws_restJson1DeleteConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteConfigurationCommandOutput>;
|
|
71
80
|
export declare const deserializeAws_restJson1DescribeClusterCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeClusterCommandOutput>;
|
|
72
81
|
export declare const deserializeAws_restJson1DescribeClusterOperationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeClusterOperationCommandOutput>;
|
|
82
|
+
export declare const deserializeAws_restJson1DescribeClusterV2Command: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeClusterV2CommandOutput>;
|
|
73
83
|
export declare const deserializeAws_restJson1DescribeConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeConfigurationCommandOutput>;
|
|
74
84
|
export declare const deserializeAws_restJson1DescribeConfigurationRevisionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeConfigurationRevisionCommandOutput>;
|
|
75
85
|
export declare const deserializeAws_restJson1GetBootstrapBrokersCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetBootstrapBrokersCommandOutput>;
|
|
76
86
|
export declare const deserializeAws_restJson1GetCompatibleKafkaVersionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetCompatibleKafkaVersionsCommandOutput>;
|
|
77
87
|
export declare const deserializeAws_restJson1ListClusterOperationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListClusterOperationsCommandOutput>;
|
|
78
88
|
export declare const deserializeAws_restJson1ListClustersCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListClustersCommandOutput>;
|
|
89
|
+
export declare const deserializeAws_restJson1ListClustersV2Command: (output: __HttpResponse, context: __SerdeContext) => Promise<ListClustersV2CommandOutput>;
|
|
79
90
|
export declare const deserializeAws_restJson1ListConfigurationRevisionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListConfigurationRevisionsCommandOutput>;
|
|
80
91
|
export declare const deserializeAws_restJson1ListConfigurationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListConfigurationsCommandOutput>;
|
|
81
92
|
export declare const deserializeAws_restJson1ListKafkaVersionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListKafkaVersionsCommandOutput>;
|
|
@@ -91,5 +102,6 @@ export declare const deserializeAws_restJson1UpdateBrokerTypeCommand: (output: _
|
|
|
91
102
|
export declare const deserializeAws_restJson1UpdateClusterConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateClusterConfigurationCommandOutput>;
|
|
92
103
|
export declare const deserializeAws_restJson1UpdateClusterKafkaVersionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateClusterKafkaVersionCommandOutput>;
|
|
93
104
|
export declare const deserializeAws_restJson1UpdateConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateConfigurationCommandOutput>;
|
|
105
|
+
export declare const deserializeAws_restJson1UpdateConnectivityCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateConnectivityCommandOutput>;
|
|
94
106
|
export declare const deserializeAws_restJson1UpdateMonitoringCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateMonitoringCommandOutput>;
|
|
95
107
|
export declare const deserializeAws_restJson1UpdateSecurityCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateSecurityCommandOutput>;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-kafka",
|
|
3
3
|
"description": "AWS SDK for JavaScript Kafka Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.45.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "yarn build:cjs && yarn build:es && yarn build:types",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.json",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/config-resolver": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.45.0",
|
|
25
|
+
"@aws-sdk/config-resolver": "3.45.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.45.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.40.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.40.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.40.0",
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"@aws-sdk/middleware-logger": "3.40.0",
|
|
33
33
|
"@aws-sdk/middleware-retry": "3.40.0",
|
|
34
34
|
"@aws-sdk/middleware-serde": "3.40.0",
|
|
35
|
-
"@aws-sdk/middleware-signing": "3.
|
|
35
|
+
"@aws-sdk/middleware-signing": "3.45.0",
|
|
36
36
|
"@aws-sdk/middleware-stack": "3.40.0",
|
|
37
37
|
"@aws-sdk/middleware-user-agent": "3.40.0",
|
|
38
38
|
"@aws-sdk/node-config-provider": "3.40.0",
|