@aws-sdk/client-kafka 3.43.0 → 3.44.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 +11 -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/models/models_0.js +132 -43
- 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-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/models/models_0.js +92 -31
- 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-types/Kafka.d.ts +21 -0
- package/dist-types/KafkaClient.d.ts +5 -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/index.d.ts +3 -0
- package/dist-types/models/models_0.d.ts +432 -70
- 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/ts3.4/Kafka.d.ts +15 -0
- package/dist-types/ts3.4/KafkaClient.d.ts +5 -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/index.d.ts +3 -0
- package/dist-types/ts3.4/models/models_0.d.ts +256 -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 +9 -0
- package/package.json +1 -1
|
@@ -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>;
|
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.44.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "yarn build:cjs && yarn build:es && yarn build:types",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.json",
|