@aws-sdk/client-kafka 3.975.0 → 3.978.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/dist-cjs/index.js +45 -29
- package/dist-es/Kafka.js +31 -1
- package/dist-types/Kafka.d.ts +99 -1
- package/dist-types/ts3.4/Kafka.d.ts +103 -1
- package/package.json +17 -17
package/dist-cjs/index.js
CHANGED
|
@@ -2907,6 +2907,34 @@ class UpdateStorageCommand extends smithyClient.Command
|
|
|
2907
2907
|
.build() {
|
|
2908
2908
|
}
|
|
2909
2909
|
|
|
2910
|
+
const paginateDescribeTopicPartitions = core.createPaginator(KafkaClient, DescribeTopicPartitionsCommand, "NextToken", "NextToken", "MaxResults");
|
|
2911
|
+
|
|
2912
|
+
const paginateListClientVpcConnections = core.createPaginator(KafkaClient, ListClientVpcConnectionsCommand, "NextToken", "NextToken", "MaxResults");
|
|
2913
|
+
|
|
2914
|
+
const paginateListClusterOperations = core.createPaginator(KafkaClient, ListClusterOperationsCommand, "NextToken", "NextToken", "MaxResults");
|
|
2915
|
+
|
|
2916
|
+
const paginateListClusterOperationsV2 = core.createPaginator(KafkaClient, ListClusterOperationsV2Command, "NextToken", "NextToken", "MaxResults");
|
|
2917
|
+
|
|
2918
|
+
const paginateListClusters = core.createPaginator(KafkaClient, ListClustersCommand, "NextToken", "NextToken", "MaxResults");
|
|
2919
|
+
|
|
2920
|
+
const paginateListClustersV2 = core.createPaginator(KafkaClient, ListClustersV2Command, "NextToken", "NextToken", "MaxResults");
|
|
2921
|
+
|
|
2922
|
+
const paginateListConfigurationRevisions = core.createPaginator(KafkaClient, ListConfigurationRevisionsCommand, "NextToken", "NextToken", "MaxResults");
|
|
2923
|
+
|
|
2924
|
+
const paginateListConfigurations = core.createPaginator(KafkaClient, ListConfigurationsCommand, "NextToken", "NextToken", "MaxResults");
|
|
2925
|
+
|
|
2926
|
+
const paginateListKafkaVersions = core.createPaginator(KafkaClient, ListKafkaVersionsCommand, "NextToken", "NextToken", "MaxResults");
|
|
2927
|
+
|
|
2928
|
+
const paginateListNodes = core.createPaginator(KafkaClient, ListNodesCommand, "NextToken", "NextToken", "MaxResults");
|
|
2929
|
+
|
|
2930
|
+
const paginateListReplicators = core.createPaginator(KafkaClient, ListReplicatorsCommand, "NextToken", "NextToken", "MaxResults");
|
|
2931
|
+
|
|
2932
|
+
const paginateListScramSecrets = core.createPaginator(KafkaClient, ListScramSecretsCommand, "NextToken", "NextToken", "MaxResults");
|
|
2933
|
+
|
|
2934
|
+
const paginateListTopics = core.createPaginator(KafkaClient, ListTopicsCommand, "NextToken", "NextToken", "MaxResults");
|
|
2935
|
+
|
|
2936
|
+
const paginateListVpcConnections = core.createPaginator(KafkaClient, ListVpcConnectionsCommand, "NextToken", "NextToken", "MaxResults");
|
|
2937
|
+
|
|
2910
2938
|
const commands = {
|
|
2911
2939
|
BatchAssociateScramSecretCommand,
|
|
2912
2940
|
BatchDisassociateScramSecretCommand,
|
|
@@ -2965,37 +2993,25 @@ const commands = {
|
|
|
2965
2993
|
UpdateSecurityCommand,
|
|
2966
2994
|
UpdateStorageCommand,
|
|
2967
2995
|
};
|
|
2996
|
+
const paginators = {
|
|
2997
|
+
paginateDescribeTopicPartitions,
|
|
2998
|
+
paginateListClientVpcConnections,
|
|
2999
|
+
paginateListClusterOperations,
|
|
3000
|
+
paginateListClusterOperationsV2,
|
|
3001
|
+
paginateListClusters,
|
|
3002
|
+
paginateListClustersV2,
|
|
3003
|
+
paginateListConfigurationRevisions,
|
|
3004
|
+
paginateListConfigurations,
|
|
3005
|
+
paginateListKafkaVersions,
|
|
3006
|
+
paginateListNodes,
|
|
3007
|
+
paginateListReplicators,
|
|
3008
|
+
paginateListScramSecrets,
|
|
3009
|
+
paginateListTopics,
|
|
3010
|
+
paginateListVpcConnections,
|
|
3011
|
+
};
|
|
2968
3012
|
class Kafka extends KafkaClient {
|
|
2969
3013
|
}
|
|
2970
|
-
smithyClient.createAggregatedClient(commands, Kafka);
|
|
2971
|
-
|
|
2972
|
-
const paginateDescribeTopicPartitions = core.createPaginator(KafkaClient, DescribeTopicPartitionsCommand, "NextToken", "NextToken", "MaxResults");
|
|
2973
|
-
|
|
2974
|
-
const paginateListClientVpcConnections = core.createPaginator(KafkaClient, ListClientVpcConnectionsCommand, "NextToken", "NextToken", "MaxResults");
|
|
2975
|
-
|
|
2976
|
-
const paginateListClusterOperations = core.createPaginator(KafkaClient, ListClusterOperationsCommand, "NextToken", "NextToken", "MaxResults");
|
|
2977
|
-
|
|
2978
|
-
const paginateListClusterOperationsV2 = core.createPaginator(KafkaClient, ListClusterOperationsV2Command, "NextToken", "NextToken", "MaxResults");
|
|
2979
|
-
|
|
2980
|
-
const paginateListClusters = core.createPaginator(KafkaClient, ListClustersCommand, "NextToken", "NextToken", "MaxResults");
|
|
2981
|
-
|
|
2982
|
-
const paginateListClustersV2 = core.createPaginator(KafkaClient, ListClustersV2Command, "NextToken", "NextToken", "MaxResults");
|
|
2983
|
-
|
|
2984
|
-
const paginateListConfigurationRevisions = core.createPaginator(KafkaClient, ListConfigurationRevisionsCommand, "NextToken", "NextToken", "MaxResults");
|
|
2985
|
-
|
|
2986
|
-
const paginateListConfigurations = core.createPaginator(KafkaClient, ListConfigurationsCommand, "NextToken", "NextToken", "MaxResults");
|
|
2987
|
-
|
|
2988
|
-
const paginateListKafkaVersions = core.createPaginator(KafkaClient, ListKafkaVersionsCommand, "NextToken", "NextToken", "MaxResults");
|
|
2989
|
-
|
|
2990
|
-
const paginateListNodes = core.createPaginator(KafkaClient, ListNodesCommand, "NextToken", "NextToken", "MaxResults");
|
|
2991
|
-
|
|
2992
|
-
const paginateListReplicators = core.createPaginator(KafkaClient, ListReplicatorsCommand, "NextToken", "NextToken", "MaxResults");
|
|
2993
|
-
|
|
2994
|
-
const paginateListScramSecrets = core.createPaginator(KafkaClient, ListScramSecretsCommand, "NextToken", "NextToken", "MaxResults");
|
|
2995
|
-
|
|
2996
|
-
const paginateListTopics = core.createPaginator(KafkaClient, ListTopicsCommand, "NextToken", "NextToken", "MaxResults");
|
|
2997
|
-
|
|
2998
|
-
const paginateListVpcConnections = core.createPaginator(KafkaClient, ListVpcConnectionsCommand, "NextToken", "NextToken", "MaxResults");
|
|
3014
|
+
smithyClient.createAggregatedClient(commands, Kafka, { paginators });
|
|
2999
3015
|
|
|
3000
3016
|
const VpcConnectionState = {
|
|
3001
3017
|
AVAILABLE: "AVAILABLE",
|
package/dist-es/Kafka.js
CHANGED
|
@@ -56,6 +56,20 @@ import { UpdateReplicationInfoCommand, } from "./commands/UpdateReplicationInfoC
|
|
|
56
56
|
import { UpdateSecurityCommand, } from "./commands/UpdateSecurityCommand";
|
|
57
57
|
import { UpdateStorageCommand, } from "./commands/UpdateStorageCommand";
|
|
58
58
|
import { KafkaClient } from "./KafkaClient";
|
|
59
|
+
import { paginateDescribeTopicPartitions } from "./pagination/DescribeTopicPartitionsPaginator";
|
|
60
|
+
import { paginateListClientVpcConnections } from "./pagination/ListClientVpcConnectionsPaginator";
|
|
61
|
+
import { paginateListClusterOperations } from "./pagination/ListClusterOperationsPaginator";
|
|
62
|
+
import { paginateListClusterOperationsV2 } from "./pagination/ListClusterOperationsV2Paginator";
|
|
63
|
+
import { paginateListClusters } from "./pagination/ListClustersPaginator";
|
|
64
|
+
import { paginateListClustersV2 } from "./pagination/ListClustersV2Paginator";
|
|
65
|
+
import { paginateListConfigurationRevisions } from "./pagination/ListConfigurationRevisionsPaginator";
|
|
66
|
+
import { paginateListConfigurations } from "./pagination/ListConfigurationsPaginator";
|
|
67
|
+
import { paginateListKafkaVersions } from "./pagination/ListKafkaVersionsPaginator";
|
|
68
|
+
import { paginateListNodes } from "./pagination/ListNodesPaginator";
|
|
69
|
+
import { paginateListReplicators } from "./pagination/ListReplicatorsPaginator";
|
|
70
|
+
import { paginateListScramSecrets } from "./pagination/ListScramSecretsPaginator";
|
|
71
|
+
import { paginateListTopics } from "./pagination/ListTopicsPaginator";
|
|
72
|
+
import { paginateListVpcConnections } from "./pagination/ListVpcConnectionsPaginator";
|
|
59
73
|
const commands = {
|
|
60
74
|
BatchAssociateScramSecretCommand,
|
|
61
75
|
BatchDisassociateScramSecretCommand,
|
|
@@ -114,6 +128,22 @@ const commands = {
|
|
|
114
128
|
UpdateSecurityCommand,
|
|
115
129
|
UpdateStorageCommand,
|
|
116
130
|
};
|
|
131
|
+
const paginators = {
|
|
132
|
+
paginateDescribeTopicPartitions,
|
|
133
|
+
paginateListClientVpcConnections,
|
|
134
|
+
paginateListClusterOperations,
|
|
135
|
+
paginateListClusterOperationsV2,
|
|
136
|
+
paginateListClusters,
|
|
137
|
+
paginateListClustersV2,
|
|
138
|
+
paginateListConfigurationRevisions,
|
|
139
|
+
paginateListConfigurations,
|
|
140
|
+
paginateListKafkaVersions,
|
|
141
|
+
paginateListNodes,
|
|
142
|
+
paginateListReplicators,
|
|
143
|
+
paginateListScramSecrets,
|
|
144
|
+
paginateListTopics,
|
|
145
|
+
paginateListVpcConnections,
|
|
146
|
+
};
|
|
117
147
|
export class Kafka extends KafkaClient {
|
|
118
148
|
}
|
|
119
|
-
createAggregatedClient(commands, Kafka);
|
|
149
|
+
createAggregatedClient(commands, Kafka, { paginators });
|
package/dist-types/Kafka.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
|
|
1
|
+
import type { HttpHandlerOptions as __HttpHandlerOptions, PaginationConfiguration, Paginator } from "@smithy/types";
|
|
2
2
|
import { BatchAssociateScramSecretCommandInput, BatchAssociateScramSecretCommandOutput } from "./commands/BatchAssociateScramSecretCommand";
|
|
3
3
|
import { BatchDisassociateScramSecretCommandInput, BatchDisassociateScramSecretCommandOutput } from "./commands/BatchDisassociateScramSecretCommand";
|
|
4
4
|
import { CreateClusterCommandInput, CreateClusterCommandOutput } from "./commands/CreateClusterCommand";
|
|
@@ -400,6 +400,104 @@ export interface Kafka {
|
|
|
400
400
|
updateStorage(args: UpdateStorageCommandInput, options?: __HttpHandlerOptions): Promise<UpdateStorageCommandOutput>;
|
|
401
401
|
updateStorage(args: UpdateStorageCommandInput, cb: (err: any, data?: UpdateStorageCommandOutput) => void): void;
|
|
402
402
|
updateStorage(args: UpdateStorageCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateStorageCommandOutput) => void): void;
|
|
403
|
+
/**
|
|
404
|
+
* @see {@link DescribeTopicPartitionsCommand}
|
|
405
|
+
* @param args - command input.
|
|
406
|
+
* @param paginationConfig - optional pagination config.
|
|
407
|
+
* @returns AsyncIterable of {@link DescribeTopicPartitionsCommandOutput}.
|
|
408
|
+
*/
|
|
409
|
+
paginateDescribeTopicPartitions(args: DescribeTopicPartitionsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeTopicPartitionsCommandOutput>;
|
|
410
|
+
/**
|
|
411
|
+
* @see {@link ListClientVpcConnectionsCommand}
|
|
412
|
+
* @param args - command input.
|
|
413
|
+
* @param paginationConfig - optional pagination config.
|
|
414
|
+
* @returns AsyncIterable of {@link ListClientVpcConnectionsCommandOutput}.
|
|
415
|
+
*/
|
|
416
|
+
paginateListClientVpcConnections(args: ListClientVpcConnectionsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListClientVpcConnectionsCommandOutput>;
|
|
417
|
+
/**
|
|
418
|
+
* @see {@link ListClusterOperationsCommand}
|
|
419
|
+
* @param args - command input.
|
|
420
|
+
* @param paginationConfig - optional pagination config.
|
|
421
|
+
* @returns AsyncIterable of {@link ListClusterOperationsCommandOutput}.
|
|
422
|
+
*/
|
|
423
|
+
paginateListClusterOperations(args: ListClusterOperationsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListClusterOperationsCommandOutput>;
|
|
424
|
+
/**
|
|
425
|
+
* @see {@link ListClusterOperationsV2Command}
|
|
426
|
+
* @param args - command input.
|
|
427
|
+
* @param paginationConfig - optional pagination config.
|
|
428
|
+
* @returns AsyncIterable of {@link ListClusterOperationsV2CommandOutput}.
|
|
429
|
+
*/
|
|
430
|
+
paginateListClusterOperationsV2(args: ListClusterOperationsV2CommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListClusterOperationsV2CommandOutput>;
|
|
431
|
+
/**
|
|
432
|
+
* @see {@link ListClustersCommand}
|
|
433
|
+
* @param args - command input.
|
|
434
|
+
* @param paginationConfig - optional pagination config.
|
|
435
|
+
* @returns AsyncIterable of {@link ListClustersCommandOutput}.
|
|
436
|
+
*/
|
|
437
|
+
paginateListClusters(args?: ListClustersCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListClustersCommandOutput>;
|
|
438
|
+
/**
|
|
439
|
+
* @see {@link ListClustersV2Command}
|
|
440
|
+
* @param args - command input.
|
|
441
|
+
* @param paginationConfig - optional pagination config.
|
|
442
|
+
* @returns AsyncIterable of {@link ListClustersV2CommandOutput}.
|
|
443
|
+
*/
|
|
444
|
+
paginateListClustersV2(args?: ListClustersV2CommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListClustersV2CommandOutput>;
|
|
445
|
+
/**
|
|
446
|
+
* @see {@link ListConfigurationRevisionsCommand}
|
|
447
|
+
* @param args - command input.
|
|
448
|
+
* @param paginationConfig - optional pagination config.
|
|
449
|
+
* @returns AsyncIterable of {@link ListConfigurationRevisionsCommandOutput}.
|
|
450
|
+
*/
|
|
451
|
+
paginateListConfigurationRevisions(args: ListConfigurationRevisionsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListConfigurationRevisionsCommandOutput>;
|
|
452
|
+
/**
|
|
453
|
+
* @see {@link ListConfigurationsCommand}
|
|
454
|
+
* @param args - command input.
|
|
455
|
+
* @param paginationConfig - optional pagination config.
|
|
456
|
+
* @returns AsyncIterable of {@link ListConfigurationsCommandOutput}.
|
|
457
|
+
*/
|
|
458
|
+
paginateListConfigurations(args?: ListConfigurationsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListConfigurationsCommandOutput>;
|
|
459
|
+
/**
|
|
460
|
+
* @see {@link ListKafkaVersionsCommand}
|
|
461
|
+
* @param args - command input.
|
|
462
|
+
* @param paginationConfig - optional pagination config.
|
|
463
|
+
* @returns AsyncIterable of {@link ListKafkaVersionsCommandOutput}.
|
|
464
|
+
*/
|
|
465
|
+
paginateListKafkaVersions(args?: ListKafkaVersionsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListKafkaVersionsCommandOutput>;
|
|
466
|
+
/**
|
|
467
|
+
* @see {@link ListNodesCommand}
|
|
468
|
+
* @param args - command input.
|
|
469
|
+
* @param paginationConfig - optional pagination config.
|
|
470
|
+
* @returns AsyncIterable of {@link ListNodesCommandOutput}.
|
|
471
|
+
*/
|
|
472
|
+
paginateListNodes(args: ListNodesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListNodesCommandOutput>;
|
|
473
|
+
/**
|
|
474
|
+
* @see {@link ListReplicatorsCommand}
|
|
475
|
+
* @param args - command input.
|
|
476
|
+
* @param paginationConfig - optional pagination config.
|
|
477
|
+
* @returns AsyncIterable of {@link ListReplicatorsCommandOutput}.
|
|
478
|
+
*/
|
|
479
|
+
paginateListReplicators(args?: ListReplicatorsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListReplicatorsCommandOutput>;
|
|
480
|
+
/**
|
|
481
|
+
* @see {@link ListScramSecretsCommand}
|
|
482
|
+
* @param args - command input.
|
|
483
|
+
* @param paginationConfig - optional pagination config.
|
|
484
|
+
* @returns AsyncIterable of {@link ListScramSecretsCommandOutput}.
|
|
485
|
+
*/
|
|
486
|
+
paginateListScramSecrets(args: ListScramSecretsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListScramSecretsCommandOutput>;
|
|
487
|
+
/**
|
|
488
|
+
* @see {@link ListTopicsCommand}
|
|
489
|
+
* @param args - command input.
|
|
490
|
+
* @param paginationConfig - optional pagination config.
|
|
491
|
+
* @returns AsyncIterable of {@link ListTopicsCommandOutput}.
|
|
492
|
+
*/
|
|
493
|
+
paginateListTopics(args: ListTopicsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListTopicsCommandOutput>;
|
|
494
|
+
/**
|
|
495
|
+
* @see {@link ListVpcConnectionsCommand}
|
|
496
|
+
* @param args - command input.
|
|
497
|
+
* @param paginationConfig - optional pagination config.
|
|
498
|
+
* @returns AsyncIterable of {@link ListVpcConnectionsCommandOutput}.
|
|
499
|
+
*/
|
|
500
|
+
paginateListVpcConnections(args?: ListVpcConnectionsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListVpcConnectionsCommandOutput>;
|
|
403
501
|
}
|
|
404
502
|
/**
|
|
405
503
|
* <p>The operations for managing an Amazon MSK cluster.</p>
|
|
@@ -1,4 +1,8 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import {
|
|
2
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
3
|
+
PaginationConfiguration,
|
|
4
|
+
Paginator,
|
|
5
|
+
} from "@smithy/types";
|
|
2
6
|
import {
|
|
3
7
|
BatchAssociateScramSecretCommandInput,
|
|
4
8
|
BatchAssociateScramSecretCommandOutput,
|
|
@@ -960,5 +964,103 @@ export interface Kafka {
|
|
|
960
964
|
options: __HttpHandlerOptions,
|
|
961
965
|
cb: (err: any, data?: UpdateStorageCommandOutput) => void
|
|
962
966
|
): void;
|
|
967
|
+
paginateDescribeTopicPartitions(
|
|
968
|
+
args: DescribeTopicPartitionsCommandInput,
|
|
969
|
+
paginationConfig?: Pick<
|
|
970
|
+
PaginationConfiguration,
|
|
971
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
972
|
+
>
|
|
973
|
+
): Paginator<DescribeTopicPartitionsCommandOutput>;
|
|
974
|
+
paginateListClientVpcConnections(
|
|
975
|
+
args: ListClientVpcConnectionsCommandInput,
|
|
976
|
+
paginationConfig?: Pick<
|
|
977
|
+
PaginationConfiguration,
|
|
978
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
979
|
+
>
|
|
980
|
+
): Paginator<ListClientVpcConnectionsCommandOutput>;
|
|
981
|
+
paginateListClusterOperations(
|
|
982
|
+
args: ListClusterOperationsCommandInput,
|
|
983
|
+
paginationConfig?: Pick<
|
|
984
|
+
PaginationConfiguration,
|
|
985
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
986
|
+
>
|
|
987
|
+
): Paginator<ListClusterOperationsCommandOutput>;
|
|
988
|
+
paginateListClusterOperationsV2(
|
|
989
|
+
args: ListClusterOperationsV2CommandInput,
|
|
990
|
+
paginationConfig?: Pick<
|
|
991
|
+
PaginationConfiguration,
|
|
992
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
993
|
+
>
|
|
994
|
+
): Paginator<ListClusterOperationsV2CommandOutput>;
|
|
995
|
+
paginateListClusters(
|
|
996
|
+
args?: ListClustersCommandInput,
|
|
997
|
+
paginationConfig?: Pick<
|
|
998
|
+
PaginationConfiguration,
|
|
999
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1000
|
+
>
|
|
1001
|
+
): Paginator<ListClustersCommandOutput>;
|
|
1002
|
+
paginateListClustersV2(
|
|
1003
|
+
args?: ListClustersV2CommandInput,
|
|
1004
|
+
paginationConfig?: Pick<
|
|
1005
|
+
PaginationConfiguration,
|
|
1006
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1007
|
+
>
|
|
1008
|
+
): Paginator<ListClustersV2CommandOutput>;
|
|
1009
|
+
paginateListConfigurationRevisions(
|
|
1010
|
+
args: ListConfigurationRevisionsCommandInput,
|
|
1011
|
+
paginationConfig?: Pick<
|
|
1012
|
+
PaginationConfiguration,
|
|
1013
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1014
|
+
>
|
|
1015
|
+
): Paginator<ListConfigurationRevisionsCommandOutput>;
|
|
1016
|
+
paginateListConfigurations(
|
|
1017
|
+
args?: ListConfigurationsCommandInput,
|
|
1018
|
+
paginationConfig?: Pick<
|
|
1019
|
+
PaginationConfiguration,
|
|
1020
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1021
|
+
>
|
|
1022
|
+
): Paginator<ListConfigurationsCommandOutput>;
|
|
1023
|
+
paginateListKafkaVersions(
|
|
1024
|
+
args?: ListKafkaVersionsCommandInput,
|
|
1025
|
+
paginationConfig?: Pick<
|
|
1026
|
+
PaginationConfiguration,
|
|
1027
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1028
|
+
>
|
|
1029
|
+
): Paginator<ListKafkaVersionsCommandOutput>;
|
|
1030
|
+
paginateListNodes(
|
|
1031
|
+
args: ListNodesCommandInput,
|
|
1032
|
+
paginationConfig?: Pick<
|
|
1033
|
+
PaginationConfiguration,
|
|
1034
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1035
|
+
>
|
|
1036
|
+
): Paginator<ListNodesCommandOutput>;
|
|
1037
|
+
paginateListReplicators(
|
|
1038
|
+
args?: ListReplicatorsCommandInput,
|
|
1039
|
+
paginationConfig?: Pick<
|
|
1040
|
+
PaginationConfiguration,
|
|
1041
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1042
|
+
>
|
|
1043
|
+
): Paginator<ListReplicatorsCommandOutput>;
|
|
1044
|
+
paginateListScramSecrets(
|
|
1045
|
+
args: ListScramSecretsCommandInput,
|
|
1046
|
+
paginationConfig?: Pick<
|
|
1047
|
+
PaginationConfiguration,
|
|
1048
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1049
|
+
>
|
|
1050
|
+
): Paginator<ListScramSecretsCommandOutput>;
|
|
1051
|
+
paginateListTopics(
|
|
1052
|
+
args: ListTopicsCommandInput,
|
|
1053
|
+
paginationConfig?: Pick<
|
|
1054
|
+
PaginationConfiguration,
|
|
1055
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1056
|
+
>
|
|
1057
|
+
): Paginator<ListTopicsCommandOutput>;
|
|
1058
|
+
paginateListVpcConnections(
|
|
1059
|
+
args?: ListVpcConnectionsCommandInput,
|
|
1060
|
+
paginationConfig?: Pick<
|
|
1061
|
+
PaginationConfiguration,
|
|
1062
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1063
|
+
>
|
|
1064
|
+
): Paginator<ListVpcConnectionsCommandOutput>;
|
|
963
1065
|
}
|
|
964
1066
|
export declare class Kafka extends KafkaClient implements Kafka {}
|
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.978.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-kafka",
|
|
@@ -21,38 +21,38 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
24
|
-
"@aws-sdk/core": "^3.973.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "^3.972.
|
|
27
|
-
"@aws-sdk/middleware-logger": "^3.972.
|
|
28
|
-
"@aws-sdk/middleware-recursion-detection": "^3.972.
|
|
29
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
30
|
-
"@aws-sdk/region-config-resolver": "^3.972.
|
|
31
|
-
"@aws-sdk/types": "^3.973.
|
|
24
|
+
"@aws-sdk/core": "^3.973.4",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "^3.972.2",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "^3.972.2",
|
|
27
|
+
"@aws-sdk/middleware-logger": "^3.972.2",
|
|
28
|
+
"@aws-sdk/middleware-recursion-detection": "^3.972.2",
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "^3.972.4",
|
|
30
|
+
"@aws-sdk/region-config-resolver": "^3.972.2",
|
|
31
|
+
"@aws-sdk/types": "^3.973.1",
|
|
32
32
|
"@aws-sdk/util-endpoints": "3.972.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-browser": "^3.972.
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "^3.972.
|
|
33
|
+
"@aws-sdk/util-user-agent-browser": "^3.972.2",
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "^3.972.2",
|
|
35
35
|
"@smithy/config-resolver": "^4.4.6",
|
|
36
|
-
"@smithy/core": "^3.
|
|
36
|
+
"@smithy/core": "^3.22.0",
|
|
37
37
|
"@smithy/fetch-http-handler": "^5.3.9",
|
|
38
38
|
"@smithy/hash-node": "^4.2.8",
|
|
39
39
|
"@smithy/invalid-dependency": "^4.2.8",
|
|
40
40
|
"@smithy/middleware-content-length": "^4.2.8",
|
|
41
|
-
"@smithy/middleware-endpoint": "^4.4.
|
|
42
|
-
"@smithy/middleware-retry": "^4.4.
|
|
41
|
+
"@smithy/middleware-endpoint": "^4.4.12",
|
|
42
|
+
"@smithy/middleware-retry": "^4.4.29",
|
|
43
43
|
"@smithy/middleware-serde": "^4.2.9",
|
|
44
44
|
"@smithy/middleware-stack": "^4.2.8",
|
|
45
45
|
"@smithy/node-config-provider": "^4.3.8",
|
|
46
46
|
"@smithy/node-http-handler": "^4.4.8",
|
|
47
47
|
"@smithy/protocol-http": "^5.3.8",
|
|
48
|
-
"@smithy/smithy-client": "^4.
|
|
48
|
+
"@smithy/smithy-client": "^4.11.1",
|
|
49
49
|
"@smithy/types": "^4.12.0",
|
|
50
50
|
"@smithy/url-parser": "^4.2.8",
|
|
51
51
|
"@smithy/util-base64": "^4.3.0",
|
|
52
52
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
53
53
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
54
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
55
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
54
|
+
"@smithy/util-defaults-mode-browser": "^4.3.28",
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^4.2.31",
|
|
56
56
|
"@smithy/util-endpoints": "^3.2.8",
|
|
57
57
|
"@smithy/util-middleware": "^4.2.8",
|
|
58
58
|
"@smithy/util-retry": "^4.2.8",
|