@aws-sdk/client-kafka 3.43.0 → 3.47.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 +50 -0
- package/dist-cjs/Kafka.js +45 -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/index.js +3 -0
- package/dist-cjs/endpoints.js +1 -0
- package/dist-cjs/models/models_0.js +132 -91
- package/dist-cjs/pagination/ListClustersV2Paginator.js +35 -0
- package/dist-cjs/pagination/index.js +1 -0
- package/dist-cjs/protocols/Aws_restJson1.js +546 -2
- package/dist-cjs/runtimeConfig.browser.js +7 -2
- package/dist-cjs/runtimeConfig.js +9 -3
- package/dist-es/Kafka.js +45 -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/index.js +3 -0
- package/dist-es/endpoints.js +1 -0
- package/dist-es/models/models_0.js +92 -63
- package/dist-es/pagination/ListClustersV2Paginator.js +74 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +571 -0
- package/dist-es/runtimeConfig.browser.js +12 -3
- package/dist-es/runtimeConfig.js +13 -6
- package/dist-types/Kafka.d.ts +21 -0
- package/dist-types/KafkaClient.d.ts +10 -3
- 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/index.d.ts +3 -0
- package/dist-types/models/models_0.d.ts +430 -116
- 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 +9 -0
- package/dist-types/runtimeConfig.browser.d.ts +3 -2
- package/dist-types/runtimeConfig.d.ts +4 -3
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/ts3.4/Kafka.d.ts +15 -0
- package/dist-types/ts3.4/KafkaClient.d.ts +8 -3
- 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/index.d.ts +3 -0
- package/dist-types/ts3.4/models/models_0.d.ts +255 -79
- 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 +9 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +3 -2
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -3
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -0
- package/package.json +38 -45
|
@@ -10,6 +10,10 @@ 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
|
}
|
|
@@ -226,42 +230,109 @@ export declare namespace LoggingInfo {
|
|
|
226
230
|
const filterSensitiveLog: (obj: LoggingInfo) => any;
|
|
227
231
|
}
|
|
228
232
|
|
|
229
|
-
export interface
|
|
233
|
+
export interface JmxExporterInfo {
|
|
230
234
|
|
|
231
235
|
EnabledInBroker: boolean | undefined;
|
|
232
236
|
}
|
|
233
|
-
export declare namespace
|
|
237
|
+
export declare namespace JmxExporterInfo {
|
|
234
238
|
|
|
235
|
-
const filterSensitiveLog: (obj:
|
|
239
|
+
const filterSensitiveLog: (obj: JmxExporterInfo) => any;
|
|
236
240
|
}
|
|
237
241
|
|
|
238
|
-
export interface
|
|
242
|
+
export interface NodeExporterInfo {
|
|
239
243
|
|
|
240
244
|
EnabledInBroker: boolean | undefined;
|
|
241
245
|
}
|
|
242
|
-
export declare namespace
|
|
246
|
+
export declare namespace NodeExporterInfo {
|
|
243
247
|
|
|
244
|
-
const filterSensitiveLog: (obj:
|
|
248
|
+
const filterSensitiveLog: (obj: NodeExporterInfo) => any;
|
|
245
249
|
}
|
|
246
250
|
|
|
247
|
-
export interface
|
|
251
|
+
export interface PrometheusInfo {
|
|
248
252
|
|
|
249
|
-
JmxExporter?:
|
|
253
|
+
JmxExporter?: JmxExporterInfo;
|
|
250
254
|
|
|
251
|
-
NodeExporter?:
|
|
255
|
+
NodeExporter?: NodeExporterInfo;
|
|
252
256
|
}
|
|
253
|
-
export declare namespace
|
|
257
|
+
export declare namespace PrometheusInfo {
|
|
254
258
|
|
|
255
|
-
const filterSensitiveLog: (obj:
|
|
259
|
+
const filterSensitiveLog: (obj: PrometheusInfo) => any;
|
|
256
260
|
}
|
|
257
261
|
|
|
258
|
-
export interface
|
|
262
|
+
export interface OpenMonitoringInfo {
|
|
259
263
|
|
|
260
|
-
Prometheus:
|
|
264
|
+
Prometheus: PrometheusInfo | undefined;
|
|
261
265
|
}
|
|
262
|
-
export declare namespace
|
|
266
|
+
export declare namespace OpenMonitoringInfo {
|
|
263
267
|
|
|
264
|
-
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;
|
|
265
336
|
}
|
|
266
337
|
export declare enum ClusterState {
|
|
267
338
|
ACTIVE = "ACTIVE",
|
|
@@ -282,6 +353,75 @@ export declare namespace StateInfo {
|
|
|
282
353
|
const filterSensitiveLog: (obj: StateInfo) => any;
|
|
283
354
|
}
|
|
284
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
|
+
|
|
285
425
|
export interface ClusterInfo {
|
|
286
426
|
|
|
287
427
|
ActiveOperationArn?: string;
|
|
@@ -566,10 +706,6 @@ export interface BadRequestException extends __SmithyException, $MetadataBearer
|
|
|
566
706
|
|
|
567
707
|
Message?: string;
|
|
568
708
|
}
|
|
569
|
-
export declare namespace BadRequestException {
|
|
570
|
-
|
|
571
|
-
const filterSensitiveLog: (obj: BadRequestException) => any;
|
|
572
|
-
}
|
|
573
709
|
|
|
574
710
|
export interface BatchAssociateScramSecretRequest {
|
|
575
711
|
|
|
@@ -600,10 +736,6 @@ export interface ForbiddenException extends __SmithyException, $MetadataBearer {
|
|
|
600
736
|
|
|
601
737
|
Message?: string;
|
|
602
738
|
}
|
|
603
|
-
export declare namespace ForbiddenException {
|
|
604
|
-
|
|
605
|
-
const filterSensitiveLog: (obj: ForbiddenException) => any;
|
|
606
|
-
}
|
|
607
739
|
|
|
608
740
|
export interface InternalServerErrorException extends __SmithyException, $MetadataBearer {
|
|
609
741
|
name: "InternalServerErrorException";
|
|
@@ -613,10 +745,6 @@ export interface InternalServerErrorException extends __SmithyException, $Metada
|
|
|
613
745
|
|
|
614
746
|
Message?: string;
|
|
615
747
|
}
|
|
616
|
-
export declare namespace InternalServerErrorException {
|
|
617
|
-
|
|
618
|
-
const filterSensitiveLog: (obj: InternalServerErrorException) => any;
|
|
619
|
-
}
|
|
620
748
|
|
|
621
749
|
export interface NotFoundException extends __SmithyException, $MetadataBearer {
|
|
622
750
|
name: "NotFoundException";
|
|
@@ -626,10 +754,6 @@ export interface NotFoundException extends __SmithyException, $MetadataBearer {
|
|
|
626
754
|
|
|
627
755
|
Message?: string;
|
|
628
756
|
}
|
|
629
|
-
export declare namespace NotFoundException {
|
|
630
|
-
|
|
631
|
-
const filterSensitiveLog: (obj: NotFoundException) => any;
|
|
632
|
-
}
|
|
633
757
|
|
|
634
758
|
export interface ServiceUnavailableException extends __SmithyException, $MetadataBearer {
|
|
635
759
|
name: "ServiceUnavailableException";
|
|
@@ -639,10 +763,6 @@ export interface ServiceUnavailableException extends __SmithyException, $Metadat
|
|
|
639
763
|
|
|
640
764
|
Message?: string;
|
|
641
765
|
}
|
|
642
|
-
export declare namespace ServiceUnavailableException {
|
|
643
|
-
|
|
644
|
-
const filterSensitiveLog: (obj: ServiceUnavailableException) => any;
|
|
645
|
-
}
|
|
646
766
|
|
|
647
767
|
export interface TooManyRequestsException extends __SmithyException, $MetadataBearer {
|
|
648
768
|
name: "TooManyRequestsException";
|
|
@@ -652,10 +772,6 @@ export interface TooManyRequestsException extends __SmithyException, $MetadataBe
|
|
|
652
772
|
|
|
653
773
|
Message?: string;
|
|
654
774
|
}
|
|
655
|
-
export declare namespace TooManyRequestsException {
|
|
656
|
-
|
|
657
|
-
const filterSensitiveLog: (obj: TooManyRequestsException) => any;
|
|
658
|
-
}
|
|
659
775
|
|
|
660
776
|
export interface UnauthorizedException extends __SmithyException, $MetadataBearer {
|
|
661
777
|
name: "UnauthorizedException";
|
|
@@ -665,10 +781,6 @@ export interface UnauthorizedException extends __SmithyException, $MetadataBeare
|
|
|
665
781
|
|
|
666
782
|
Message?: string;
|
|
667
783
|
}
|
|
668
|
-
export declare namespace UnauthorizedException {
|
|
669
|
-
|
|
670
|
-
const filterSensitiveLog: (obj: UnauthorizedException) => any;
|
|
671
|
-
}
|
|
672
784
|
|
|
673
785
|
export interface BatchDisassociateScramSecretRequest {
|
|
674
786
|
|
|
@@ -699,56 +811,54 @@ export interface ConflictException extends __SmithyException, $MetadataBearer {
|
|
|
699
811
|
|
|
700
812
|
Message?: string;
|
|
701
813
|
}
|
|
702
|
-
export
|
|
814
|
+
export interface CreateClusterRequest {
|
|
703
815
|
|
|
704
|
-
|
|
705
|
-
}
|
|
706
|
-
|
|
707
|
-
export interface JmxExporterInfo {
|
|
816
|
+
BrokerNodeGroupInfo: BrokerNodeGroupInfo | undefined;
|
|
708
817
|
|
|
709
|
-
|
|
710
|
-
}
|
|
711
|
-
export declare namespace JmxExporterInfo {
|
|
818
|
+
ClientAuthentication?: ClientAuthentication;
|
|
712
819
|
|
|
713
|
-
|
|
714
|
-
}
|
|
715
|
-
|
|
716
|
-
export interface NodeExporterInfo {
|
|
820
|
+
ClusterName: string | undefined;
|
|
717
821
|
|
|
718
|
-
|
|
719
|
-
}
|
|
720
|
-
export declare namespace NodeExporterInfo {
|
|
822
|
+
ConfigurationInfo?: ConfigurationInfo;
|
|
721
823
|
|
|
722
|
-
|
|
723
|
-
}
|
|
724
|
-
|
|
725
|
-
export interface PrometheusInfo {
|
|
824
|
+
EncryptionInfo?: EncryptionInfo;
|
|
726
825
|
|
|
727
|
-
|
|
826
|
+
EnhancedMonitoring?: EnhancedMonitoring | string;
|
|
728
827
|
|
|
729
|
-
|
|
828
|
+
OpenMonitoring?: OpenMonitoringInfo;
|
|
829
|
+
|
|
830
|
+
KafkaVersion: string | undefined;
|
|
831
|
+
LoggingInfo?: LoggingInfo;
|
|
832
|
+
|
|
833
|
+
NumberOfBrokerNodes: number | undefined;
|
|
834
|
+
|
|
835
|
+
Tags?: {
|
|
836
|
+
[key: string]: string;
|
|
837
|
+
};
|
|
730
838
|
}
|
|
731
|
-
export declare namespace
|
|
839
|
+
export declare namespace CreateClusterRequest {
|
|
732
840
|
|
|
733
|
-
const filterSensitiveLog: (obj:
|
|
841
|
+
const filterSensitiveLog: (obj: CreateClusterRequest) => any;
|
|
734
842
|
}
|
|
735
|
-
|
|
736
|
-
export interface OpenMonitoringInfo {
|
|
843
|
+
export interface CreateClusterResponse {
|
|
737
844
|
|
|
738
|
-
|
|
845
|
+
ClusterArn?: string;
|
|
846
|
+
|
|
847
|
+
ClusterName?: string;
|
|
848
|
+
|
|
849
|
+
State?: ClusterState | string;
|
|
739
850
|
}
|
|
740
|
-
export declare namespace
|
|
851
|
+
export declare namespace CreateClusterResponse {
|
|
741
852
|
|
|
742
|
-
const filterSensitiveLog: (obj:
|
|
853
|
+
const filterSensitiveLog: (obj: CreateClusterResponse) => any;
|
|
743
854
|
}
|
|
744
|
-
|
|
855
|
+
|
|
856
|
+
export interface ProvisionedRequest {
|
|
745
857
|
|
|
746
858
|
BrokerNodeGroupInfo: BrokerNodeGroupInfo | undefined;
|
|
747
859
|
|
|
748
860
|
ClientAuthentication?: ClientAuthentication;
|
|
749
861
|
|
|
750
|
-
ClusterName: string | undefined;
|
|
751
|
-
|
|
752
862
|
ConfigurationInfo?: ConfigurationInfo;
|
|
753
863
|
|
|
754
864
|
EncryptionInfo?: EncryptionInfo;
|
|
@@ -758,29 +868,55 @@ export interface CreateClusterRequest {
|
|
|
758
868
|
OpenMonitoring?: OpenMonitoringInfo;
|
|
759
869
|
|
|
760
870
|
KafkaVersion: string | undefined;
|
|
871
|
+
|
|
761
872
|
LoggingInfo?: LoggingInfo;
|
|
762
873
|
|
|
763
874
|
NumberOfBrokerNodes: number | undefined;
|
|
875
|
+
}
|
|
876
|
+
export declare namespace ProvisionedRequest {
|
|
877
|
+
|
|
878
|
+
const filterSensitiveLog: (obj: ProvisionedRequest) => any;
|
|
879
|
+
}
|
|
880
|
+
|
|
881
|
+
export interface ServerlessRequest {
|
|
882
|
+
|
|
883
|
+
VpcConfigs: VpcConfig[] | undefined;
|
|
884
|
+
|
|
885
|
+
ClientAuthentication?: ServerlessClientAuthentication;
|
|
886
|
+
}
|
|
887
|
+
export declare namespace ServerlessRequest {
|
|
888
|
+
|
|
889
|
+
const filterSensitiveLog: (obj: ServerlessRequest) => any;
|
|
890
|
+
}
|
|
891
|
+
export interface CreateClusterV2Request {
|
|
892
|
+
|
|
893
|
+
ClusterName: string | undefined;
|
|
764
894
|
|
|
765
895
|
Tags?: {
|
|
766
896
|
[key: string]: string;
|
|
767
897
|
};
|
|
898
|
+
|
|
899
|
+
Provisioned?: ProvisionedRequest;
|
|
900
|
+
|
|
901
|
+
Serverless?: ServerlessRequest;
|
|
768
902
|
}
|
|
769
|
-
export declare namespace
|
|
903
|
+
export declare namespace CreateClusterV2Request {
|
|
770
904
|
|
|
771
|
-
const filterSensitiveLog: (obj:
|
|
905
|
+
const filterSensitiveLog: (obj: CreateClusterV2Request) => any;
|
|
772
906
|
}
|
|
773
|
-
export interface
|
|
907
|
+
export interface CreateClusterV2Response {
|
|
774
908
|
|
|
775
909
|
ClusterArn?: string;
|
|
776
910
|
|
|
777
911
|
ClusterName?: string;
|
|
778
912
|
|
|
779
913
|
State?: ClusterState | string;
|
|
914
|
+
|
|
915
|
+
ClusterType?: ClusterType | string;
|
|
780
916
|
}
|
|
781
|
-
export declare namespace
|
|
917
|
+
export declare namespace CreateClusterV2Response {
|
|
782
918
|
|
|
783
|
-
const filterSensitiveLog: (obj:
|
|
919
|
+
const filterSensitiveLog: (obj: CreateClusterV2Response) => any;
|
|
784
920
|
}
|
|
785
921
|
export interface CreateConfigurationRequest {
|
|
786
922
|
|
|
@@ -882,6 +1018,22 @@ export declare namespace DescribeClusterOperationResponse {
|
|
|
882
1018
|
|
|
883
1019
|
const filterSensitiveLog: (obj: DescribeClusterOperationResponse) => any;
|
|
884
1020
|
}
|
|
1021
|
+
export interface DescribeClusterV2Request {
|
|
1022
|
+
|
|
1023
|
+
ClusterArn: string | undefined;
|
|
1024
|
+
}
|
|
1025
|
+
export declare namespace DescribeClusterV2Request {
|
|
1026
|
+
|
|
1027
|
+
const filterSensitiveLog: (obj: DescribeClusterV2Request) => any;
|
|
1028
|
+
}
|
|
1029
|
+
export interface DescribeClusterV2Response {
|
|
1030
|
+
|
|
1031
|
+
ClusterInfo?: Cluster;
|
|
1032
|
+
}
|
|
1033
|
+
export declare namespace DescribeClusterV2Response {
|
|
1034
|
+
|
|
1035
|
+
const filterSensitiveLog: (obj: DescribeClusterV2Response) => any;
|
|
1036
|
+
}
|
|
885
1037
|
export interface DescribeConfigurationRequest {
|
|
886
1038
|
|
|
887
1039
|
Arn: string | undefined;
|
|
@@ -1024,6 +1176,30 @@ export declare namespace ListClustersResponse {
|
|
|
1024
1176
|
|
|
1025
1177
|
const filterSensitiveLog: (obj: ListClustersResponse) => any;
|
|
1026
1178
|
}
|
|
1179
|
+
export interface ListClustersV2Request {
|
|
1180
|
+
|
|
1181
|
+
ClusterNameFilter?: string;
|
|
1182
|
+
|
|
1183
|
+
ClusterTypeFilter?: string;
|
|
1184
|
+
|
|
1185
|
+
MaxResults?: number;
|
|
1186
|
+
|
|
1187
|
+
NextToken?: string;
|
|
1188
|
+
}
|
|
1189
|
+
export declare namespace ListClustersV2Request {
|
|
1190
|
+
|
|
1191
|
+
const filterSensitiveLog: (obj: ListClustersV2Request) => any;
|
|
1192
|
+
}
|
|
1193
|
+
export interface ListClustersV2Response {
|
|
1194
|
+
|
|
1195
|
+
ClusterInfoList?: Cluster[];
|
|
1196
|
+
|
|
1197
|
+
NextToken?: string;
|
|
1198
|
+
}
|
|
1199
|
+
export declare namespace ListClustersV2Response {
|
|
1200
|
+
|
|
1201
|
+
const filterSensitiveLog: (obj: ListClustersV2Response) => any;
|
|
1202
|
+
}
|
|
1027
1203
|
export interface ListConfigurationRevisionsRequest {
|
|
1028
1204
|
|
|
1029
1205
|
Arn: 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";
|
|
@@ -35,17 +38,20 @@ import { UpdateSecurityCommandInput, UpdateSecurityCommandOutput } from "../comm
|
|
|
35
38
|
export declare const serializeAws_restJson1BatchAssociateScramSecretCommand: (input: BatchAssociateScramSecretCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
36
39
|
export declare const serializeAws_restJson1BatchDisassociateScramSecretCommand: (input: BatchDisassociateScramSecretCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
37
40
|
export declare const serializeAws_restJson1CreateClusterCommand: (input: CreateClusterCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
41
|
+
export declare const serializeAws_restJson1CreateClusterV2Command: (input: CreateClusterV2CommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
38
42
|
export declare const serializeAws_restJson1CreateConfigurationCommand: (input: CreateConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
39
43
|
export declare const serializeAws_restJson1DeleteClusterCommand: (input: DeleteClusterCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
40
44
|
export declare const serializeAws_restJson1DeleteConfigurationCommand: (input: DeleteConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
41
45
|
export declare const serializeAws_restJson1DescribeClusterCommand: (input: DescribeClusterCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
42
46
|
export declare const serializeAws_restJson1DescribeClusterOperationCommand: (input: DescribeClusterOperationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
47
|
+
export declare const serializeAws_restJson1DescribeClusterV2Command: (input: DescribeClusterV2CommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
43
48
|
export declare const serializeAws_restJson1DescribeConfigurationCommand: (input: DescribeConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
44
49
|
export declare const serializeAws_restJson1DescribeConfigurationRevisionCommand: (input: DescribeConfigurationRevisionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
45
50
|
export declare const serializeAws_restJson1GetBootstrapBrokersCommand: (input: GetBootstrapBrokersCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
46
51
|
export declare const serializeAws_restJson1GetCompatibleKafkaVersionsCommand: (input: GetCompatibleKafkaVersionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
47
52
|
export declare const serializeAws_restJson1ListClusterOperationsCommand: (input: ListClusterOperationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
48
53
|
export declare const serializeAws_restJson1ListClustersCommand: (input: ListClustersCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
54
|
+
export declare const serializeAws_restJson1ListClustersV2Command: (input: ListClustersV2CommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
49
55
|
export declare const serializeAws_restJson1ListConfigurationRevisionsCommand: (input: ListConfigurationRevisionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
50
56
|
export declare const serializeAws_restJson1ListConfigurationsCommand: (input: ListConfigurationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
51
57
|
export declare const serializeAws_restJson1ListKafkaVersionsCommand: (input: ListKafkaVersionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -67,17 +73,20 @@ export declare const serializeAws_restJson1UpdateSecurityCommand: (input: Update
|
|
|
67
73
|
export declare const deserializeAws_restJson1BatchAssociateScramSecretCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<BatchAssociateScramSecretCommandOutput>;
|
|
68
74
|
export declare const deserializeAws_restJson1BatchDisassociateScramSecretCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<BatchDisassociateScramSecretCommandOutput>;
|
|
69
75
|
export declare const deserializeAws_restJson1CreateClusterCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateClusterCommandOutput>;
|
|
76
|
+
export declare const deserializeAws_restJson1CreateClusterV2Command: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateClusterV2CommandOutput>;
|
|
70
77
|
export declare const deserializeAws_restJson1CreateConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateConfigurationCommandOutput>;
|
|
71
78
|
export declare const deserializeAws_restJson1DeleteClusterCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteClusterCommandOutput>;
|
|
72
79
|
export declare const deserializeAws_restJson1DeleteConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteConfigurationCommandOutput>;
|
|
73
80
|
export declare const deserializeAws_restJson1DescribeClusterCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeClusterCommandOutput>;
|
|
74
81
|
export declare const deserializeAws_restJson1DescribeClusterOperationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeClusterOperationCommandOutput>;
|
|
82
|
+
export declare const deserializeAws_restJson1DescribeClusterV2Command: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeClusterV2CommandOutput>;
|
|
75
83
|
export declare const deserializeAws_restJson1DescribeConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeConfigurationCommandOutput>;
|
|
76
84
|
export declare const deserializeAws_restJson1DescribeConfigurationRevisionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeConfigurationRevisionCommandOutput>;
|
|
77
85
|
export declare const deserializeAws_restJson1GetBootstrapBrokersCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetBootstrapBrokersCommandOutput>;
|
|
78
86
|
export declare const deserializeAws_restJson1GetCompatibleKafkaVersionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetCompatibleKafkaVersionsCommandOutput>;
|
|
79
87
|
export declare const deserializeAws_restJson1ListClusterOperationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListClusterOperationsCommandOutput>;
|
|
80
88
|
export declare const deserializeAws_restJson1ListClustersCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListClustersCommandOutput>;
|
|
89
|
+
export declare const deserializeAws_restJson1ListClustersV2Command: (output: __HttpResponse, context: __SerdeContext) => Promise<ListClustersV2CommandOutput>;
|
|
81
90
|
export declare const deserializeAws_restJson1ListConfigurationRevisionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListConfigurationRevisionsCommandOutput>;
|
|
82
91
|
export declare const deserializeAws_restJson1ListConfigurationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListConfigurationsCommandOutput>;
|
|
83
92
|
export declare const deserializeAws_restJson1ListKafkaVersionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListKafkaVersionsCommandOutput>;
|
|
@@ -1,8 +1,9 @@
|
|
|
1
|
-
import { FetchHttpHandler } from "@aws-sdk/fetch-http-handler";
|
|
1
|
+
import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
|
|
2
2
|
import { KafkaClientConfig } from "./KafkaClient";
|
|
3
3
|
|
|
4
4
|
export declare const getRuntimeConfig: (config: KafkaClientConfig) => {
|
|
5
5
|
runtime: string;
|
|
6
|
+
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
6
7
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
7
8
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
8
9
|
bodyLengthChecker: (body: any) => number | undefined;
|
|
@@ -10,7 +11,7 @@ export declare const getRuntimeConfig: (config: KafkaClientConfig) => {
|
|
|
10
11
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
11
12
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
12
13
|
region: string | import("@aws-sdk/types").Provider<any>;
|
|
13
|
-
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) |
|
|
14
|
+
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
|
|
14
15
|
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
15
16
|
sha256: import("@aws-sdk/types").HashConstructor;
|
|
16
17
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
@@ -1,16 +1,17 @@
|
|
|
1
|
-
import { NodeHttpHandler } from "@aws-sdk/node-http-handler";
|
|
1
|
+
import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
|
|
2
2
|
import { KafkaClientConfig } from "./KafkaClient";
|
|
3
3
|
|
|
4
4
|
export declare const getRuntimeConfig: (config: KafkaClientConfig) => {
|
|
5
5
|
runtime: string;
|
|
6
|
+
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
6
7
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
7
8
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
8
9
|
bodyLengthChecker: (body: any) => number | undefined;
|
|
9
|
-
credentialDefaultProvider: import("@aws-sdk/
|
|
10
|
+
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
10
11
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
11
12
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
12
13
|
region: string | import("@aws-sdk/types").Provider<string>;
|
|
13
|
-
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) |
|
|
14
|
+
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
|
|
14
15
|
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
15
16
|
sha256: import("@aws-sdk/types").HashConstructor;
|
|
16
17
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
@@ -23,6 +23,7 @@ export declare const getRuntimeConfig: (config: KafkaClientConfig) => {
|
|
|
23
23
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
24
24
|
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
25
25
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
26
|
+
defaultsMode: import("@aws-sdk/smithy-client").DefaultsMode | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").DefaultsMode> | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
26
27
|
endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
|
|
27
28
|
tls?: boolean | undefined;
|
|
28
29
|
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|