@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
|
@@ -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>;
|
|
@@ -2,17 +2,20 @@ import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/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";
|
|
5
|
+
import { CreateClusterV2CommandInput, CreateClusterV2CommandOutput } from "./commands/CreateClusterV2Command";
|
|
5
6
|
import { CreateConfigurationCommandInput, CreateConfigurationCommandOutput } from "./commands/CreateConfigurationCommand";
|
|
6
7
|
import { DeleteClusterCommandInput, DeleteClusterCommandOutput } from "./commands/DeleteClusterCommand";
|
|
7
8
|
import { DeleteConfigurationCommandInput, DeleteConfigurationCommandOutput } from "./commands/DeleteConfigurationCommand";
|
|
8
9
|
import { DescribeClusterCommandInput, DescribeClusterCommandOutput } from "./commands/DescribeClusterCommand";
|
|
9
10
|
import { DescribeClusterOperationCommandInput, DescribeClusterOperationCommandOutput } from "./commands/DescribeClusterOperationCommand";
|
|
11
|
+
import { DescribeClusterV2CommandInput, DescribeClusterV2CommandOutput } from "./commands/DescribeClusterV2Command";
|
|
10
12
|
import { DescribeConfigurationCommandInput, DescribeConfigurationCommandOutput } from "./commands/DescribeConfigurationCommand";
|
|
11
13
|
import { DescribeConfigurationRevisionCommandInput, DescribeConfigurationRevisionCommandOutput } from "./commands/DescribeConfigurationRevisionCommand";
|
|
12
14
|
import { GetBootstrapBrokersCommandInput, GetBootstrapBrokersCommandOutput } from "./commands/GetBootstrapBrokersCommand";
|
|
13
15
|
import { GetCompatibleKafkaVersionsCommandInput, GetCompatibleKafkaVersionsCommandOutput } from "./commands/GetCompatibleKafkaVersionsCommand";
|
|
14
16
|
import { ListClusterOperationsCommandInput, ListClusterOperationsCommandOutput } from "./commands/ListClusterOperationsCommand";
|
|
15
17
|
import { ListClustersCommandInput, ListClustersCommandOutput } from "./commands/ListClustersCommand";
|
|
18
|
+
import { ListClustersV2CommandInput, ListClustersV2CommandOutput } from "./commands/ListClustersV2Command";
|
|
16
19
|
import { ListConfigurationRevisionsCommandInput, ListConfigurationRevisionsCommandOutput } from "./commands/ListConfigurationRevisionsCommand";
|
|
17
20
|
import { ListConfigurationsCommandInput, ListConfigurationsCommandOutput } from "./commands/ListConfigurationsCommand";
|
|
18
21
|
import { ListKafkaVersionsCommandInput, ListKafkaVersionsCommandOutput } from "./commands/ListKafkaVersionsCommand";
|
|
@@ -47,6 +50,10 @@ export declare class Kafka extends KafkaClient {
|
|
|
47
50
|
createCluster(args: CreateClusterCommandInput, cb: (err: any, data?: CreateClusterCommandOutput) => void): void;
|
|
48
51
|
createCluster(args: CreateClusterCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateClusterCommandOutput) => void): void;
|
|
49
52
|
|
|
53
|
+
createClusterV2(args: CreateClusterV2CommandInput, options?: __HttpHandlerOptions): Promise<CreateClusterV2CommandOutput>;
|
|
54
|
+
createClusterV2(args: CreateClusterV2CommandInput, cb: (err: any, data?: CreateClusterV2CommandOutput) => void): void;
|
|
55
|
+
createClusterV2(args: CreateClusterV2CommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateClusterV2CommandOutput) => void): void;
|
|
56
|
+
|
|
50
57
|
createConfiguration(args: CreateConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<CreateConfigurationCommandOutput>;
|
|
51
58
|
createConfiguration(args: CreateConfigurationCommandInput, cb: (err: any, data?: CreateConfigurationCommandOutput) => void): void;
|
|
52
59
|
createConfiguration(args: CreateConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateConfigurationCommandOutput) => void): void;
|
|
@@ -67,6 +74,10 @@ export declare class Kafka extends KafkaClient {
|
|
|
67
74
|
describeClusterOperation(args: DescribeClusterOperationCommandInput, cb: (err: any, data?: DescribeClusterOperationCommandOutput) => void): void;
|
|
68
75
|
describeClusterOperation(args: DescribeClusterOperationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeClusterOperationCommandOutput) => void): void;
|
|
69
76
|
|
|
77
|
+
describeClusterV2(args: DescribeClusterV2CommandInput, options?: __HttpHandlerOptions): Promise<DescribeClusterV2CommandOutput>;
|
|
78
|
+
describeClusterV2(args: DescribeClusterV2CommandInput, cb: (err: any, data?: DescribeClusterV2CommandOutput) => void): void;
|
|
79
|
+
describeClusterV2(args: DescribeClusterV2CommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeClusterV2CommandOutput) => void): void;
|
|
80
|
+
|
|
70
81
|
describeConfiguration(args: DescribeConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<DescribeConfigurationCommandOutput>;
|
|
71
82
|
describeConfiguration(args: DescribeConfigurationCommandInput, cb: (err: any, data?: DescribeConfigurationCommandOutput) => void): void;
|
|
72
83
|
describeConfiguration(args: DescribeConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeConfigurationCommandOutput) => void): void;
|
|
@@ -91,6 +102,10 @@ export declare class Kafka extends KafkaClient {
|
|
|
91
102
|
listClusters(args: ListClustersCommandInput, cb: (err: any, data?: ListClustersCommandOutput) => void): void;
|
|
92
103
|
listClusters(args: ListClustersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListClustersCommandOutput) => void): void;
|
|
93
104
|
|
|
105
|
+
listClustersV2(args: ListClustersV2CommandInput, options?: __HttpHandlerOptions): Promise<ListClustersV2CommandOutput>;
|
|
106
|
+
listClustersV2(args: ListClustersV2CommandInput, cb: (err: any, data?: ListClustersV2CommandOutput) => void): void;
|
|
107
|
+
listClustersV2(args: ListClustersV2CommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListClustersV2CommandOutput) => void): void;
|
|
108
|
+
|
|
94
109
|
listConfigurationRevisions(args: ListConfigurationRevisionsCommandInput, options?: __HttpHandlerOptions): Promise<ListConfigurationRevisionsCommandOutput>;
|
|
95
110
|
listConfigurationRevisions(args: ListConfigurationRevisionsCommandInput, cb: (err: any, data?: ListConfigurationRevisionsCommandOutput) => void): void;
|
|
96
111
|
listConfigurationRevisions(args: ListConfigurationRevisionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListConfigurationRevisionsCommandOutput) => void): void;
|
|
@@ -9,17 +9,20 @@ import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encode
|
|
|
9
9
|
import { BatchAssociateScramSecretCommandInput, BatchAssociateScramSecretCommandOutput } from "./commands/BatchAssociateScramSecretCommand";
|
|
10
10
|
import { BatchDisassociateScramSecretCommandInput, BatchDisassociateScramSecretCommandOutput } from "./commands/BatchDisassociateScramSecretCommand";
|
|
11
11
|
import { CreateClusterCommandInput, CreateClusterCommandOutput } from "./commands/CreateClusterCommand";
|
|
12
|
+
import { CreateClusterV2CommandInput, CreateClusterV2CommandOutput } from "./commands/CreateClusterV2Command";
|
|
12
13
|
import { CreateConfigurationCommandInput, CreateConfigurationCommandOutput } from "./commands/CreateConfigurationCommand";
|
|
13
14
|
import { DeleteClusterCommandInput, DeleteClusterCommandOutput } from "./commands/DeleteClusterCommand";
|
|
14
15
|
import { DeleteConfigurationCommandInput, DeleteConfigurationCommandOutput } from "./commands/DeleteConfigurationCommand";
|
|
15
16
|
import { DescribeClusterCommandInput, DescribeClusterCommandOutput } from "./commands/DescribeClusterCommand";
|
|
16
17
|
import { DescribeClusterOperationCommandInput, DescribeClusterOperationCommandOutput } from "./commands/DescribeClusterOperationCommand";
|
|
18
|
+
import { DescribeClusterV2CommandInput, DescribeClusterV2CommandOutput } from "./commands/DescribeClusterV2Command";
|
|
17
19
|
import { DescribeConfigurationCommandInput, DescribeConfigurationCommandOutput } from "./commands/DescribeConfigurationCommand";
|
|
18
20
|
import { DescribeConfigurationRevisionCommandInput, DescribeConfigurationRevisionCommandOutput } from "./commands/DescribeConfigurationRevisionCommand";
|
|
19
21
|
import { GetBootstrapBrokersCommandInput, GetBootstrapBrokersCommandOutput } from "./commands/GetBootstrapBrokersCommand";
|
|
20
22
|
import { GetCompatibleKafkaVersionsCommandInput, GetCompatibleKafkaVersionsCommandOutput } from "./commands/GetCompatibleKafkaVersionsCommand";
|
|
21
23
|
import { ListClusterOperationsCommandInput, ListClusterOperationsCommandOutput } from "./commands/ListClusterOperationsCommand";
|
|
22
24
|
import { ListClustersCommandInput, ListClustersCommandOutput } from "./commands/ListClustersCommand";
|
|
25
|
+
import { ListClustersV2CommandInput, ListClustersV2CommandOutput } from "./commands/ListClustersV2Command";
|
|
23
26
|
import { ListConfigurationRevisionsCommandInput, ListConfigurationRevisionsCommandOutput } from "./commands/ListConfigurationRevisionsCommand";
|
|
24
27
|
import { ListConfigurationsCommandInput, ListConfigurationsCommandOutput } from "./commands/ListConfigurationsCommand";
|
|
25
28
|
import { ListKafkaVersionsCommandInput, ListKafkaVersionsCommandOutput } from "./commands/ListKafkaVersionsCommand";
|
|
@@ -38,8 +41,8 @@ import { UpdateConfigurationCommandInput, UpdateConfigurationCommandOutput } fro
|
|
|
38
41
|
import { UpdateConnectivityCommandInput, UpdateConnectivityCommandOutput } from "./commands/UpdateConnectivityCommand";
|
|
39
42
|
import { UpdateMonitoringCommandInput, UpdateMonitoringCommandOutput } from "./commands/UpdateMonitoringCommand";
|
|
40
43
|
import { UpdateSecurityCommandInput, UpdateSecurityCommandOutput } from "./commands/UpdateSecurityCommand";
|
|
41
|
-
export declare type ServiceInputTypes = BatchAssociateScramSecretCommandInput | BatchDisassociateScramSecretCommandInput | CreateClusterCommandInput | CreateConfigurationCommandInput | DeleteClusterCommandInput | DeleteConfigurationCommandInput | DescribeClusterCommandInput | DescribeClusterOperationCommandInput | DescribeConfigurationCommandInput | DescribeConfigurationRevisionCommandInput | GetBootstrapBrokersCommandInput | GetCompatibleKafkaVersionsCommandInput | ListClusterOperationsCommandInput | ListClustersCommandInput | ListConfigurationRevisionsCommandInput | ListConfigurationsCommandInput | ListKafkaVersionsCommandInput | ListNodesCommandInput | ListScramSecretsCommandInput | ListTagsForResourceCommandInput | RebootBrokerCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateBrokerCountCommandInput | UpdateBrokerStorageCommandInput | UpdateBrokerTypeCommandInput | UpdateClusterConfigurationCommandInput | UpdateClusterKafkaVersionCommandInput | UpdateConfigurationCommandInput | UpdateConnectivityCommandInput | UpdateMonitoringCommandInput | UpdateSecurityCommandInput;
|
|
42
|
-
export declare type ServiceOutputTypes = BatchAssociateScramSecretCommandOutput | BatchDisassociateScramSecretCommandOutput | CreateClusterCommandOutput | CreateConfigurationCommandOutput | DeleteClusterCommandOutput | DeleteConfigurationCommandOutput | DescribeClusterCommandOutput | DescribeClusterOperationCommandOutput | DescribeConfigurationCommandOutput | DescribeConfigurationRevisionCommandOutput | GetBootstrapBrokersCommandOutput | GetCompatibleKafkaVersionsCommandOutput | ListClusterOperationsCommandOutput | ListClustersCommandOutput | ListConfigurationRevisionsCommandOutput | ListConfigurationsCommandOutput | ListKafkaVersionsCommandOutput | ListNodesCommandOutput | ListScramSecretsCommandOutput | ListTagsForResourceCommandOutput | RebootBrokerCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateBrokerCountCommandOutput | UpdateBrokerStorageCommandOutput | UpdateBrokerTypeCommandOutput | UpdateClusterConfigurationCommandOutput | UpdateClusterKafkaVersionCommandOutput | UpdateConfigurationCommandOutput | UpdateConnectivityCommandOutput | UpdateMonitoringCommandOutput | UpdateSecurityCommandOutput;
|
|
44
|
+
export declare type ServiceInputTypes = BatchAssociateScramSecretCommandInput | BatchDisassociateScramSecretCommandInput | CreateClusterCommandInput | CreateClusterV2CommandInput | CreateConfigurationCommandInput | DeleteClusterCommandInput | DeleteConfigurationCommandInput | DescribeClusterCommandInput | DescribeClusterOperationCommandInput | DescribeClusterV2CommandInput | DescribeConfigurationCommandInput | DescribeConfigurationRevisionCommandInput | GetBootstrapBrokersCommandInput | GetCompatibleKafkaVersionsCommandInput | ListClusterOperationsCommandInput | ListClustersCommandInput | ListClustersV2CommandInput | ListConfigurationRevisionsCommandInput | ListConfigurationsCommandInput | ListKafkaVersionsCommandInput | ListNodesCommandInput | ListScramSecretsCommandInput | ListTagsForResourceCommandInput | RebootBrokerCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateBrokerCountCommandInput | UpdateBrokerStorageCommandInput | UpdateBrokerTypeCommandInput | UpdateClusterConfigurationCommandInput | UpdateClusterKafkaVersionCommandInput | UpdateConfigurationCommandInput | UpdateConnectivityCommandInput | UpdateMonitoringCommandInput | UpdateSecurityCommandInput;
|
|
45
|
+
export declare type ServiceOutputTypes = BatchAssociateScramSecretCommandOutput | BatchDisassociateScramSecretCommandOutput | CreateClusterCommandOutput | CreateClusterV2CommandOutput | CreateConfigurationCommandOutput | DeleteClusterCommandOutput | DeleteConfigurationCommandOutput | DescribeClusterCommandOutput | DescribeClusterOperationCommandOutput | DescribeClusterV2CommandOutput | DescribeConfigurationCommandOutput | DescribeConfigurationRevisionCommandOutput | GetBootstrapBrokersCommandOutput | GetCompatibleKafkaVersionsCommandOutput | ListClusterOperationsCommandOutput | ListClustersCommandOutput | ListClustersV2CommandOutput | ListConfigurationRevisionsCommandOutput | ListConfigurationsCommandOutput | ListKafkaVersionsCommandOutput | ListNodesCommandOutput | ListScramSecretsCommandOutput | ListTagsForResourceCommandOutput | RebootBrokerCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateBrokerCountCommandOutput | UpdateBrokerStorageCommandOutput | UpdateBrokerTypeCommandOutput | UpdateClusterConfigurationCommandOutput | UpdateClusterKafkaVersionCommandOutput | UpdateConfigurationCommandOutput | UpdateConnectivityCommandOutput | UpdateMonitoringCommandOutput | UpdateSecurityCommandOutput;
|
|
43
46
|
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
44
47
|
|
|
45
48
|
requestHandler?: __HttpHandler;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { KafkaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaClient";
|
|
4
|
+
import { CreateClusterV2Request, CreateClusterV2Response } from "../models/models_0";
|
|
5
|
+
export interface CreateClusterV2CommandInput extends CreateClusterV2Request {
|
|
6
|
+
}
|
|
7
|
+
export interface CreateClusterV2CommandOutput extends CreateClusterV2Response, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class CreateClusterV2Command extends $Command<CreateClusterV2CommandInput, CreateClusterV2CommandOutput, KafkaClientResolvedConfig> {
|
|
11
|
+
readonly input: CreateClusterV2CommandInput;
|
|
12
|
+
constructor(input: CreateClusterV2CommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KafkaClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateClusterV2CommandInput, CreateClusterV2CommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { KafkaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaClient";
|
|
4
|
+
import { DescribeClusterV2Request, DescribeClusterV2Response } from "../models/models_0";
|
|
5
|
+
export interface DescribeClusterV2CommandInput extends DescribeClusterV2Request {
|
|
6
|
+
}
|
|
7
|
+
export interface DescribeClusterV2CommandOutput extends DescribeClusterV2Response, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class DescribeClusterV2Command extends $Command<DescribeClusterV2CommandInput, DescribeClusterV2CommandOutput, KafkaClientResolvedConfig> {
|
|
11
|
+
readonly input: DescribeClusterV2CommandInput;
|
|
12
|
+
constructor(input: DescribeClusterV2CommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KafkaClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeClusterV2CommandInput, DescribeClusterV2CommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { KafkaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaClient";
|
|
4
|
+
import { ListClustersV2Request, ListClustersV2Response } from "../models/models_0";
|
|
5
|
+
export interface ListClustersV2CommandInput extends ListClustersV2Request {
|
|
6
|
+
}
|
|
7
|
+
export interface ListClustersV2CommandOutput extends ListClustersV2Response, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class ListClustersV2Command extends $Command<ListClustersV2CommandInput, ListClustersV2CommandOutput, KafkaClientResolvedConfig> {
|
|
11
|
+
readonly input: ListClustersV2CommandInput;
|
|
12
|
+
constructor(input: ListClustersV2CommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KafkaClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListClustersV2CommandInput, ListClustersV2CommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -1,17 +1,20 @@
|
|
|
1
1
|
export * from "./BatchAssociateScramSecretCommand";
|
|
2
2
|
export * from "./BatchDisassociateScramSecretCommand";
|
|
3
3
|
export * from "./CreateClusterCommand";
|
|
4
|
+
export * from "./CreateClusterV2Command";
|
|
4
5
|
export * from "./CreateConfigurationCommand";
|
|
5
6
|
export * from "./DeleteClusterCommand";
|
|
6
7
|
export * from "./DeleteConfigurationCommand";
|
|
7
8
|
export * from "./DescribeClusterCommand";
|
|
8
9
|
export * from "./DescribeClusterOperationCommand";
|
|
10
|
+
export * from "./DescribeClusterV2Command";
|
|
9
11
|
export * from "./DescribeConfigurationCommand";
|
|
10
12
|
export * from "./DescribeConfigurationRevisionCommand";
|
|
11
13
|
export * from "./GetBootstrapBrokersCommand";
|
|
12
14
|
export * from "./GetCompatibleKafkaVersionsCommand";
|
|
13
15
|
export * from "./ListClusterOperationsCommand";
|
|
14
16
|
export * from "./ListClustersCommand";
|
|
17
|
+
export * from "./ListClustersV2Command";
|
|
15
18
|
export * from "./ListConfigurationRevisionsCommand";
|
|
16
19
|
export * from "./ListConfigurationsCommand";
|
|
17
20
|
export * from "./ListKafkaVersionsCommand";
|
|
@@ -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;
|
|
@@ -703,52 +843,54 @@ export declare namespace ConflictException {
|
|
|
703
843
|
|
|
704
844
|
const filterSensitiveLog: (obj: ConflictException) => any;
|
|
705
845
|
}
|
|
706
|
-
|
|
707
|
-
export interface JmxExporterInfo {
|
|
846
|
+
export interface CreateClusterRequest {
|
|
708
847
|
|
|
709
|
-
|
|
710
|
-
}
|
|
711
|
-
export declare namespace JmxExporterInfo {
|
|
848
|
+
BrokerNodeGroupInfo: BrokerNodeGroupInfo | undefined;
|
|
712
849
|
|
|
713
|
-
|
|
714
|
-
}
|
|
715
|
-
|
|
716
|
-
export interface NodeExporterInfo {
|
|
850
|
+
ClientAuthentication?: ClientAuthentication;
|
|
717
851
|
|
|
718
|
-
|
|
719
|
-
}
|
|
720
|
-
export declare namespace NodeExporterInfo {
|
|
852
|
+
ClusterName: string | undefined;
|
|
721
853
|
|
|
722
|
-
|
|
723
|
-
}
|
|
724
|
-
|
|
725
|
-
export interface PrometheusInfo {
|
|
854
|
+
ConfigurationInfo?: ConfigurationInfo;
|
|
726
855
|
|
|
727
|
-
|
|
856
|
+
EncryptionInfo?: EncryptionInfo;
|
|
728
857
|
|
|
729
|
-
|
|
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
|
+
};
|
|
730
870
|
}
|
|
731
|
-
export declare namespace
|
|
871
|
+
export declare namespace CreateClusterRequest {
|
|
732
872
|
|
|
733
|
-
const filterSensitiveLog: (obj:
|
|
873
|
+
const filterSensitiveLog: (obj: CreateClusterRequest) => any;
|
|
734
874
|
}
|
|
735
|
-
|
|
736
|
-
export interface OpenMonitoringInfo {
|
|
875
|
+
export interface CreateClusterResponse {
|
|
737
876
|
|
|
738
|
-
|
|
877
|
+
ClusterArn?: string;
|
|
878
|
+
|
|
879
|
+
ClusterName?: string;
|
|
880
|
+
|
|
881
|
+
State?: ClusterState | string;
|
|
739
882
|
}
|
|
740
|
-
export declare namespace
|
|
883
|
+
export declare namespace CreateClusterResponse {
|
|
741
884
|
|
|
742
|
-
const filterSensitiveLog: (obj:
|
|
885
|
+
const filterSensitiveLog: (obj: CreateClusterResponse) => any;
|
|
743
886
|
}
|
|
744
|
-
|
|
887
|
+
|
|
888
|
+
export interface ProvisionedRequest {
|
|
745
889
|
|
|
746
890
|
BrokerNodeGroupInfo: BrokerNodeGroupInfo | undefined;
|
|
747
891
|
|
|
748
892
|
ClientAuthentication?: ClientAuthentication;
|
|
749
893
|
|
|
750
|
-
ClusterName: string | undefined;
|
|
751
|
-
|
|
752
894
|
ConfigurationInfo?: ConfigurationInfo;
|
|
753
895
|
|
|
754
896
|
EncryptionInfo?: EncryptionInfo;
|
|
@@ -758,29 +900,55 @@ export interface CreateClusterRequest {
|
|
|
758
900
|
OpenMonitoring?: OpenMonitoringInfo;
|
|
759
901
|
|
|
760
902
|
KafkaVersion: string | undefined;
|
|
903
|
+
|
|
761
904
|
LoggingInfo?: LoggingInfo;
|
|
762
905
|
|
|
763
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;
|
|
764
926
|
|
|
765
927
|
Tags?: {
|
|
766
928
|
[key: string]: string;
|
|
767
929
|
};
|
|
930
|
+
|
|
931
|
+
Provisioned?: ProvisionedRequest;
|
|
932
|
+
|
|
933
|
+
Serverless?: ServerlessRequest;
|
|
768
934
|
}
|
|
769
|
-
export declare namespace
|
|
935
|
+
export declare namespace CreateClusterV2Request {
|
|
770
936
|
|
|
771
|
-
const filterSensitiveLog: (obj:
|
|
937
|
+
const filterSensitiveLog: (obj: CreateClusterV2Request) => any;
|
|
772
938
|
}
|
|
773
|
-
export interface
|
|
939
|
+
export interface CreateClusterV2Response {
|
|
774
940
|
|
|
775
941
|
ClusterArn?: string;
|
|
776
942
|
|
|
777
943
|
ClusterName?: string;
|
|
778
944
|
|
|
779
945
|
State?: ClusterState | string;
|
|
946
|
+
|
|
947
|
+
ClusterType?: ClusterType | string;
|
|
780
948
|
}
|
|
781
|
-
export declare namespace
|
|
949
|
+
export declare namespace CreateClusterV2Response {
|
|
782
950
|
|
|
783
|
-
const filterSensitiveLog: (obj:
|
|
951
|
+
const filterSensitiveLog: (obj: CreateClusterV2Response) => any;
|
|
784
952
|
}
|
|
785
953
|
export interface CreateConfigurationRequest {
|
|
786
954
|
|
|
@@ -882,6 +1050,22 @@ export declare namespace DescribeClusterOperationResponse {
|
|
|
882
1050
|
|
|
883
1051
|
const filterSensitiveLog: (obj: DescribeClusterOperationResponse) => any;
|
|
884
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
|
+
}
|
|
885
1069
|
export interface DescribeConfigurationRequest {
|
|
886
1070
|
|
|
887
1071
|
Arn: string | undefined;
|
|
@@ -1024,6 +1208,30 @@ export declare namespace ListClustersResponse {
|
|
|
1024
1208
|
|
|
1025
1209
|
const filterSensitiveLog: (obj: ListClustersResponse) => any;
|
|
1026
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
|
+
}
|
|
1027
1235
|
export interface ListConfigurationRevisionsRequest {
|
|
1028
1236
|
|
|
1029
1237
|
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>;
|