@aws-sdk/client-kafka 3.39.0 → 3.43.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +41 -0
- package/dist-cjs/Kafka.js +15 -0
- package/dist-cjs/commands/UpdateConnectivityCommand.js +36 -0
- package/dist-cjs/commands/index.js +1 -0
- package/dist-cjs/endpoints.js +74 -5
- package/dist-cjs/models/models_0.js +27 -3
- package/dist-cjs/protocols/Aws_restJson1.js +175 -2
- package/dist-cjs/runtimeConfig.browser.js +6 -3
- package/dist-cjs/runtimeConfig.js +5 -3
- package/dist-es/Kafka.js +15 -0
- package/dist-es/commands/UpdateConnectivityCommand.js +39 -0
- package/dist-es/commands/index.js +1 -0
- package/dist-es/endpoints.js +74 -5
- package/dist-es/models/models_0.js +16 -0
- package/dist-es/protocols/Aws_restJson1.js +185 -1
- package/dist-es/runtimeConfig.browser.js +3 -2
- package/dist-es/runtimeConfig.js +3 -3
- package/dist-types/Kafka.d.ts +8 -1
- package/dist-types/KafkaClient.d.ts +11 -2
- package/dist-types/commands/BatchAssociateScramSecretCommand.d.ts +1 -1
- package/dist-types/commands/BatchDisassociateScramSecretCommand.d.ts +1 -1
- package/dist-types/commands/CreateClusterCommand.d.ts +1 -1
- package/dist-types/commands/CreateConfigurationCommand.d.ts +1 -1
- package/dist-types/commands/DeleteClusterCommand.d.ts +1 -1
- package/dist-types/commands/DeleteConfigurationCommand.d.ts +1 -1
- package/dist-types/commands/DescribeClusterCommand.d.ts +1 -1
- package/dist-types/commands/DescribeClusterOperationCommand.d.ts +1 -1
- package/dist-types/commands/DescribeConfigurationCommand.d.ts +1 -1
- package/dist-types/commands/DescribeConfigurationRevisionCommand.d.ts +1 -1
- package/dist-types/commands/GetBootstrapBrokersCommand.d.ts +1 -1
- package/dist-types/commands/GetCompatibleKafkaVersionsCommand.d.ts +1 -1
- package/dist-types/commands/ListClusterOperationsCommand.d.ts +1 -1
- package/dist-types/commands/ListClustersCommand.d.ts +1 -1
- package/dist-types/commands/ListConfigurationRevisionsCommand.d.ts +1 -1
- package/dist-types/commands/ListConfigurationsCommand.d.ts +1 -1
- package/dist-types/commands/ListKafkaVersionsCommand.d.ts +2 -2
- package/dist-types/commands/ListNodesCommand.d.ts +1 -1
- package/dist-types/commands/ListScramSecretsCommand.d.ts +1 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/RebootBrokerCommand.d.ts +1 -1
- package/dist-types/commands/TagResourceCommand.d.ts +1 -1
- package/dist-types/commands/UntagResourceCommand.d.ts +1 -1
- package/dist-types/commands/UpdateBrokerCountCommand.d.ts +1 -1
- package/dist-types/commands/UpdateBrokerStorageCommand.d.ts +1 -1
- package/dist-types/commands/UpdateBrokerTypeCommand.d.ts +1 -1
- package/dist-types/commands/UpdateClusterConfigurationCommand.d.ts +1 -1
- package/dist-types/commands/UpdateClusterKafkaVersionCommand.d.ts +1 -1
- package/dist-types/commands/UpdateConfigurationCommand.d.ts +1 -1
- package/dist-types/commands/UpdateConnectivityCommand.d.ts +35 -0
- package/dist-types/commands/UpdateMonitoringCommand.d.ts +1 -1
- package/dist-types/commands/UpdateSecurityCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +112 -23
- package/dist-types/protocols/Aws_restJson1.d.ts +3 -0
- package/dist-types/runtimeConfig.browser.d.ts +2 -0
- package/dist-types/runtimeConfig.d.ts +2 -0
- package/dist-types/runtimeConfig.native.d.ts +2 -0
- package/dist-types/ts3.4/Kafka.d.ts +5 -0
- package/dist-types/ts3.4/KafkaClient.d.ts +7 -2
- package/dist-types/ts3.4/commands/UpdateConnectivityCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +51 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +3 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +2 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +2 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +2 -0
- package/package.json +23 -23
|
@@ -20,7 +20,7 @@ export interface DescribeClusterCommandOutput extends DescribeClusterResponse, _
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link DescribeClusterCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link DescribeClusterCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link KafkaClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link KafkaClientResolvedConfig | config} for KafkaClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class DescribeClusterCommand extends $Command<DescribeClusterCommandInput, DescribeClusterCommandOutput, KafkaClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface DescribeClusterOperationCommandOutput extends DescribeClusterOp
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link DescribeClusterOperationCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link DescribeClusterOperationCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link KafkaClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link KafkaClientResolvedConfig | config} for KafkaClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class DescribeClusterOperationCommand extends $Command<DescribeClusterOperationCommandInput, DescribeClusterOperationCommandOutput, KafkaClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface DescribeConfigurationCommandOutput extends DescribeConfiguratio
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link DescribeConfigurationCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link DescribeConfigurationCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link KafkaClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link KafkaClientResolvedConfig | config} for KafkaClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class DescribeConfigurationCommand extends $Command<DescribeConfigurationCommandInput, DescribeConfigurationCommandOutput, KafkaClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface DescribeConfigurationRevisionCommandOutput extends DescribeConf
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link DescribeConfigurationRevisionCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link DescribeConfigurationRevisionCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link KafkaClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link KafkaClientResolvedConfig | config} for KafkaClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class DescribeConfigurationRevisionCommand extends $Command<DescribeConfigurationRevisionCommandInput, DescribeConfigurationRevisionCommandOutput, KafkaClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface GetBootstrapBrokersCommandOutput extends GetBootstrapBrokersRes
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link GetBootstrapBrokersCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link GetBootstrapBrokersCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link KafkaClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link KafkaClientResolvedConfig | config} for KafkaClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class GetBootstrapBrokersCommand extends $Command<GetBootstrapBrokersCommandInput, GetBootstrapBrokersCommandOutput, KafkaClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface GetCompatibleKafkaVersionsCommandOutput extends GetCompatibleKa
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link GetCompatibleKafkaVersionsCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link GetCompatibleKafkaVersionsCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link KafkaClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link KafkaClientResolvedConfig | config} for KafkaClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class GetCompatibleKafkaVersionsCommand extends $Command<GetCompatibleKafkaVersionsCommandInput, GetCompatibleKafkaVersionsCommandOutput, KafkaClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface ListClusterOperationsCommandOutput extends ListClusterOperation
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link ListClusterOperationsCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link ListClusterOperationsCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link KafkaClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link KafkaClientResolvedConfig | config} for KafkaClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class ListClusterOperationsCommand extends $Command<ListClusterOperationsCommandInput, ListClusterOperationsCommandOutput, KafkaClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface ListClustersCommandOutput extends ListClustersResponse, __Metad
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link ListClustersCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link ListClustersCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link KafkaClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link KafkaClientResolvedConfig | config} for KafkaClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class ListClustersCommand extends $Command<ListClustersCommandInput, ListClustersCommandOutput, KafkaClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface ListConfigurationRevisionsCommandOutput extends ListConfigurati
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link ListConfigurationRevisionsCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link ListConfigurationRevisionsCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link KafkaClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link KafkaClientResolvedConfig | config} for KafkaClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class ListConfigurationRevisionsCommand extends $Command<ListConfigurationRevisionsCommandInput, ListConfigurationRevisionsCommandOutput, KafkaClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface ListConfigurationsCommandOutput extends ListConfigurationsRespo
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link ListConfigurationsCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link ListConfigurationsCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link KafkaClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link KafkaClientResolvedConfig | config} for KafkaClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class ListConfigurationsCommand extends $Command<ListConfigurationsCommandInput, ListConfigurationsCommandOutput, KafkaClientResolvedConfig> {
|
|
@@ -7,7 +7,7 @@ export interface ListKafkaVersionsCommandInput extends ListKafkaVersionsRequest
|
|
|
7
7
|
export interface ListKafkaVersionsCommandOutput extends ListKafkaVersionsResponse, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
* <p>Returns a list of Kafka versions.</p>
|
|
10
|
+
* <p>Returns a list of Apache Kafka versions.</p>
|
|
11
11
|
* @example
|
|
12
12
|
* Use a bare-bones client and the command you need to make an API call.
|
|
13
13
|
* ```javascript
|
|
@@ -20,7 +20,7 @@ export interface ListKafkaVersionsCommandOutput extends ListKafkaVersionsRespons
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link ListKafkaVersionsCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link ListKafkaVersionsCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link KafkaClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link KafkaClientResolvedConfig | config} for KafkaClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class ListKafkaVersionsCommand extends $Command<ListKafkaVersionsCommandInput, ListKafkaVersionsCommandOutput, KafkaClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface ListNodesCommandOutput extends ListNodesResponse, __MetadataBea
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link ListNodesCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link ListNodesCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link KafkaClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link KafkaClientResolvedConfig | config} for KafkaClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class ListNodesCommand extends $Command<ListNodesCommandInput, ListNodesCommandOutput, KafkaClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface ListScramSecretsCommandOutput extends ListScramSecretsResponse,
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link ListScramSecretsCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link ListScramSecretsCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link KafkaClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link KafkaClientResolvedConfig | config} for KafkaClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class ListScramSecretsCommand extends $Command<ListScramSecretsCommandInput, ListScramSecretsCommandOutput, KafkaClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link ListTagsForResourceCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link ListTagsForResourceCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link KafkaClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link KafkaClientResolvedConfig | config} for KafkaClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, KafkaClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface RebootBrokerCommandOutput extends RebootBrokerResponse, __Metad
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link RebootBrokerCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link RebootBrokerCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link KafkaClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link KafkaClientResolvedConfig | config} for KafkaClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class RebootBrokerCommand extends $Command<RebootBrokerCommandInput, RebootBrokerCommandOutput, KafkaClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface TagResourceCommandOutput extends __MetadataBearer {
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link TagResourceCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link TagResourceCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link KafkaClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link KafkaClientResolvedConfig | config} for KafkaClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, KafkaClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface UntagResourceCommandOutput extends __MetadataBearer {
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link UntagResourceCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link UntagResourceCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link KafkaClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link KafkaClientResolvedConfig | config} for KafkaClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, KafkaClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface UpdateBrokerCountCommandOutput extends UpdateBrokerCountRespons
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link UpdateBrokerCountCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link UpdateBrokerCountCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link KafkaClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link KafkaClientResolvedConfig | config} for KafkaClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class UpdateBrokerCountCommand extends $Command<UpdateBrokerCountCommandInput, UpdateBrokerCountCommandOutput, KafkaClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface UpdateBrokerStorageCommandOutput extends UpdateBrokerStorageRes
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link UpdateBrokerStorageCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link UpdateBrokerStorageCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link KafkaClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link KafkaClientResolvedConfig | config} for KafkaClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class UpdateBrokerStorageCommand extends $Command<UpdateBrokerStorageCommandInput, UpdateBrokerStorageCommandOutput, KafkaClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface UpdateBrokerTypeCommandOutput extends UpdateBrokerTypeResponse,
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link UpdateBrokerTypeCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link UpdateBrokerTypeCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link KafkaClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link KafkaClientResolvedConfig | config} for KafkaClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class UpdateBrokerTypeCommand extends $Command<UpdateBrokerTypeCommandInput, UpdateBrokerTypeCommandOutput, KafkaClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface UpdateClusterConfigurationCommandOutput extends UpdateClusterCo
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link UpdateClusterConfigurationCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link UpdateClusterConfigurationCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link KafkaClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link KafkaClientResolvedConfig | config} for KafkaClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class UpdateClusterConfigurationCommand extends $Command<UpdateClusterConfigurationCommandInput, UpdateClusterConfigurationCommandOutput, KafkaClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface UpdateClusterKafkaVersionCommandOutput extends UpdateClusterKaf
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link UpdateClusterKafkaVersionCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link UpdateClusterKafkaVersionCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link KafkaClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link KafkaClientResolvedConfig | config} for KafkaClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class UpdateClusterKafkaVersionCommand extends $Command<UpdateClusterKafkaVersionCommandInput, UpdateClusterKafkaVersionCommandOutput, KafkaClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface UpdateConfigurationCommandOutput extends UpdateConfigurationRes
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link UpdateConfigurationCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link UpdateConfigurationCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link KafkaClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link KafkaClientResolvedConfig | config} for KafkaClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class UpdateConfigurationCommand extends $Command<UpdateConfigurationCommandInput, UpdateConfigurationCommandOutput, KafkaClientResolvedConfig> {
|
|
@@ -0,0 +1,35 @@
|
|
|
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 { UpdateConnectivityRequest, UpdateConnectivityResponse } from "../models/models_0";
|
|
5
|
+
export interface UpdateConnectivityCommandInput extends UpdateConnectivityRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface UpdateConnectivityCommandOutput extends UpdateConnectivityResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* <p>Updates the cluster's connectivity configuration.</p>
|
|
11
|
+
* @example
|
|
12
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
13
|
+
* ```javascript
|
|
14
|
+
* import { KafkaClient, UpdateConnectivityCommand } from "@aws-sdk/client-kafka"; // ES Modules import
|
|
15
|
+
* // const { KafkaClient, UpdateConnectivityCommand } = require("@aws-sdk/client-kafka"); // CommonJS import
|
|
16
|
+
* const client = new KafkaClient(config);
|
|
17
|
+
* const command = new UpdateConnectivityCommand(input);
|
|
18
|
+
* const response = await client.send(command);
|
|
19
|
+
* ```
|
|
20
|
+
*
|
|
21
|
+
* @see {@link UpdateConnectivityCommandInput} for command's `input` shape.
|
|
22
|
+
* @see {@link UpdateConnectivityCommandOutput} for command's `response` shape.
|
|
23
|
+
* @see {@link KafkaClientResolvedConfig | config} for KafkaClient's `config` shape.
|
|
24
|
+
*
|
|
25
|
+
*/
|
|
26
|
+
export declare class UpdateConnectivityCommand extends $Command<UpdateConnectivityCommandInput, UpdateConnectivityCommandOutput, KafkaClientResolvedConfig> {
|
|
27
|
+
readonly input: UpdateConnectivityCommandInput;
|
|
28
|
+
constructor(input: UpdateConnectivityCommandInput);
|
|
29
|
+
/**
|
|
30
|
+
* @internal
|
|
31
|
+
*/
|
|
32
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KafkaClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateConnectivityCommandInput, UpdateConnectivityCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -20,7 +20,7 @@ export interface UpdateMonitoringCommandOutput extends UpdateMonitoringResponse,
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link UpdateMonitoringCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link UpdateMonitoringCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link KafkaClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link KafkaClientResolvedConfig | config} for KafkaClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class UpdateMonitoringCommand extends $Command<UpdateMonitoringCommandInput, UpdateMonitoringCommandOutput, KafkaClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface UpdateSecurityCommandOutput extends UpdateSecurityResponse, __M
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link UpdateSecurityCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link UpdateSecurityCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link KafkaClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link KafkaClientResolvedConfig | config} for KafkaClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class UpdateSecurityCommand extends $Command<UpdateSecurityCommandInput, UpdateSecurityCommandOutput, KafkaClientResolvedConfig> {
|
|
@@ -27,5 +27,6 @@ export * from "./UpdateBrokerTypeCommand";
|
|
|
27
27
|
export * from "./UpdateClusterConfigurationCommand";
|
|
28
28
|
export * from "./UpdateClusterKafkaVersionCommand";
|
|
29
29
|
export * from "./UpdateConfigurationCommand";
|
|
30
|
+
export * from "./UpdateConnectivityCommand";
|
|
30
31
|
export * from "./UpdateMonitoringCommand";
|
|
31
32
|
export * from "./UpdateSecurityCommand";
|
|
@@ -22,7 +22,37 @@ export declare enum BrokerAZDistribution {
|
|
|
22
22
|
DEFAULT = "DEFAULT"
|
|
23
23
|
}
|
|
24
24
|
/**
|
|
25
|
-
*
|
|
25
|
+
* Public access control for brokers.
|
|
26
|
+
*/
|
|
27
|
+
export interface PublicAccess {
|
|
28
|
+
/**
|
|
29
|
+
* <p>The value DISABLED indicates that public access is turned off. SERVICE_PROVIDED_EIPS indicates that public access is turned on.</p>
|
|
30
|
+
*/
|
|
31
|
+
Type?: string;
|
|
32
|
+
}
|
|
33
|
+
export declare namespace PublicAccess {
|
|
34
|
+
/**
|
|
35
|
+
* @internal
|
|
36
|
+
*/
|
|
37
|
+
const filterSensitiveLog: (obj: PublicAccess) => any;
|
|
38
|
+
}
|
|
39
|
+
/**
|
|
40
|
+
* <p>Information about the broker access configuration.</p>
|
|
41
|
+
*/
|
|
42
|
+
export interface ConnectivityInfo {
|
|
43
|
+
/**
|
|
44
|
+
* <p>Public access control for brokers.</p>
|
|
45
|
+
*/
|
|
46
|
+
PublicAccess?: PublicAccess;
|
|
47
|
+
}
|
|
48
|
+
export declare namespace ConnectivityInfo {
|
|
49
|
+
/**
|
|
50
|
+
* @internal
|
|
51
|
+
*/
|
|
52
|
+
const filterSensitiveLog: (obj: ConnectivityInfo) => any;
|
|
53
|
+
}
|
|
54
|
+
/**
|
|
55
|
+
* <p>Contains information about the EBS storage volumes attached to Apache Kafka broker nodes.</p>
|
|
26
56
|
*/
|
|
27
57
|
export interface EBSStorageInfo {
|
|
28
58
|
/**
|
|
@@ -52,7 +82,7 @@ export declare namespace StorageInfo {
|
|
|
52
82
|
const filterSensitiveLog: (obj: StorageInfo) => any;
|
|
53
83
|
}
|
|
54
84
|
/**
|
|
55
|
-
* <p>Describes the setup to be used for Kafka broker nodes in the cluster.</p>
|
|
85
|
+
* <p>Describes the setup to be used for Apache Kafka broker nodes in the cluster.</p>
|
|
56
86
|
*/
|
|
57
87
|
export interface BrokerNodeGroupInfo {
|
|
58
88
|
/**
|
|
@@ -65,7 +95,7 @@ export interface BrokerNodeGroupInfo {
|
|
|
65
95
|
*/
|
|
66
96
|
ClientSubnets: string[] | undefined;
|
|
67
97
|
/**
|
|
68
|
-
* <p>The type of Amazon EC2 instances to use for Kafka brokers. The following instance types are allowed: kafka.m5.large, kafka.m5.xlarge, kafka.m5.2xlarge,
|
|
98
|
+
* <p>The type of Amazon EC2 instances to use for Apache Kafka brokers. The following instance types are allowed: kafka.m5.large, kafka.m5.xlarge, kafka.m5.2xlarge,
|
|
69
99
|
* kafka.m5.4xlarge, kafka.m5.12xlarge, and kafka.m5.24xlarge.</p>
|
|
70
100
|
*/
|
|
71
101
|
InstanceType: string | undefined;
|
|
@@ -77,6 +107,10 @@ export interface BrokerNodeGroupInfo {
|
|
|
77
107
|
* <p>Contains information about storage volumes attached to MSK broker nodes.</p>
|
|
78
108
|
*/
|
|
79
109
|
StorageInfo?: StorageInfo;
|
|
110
|
+
/**
|
|
111
|
+
* <p>Information about the broker access configuration.</p>
|
|
112
|
+
*/
|
|
113
|
+
ConnectivityInfo?: ConnectivityInfo;
|
|
80
114
|
}
|
|
81
115
|
export declare namespace BrokerNodeGroupInfo {
|
|
82
116
|
/**
|
|
@@ -142,7 +176,7 @@ export interface Tls {
|
|
|
142
176
|
*/
|
|
143
177
|
CertificateAuthorityArnList?: string[];
|
|
144
178
|
/**
|
|
145
|
-
* <p>Specifies whether you want to
|
|
179
|
+
* <p>Specifies whether you want to turn on or turn off TLS authentication.</p>
|
|
146
180
|
*/
|
|
147
181
|
Enabled?: boolean;
|
|
148
182
|
}
|
|
@@ -154,7 +188,7 @@ export declare namespace Tls {
|
|
|
154
188
|
}
|
|
155
189
|
export interface Unauthenticated {
|
|
156
190
|
/**
|
|
157
|
-
* <p>Specifies whether you want to
|
|
191
|
+
* <p>Specifies whether you want to turn on or turn off unauthenticated traffic to your cluster.</p>
|
|
158
192
|
*/
|
|
159
193
|
Enabled?: boolean;
|
|
160
194
|
}
|
|
@@ -334,11 +368,11 @@ export declare namespace LoggingInfo {
|
|
|
334
368
|
const filterSensitiveLog: (obj: LoggingInfo) => any;
|
|
335
369
|
}
|
|
336
370
|
/**
|
|
337
|
-
* <p>Indicates whether you want to
|
|
371
|
+
* <p>Indicates whether you want to turn on or turn off the JMX Exporter.</p>
|
|
338
372
|
*/
|
|
339
373
|
export interface JmxExporter {
|
|
340
374
|
/**
|
|
341
|
-
* <p>Indicates whether you want to
|
|
375
|
+
* <p>Indicates whether you want to turn on or turn off the JMX Exporter.</p>
|
|
342
376
|
*/
|
|
343
377
|
EnabledInBroker: boolean | undefined;
|
|
344
378
|
}
|
|
@@ -349,11 +383,11 @@ export declare namespace JmxExporter {
|
|
|
349
383
|
const filterSensitiveLog: (obj: JmxExporter) => any;
|
|
350
384
|
}
|
|
351
385
|
/**
|
|
352
|
-
* <p>Indicates whether you want to
|
|
386
|
+
* <p>Indicates whether you want to turn on or turn off the Node Exporter.</p>
|
|
353
387
|
*/
|
|
354
388
|
export interface NodeExporter {
|
|
355
389
|
/**
|
|
356
|
-
* <p>Indicates whether you want to
|
|
390
|
+
* <p>Indicates whether you want to turn on or turn off the Node Exporter.</p>
|
|
357
391
|
*/
|
|
358
392
|
EnabledInBroker: boolean | undefined;
|
|
359
393
|
}
|
|
@@ -368,11 +402,11 @@ export declare namespace NodeExporter {
|
|
|
368
402
|
*/
|
|
369
403
|
export interface Prometheus {
|
|
370
404
|
/**
|
|
371
|
-
* <p>Indicates whether you want to
|
|
405
|
+
* <p>Indicates whether you want to turn on or turn off the JMX Exporter.</p>
|
|
372
406
|
*/
|
|
373
407
|
JmxExporter?: JmxExporter;
|
|
374
408
|
/**
|
|
375
|
-
* <p>Indicates whether you want to
|
|
409
|
+
* <p>Indicates whether you want to turn on or turn off the Node Exporter.</p>
|
|
376
410
|
*/
|
|
377
411
|
NodeExporter?: NodeExporter;
|
|
378
412
|
}
|
|
@@ -446,7 +480,7 @@ export interface ClusterInfo {
|
|
|
446
480
|
*/
|
|
447
481
|
CreationTime?: Date;
|
|
448
482
|
/**
|
|
449
|
-
* <p>Information about the version of software currently deployed on the Kafka brokers in the cluster.</p>
|
|
483
|
+
* <p>Information about the version of software currently deployed on the Apache Kafka brokers in the cluster.</p>
|
|
450
484
|
*/
|
|
451
485
|
CurrentBrokerSoftwareInfo?: BrokerSoftwareInfo;
|
|
452
486
|
/**
|
|
@@ -593,7 +627,7 @@ export interface MutableClusterInfo {
|
|
|
593
627
|
*/
|
|
594
628
|
OpenMonitoring?: OpenMonitoring;
|
|
595
629
|
/**
|
|
596
|
-
* <p>The Kafka version.</p>
|
|
630
|
+
* <p>The Apache Kafka version.</p>
|
|
597
631
|
*/
|
|
598
632
|
KafkaVersion?: string;
|
|
599
633
|
/**
|
|
@@ -612,6 +646,10 @@ export interface MutableClusterInfo {
|
|
|
612
646
|
* <p>Includes all encryption-related information.</p>
|
|
613
647
|
*/
|
|
614
648
|
EncryptionInfo?: EncryptionInfo;
|
|
649
|
+
/**
|
|
650
|
+
* <p>Information about the broker access configuration.</p>
|
|
651
|
+
*/
|
|
652
|
+
ConnectivityInfo?: ConnectivityInfo;
|
|
615
653
|
}
|
|
616
654
|
export declare namespace MutableClusterInfo {
|
|
617
655
|
/**
|
|
@@ -675,15 +713,15 @@ export declare namespace ClusterOperationInfo {
|
|
|
675
713
|
const filterSensitiveLog: (obj: ClusterOperationInfo) => any;
|
|
676
714
|
}
|
|
677
715
|
/**
|
|
678
|
-
* <p>Contains source Kafka versions and compatible target Kafka versions.</p>
|
|
716
|
+
* <p>Contains source Apache Kafka versions and compatible target Apache Kafka versions.</p>
|
|
679
717
|
*/
|
|
680
718
|
export interface CompatibleKafkaVersion {
|
|
681
719
|
/**
|
|
682
|
-
* <p>
|
|
720
|
+
* <p>An Apache Kafka version.</p>
|
|
683
721
|
*/
|
|
684
722
|
SourceVersion?: string;
|
|
685
723
|
/**
|
|
686
|
-
* <p>A list of Kafka versions.</p>
|
|
724
|
+
* <p>A list of Apache Kafka versions.</p>
|
|
687
725
|
*/
|
|
688
726
|
TargetVersions?: string[];
|
|
689
727
|
}
|
|
@@ -795,7 +833,7 @@ export interface BrokerNodeInfo {
|
|
|
795
833
|
*/
|
|
796
834
|
ClientVpcIpAddress?: string;
|
|
797
835
|
/**
|
|
798
|
-
* <p>Information about the version of software currently deployed on the Kafka brokers in the cluster.</p>
|
|
836
|
+
* <p>Information about the version of software currently deployed on the Apache Kafka brokers in the cluster.</p>
|
|
799
837
|
*/
|
|
800
838
|
CurrentBrokerSoftwareInfo?: BrokerSoftwareInfo;
|
|
801
839
|
/**
|
|
@@ -1140,11 +1178,11 @@ export declare namespace ConflictException {
|
|
|
1140
1178
|
const filterSensitiveLog: (obj: ConflictException) => any;
|
|
1141
1179
|
}
|
|
1142
1180
|
/**
|
|
1143
|
-
* <p>Indicates whether you want to
|
|
1181
|
+
* <p>Indicates whether you want to turn on or turn off the JMX Exporter.</p>
|
|
1144
1182
|
*/
|
|
1145
1183
|
export interface JmxExporterInfo {
|
|
1146
1184
|
/**
|
|
1147
|
-
* <p>Indicates whether you want to
|
|
1185
|
+
* <p>Indicates whether you want to turn on or turn off the JMX Exporter.</p>
|
|
1148
1186
|
*/
|
|
1149
1187
|
EnabledInBroker: boolean | undefined;
|
|
1150
1188
|
}
|
|
@@ -1155,11 +1193,11 @@ export declare namespace JmxExporterInfo {
|
|
|
1155
1193
|
const filterSensitiveLog: (obj: JmxExporterInfo) => any;
|
|
1156
1194
|
}
|
|
1157
1195
|
/**
|
|
1158
|
-
* <p>Indicates whether you want to
|
|
1196
|
+
* <p>Indicates whether you want to turn on or turn off the Node Exporter.</p>
|
|
1159
1197
|
*/
|
|
1160
1198
|
export interface NodeExporterInfo {
|
|
1161
1199
|
/**
|
|
1162
|
-
* <p>Indicates whether you want to
|
|
1200
|
+
* <p>Indicates whether you want to turn on or turn off the Node Exporter.</p>
|
|
1163
1201
|
*/
|
|
1164
1202
|
EnabledInBroker: boolean | undefined;
|
|
1165
1203
|
}
|
|
@@ -1174,11 +1212,11 @@ export declare namespace NodeExporterInfo {
|
|
|
1174
1212
|
*/
|
|
1175
1213
|
export interface PrometheusInfo {
|
|
1176
1214
|
/**
|
|
1177
|
-
* <p>Indicates whether you want to
|
|
1215
|
+
* <p>Indicates whether you want to turn on or turn off the JMX Exporter.</p>
|
|
1178
1216
|
*/
|
|
1179
1217
|
JmxExporter?: JmxExporterInfo;
|
|
1180
1218
|
/**
|
|
1181
|
-
* <p>Indicates whether you want to
|
|
1219
|
+
* <p>Indicates whether you want to turn on or turn off the Node Exporter.</p>
|
|
1182
1220
|
*/
|
|
1183
1221
|
NodeExporter?: NodeExporterInfo;
|
|
1184
1222
|
}
|
|
@@ -1557,6 +1595,18 @@ export interface GetBootstrapBrokersResponse {
|
|
|
1557
1595
|
* <p>A string that contains one or more DNS names (or IP addresses) and SASL IAM port pairs.</p>
|
|
1558
1596
|
*/
|
|
1559
1597
|
BootstrapBrokerStringSaslIam?: string;
|
|
1598
|
+
/**
|
|
1599
|
+
* <p>A string containing one or more DNS names (or IP) and TLS port pairs.</p>
|
|
1600
|
+
*/
|
|
1601
|
+
BootstrapBrokerStringPublicTls?: string;
|
|
1602
|
+
/**
|
|
1603
|
+
* <p>A string containing one or more DNS names (or IP) and Sasl Scram port pairs.</p>
|
|
1604
|
+
*/
|
|
1605
|
+
BootstrapBrokerStringPublicSaslScram?: string;
|
|
1606
|
+
/**
|
|
1607
|
+
* <p>A string that contains one or more DNS names (or IP addresses) and SASL IAM port pairs.</p>
|
|
1608
|
+
*/
|
|
1609
|
+
BootstrapBrokerStringPublicSaslIam?: string;
|
|
1560
1610
|
}
|
|
1561
1611
|
export declare namespace GetBootstrapBrokersResponse {
|
|
1562
1612
|
/**
|
|
@@ -2169,6 +2219,45 @@ export declare namespace UpdateConfigurationResponse {
|
|
|
2169
2219
|
*/
|
|
2170
2220
|
const filterSensitiveLog: (obj: UpdateConfigurationResponse) => any;
|
|
2171
2221
|
}
|
|
2222
|
+
/**
|
|
2223
|
+
* Request body for UpdateConnectivity.
|
|
2224
|
+
*/
|
|
2225
|
+
export interface UpdateConnectivityRequest {
|
|
2226
|
+
/**
|
|
2227
|
+
* <p>The Amazon Resource Name (ARN) of the configuration.</p>
|
|
2228
|
+
*/
|
|
2229
|
+
ClusterArn: string | undefined;
|
|
2230
|
+
/**
|
|
2231
|
+
* <p>Information about the broker access configuration.</p>
|
|
2232
|
+
*/
|
|
2233
|
+
ConnectivityInfo: ConnectivityInfo | undefined;
|
|
2234
|
+
/**
|
|
2235
|
+
* <p>The version of the MSK cluster to update. Cluster versions aren't simple numbers. You can describe an MSK cluster to find its version. When this update operation is successful, it generates a new cluster version.</p>
|
|
2236
|
+
*/
|
|
2237
|
+
CurrentVersion: string | undefined;
|
|
2238
|
+
}
|
|
2239
|
+
export declare namespace UpdateConnectivityRequest {
|
|
2240
|
+
/**
|
|
2241
|
+
* @internal
|
|
2242
|
+
*/
|
|
2243
|
+
const filterSensitiveLog: (obj: UpdateConnectivityRequest) => any;
|
|
2244
|
+
}
|
|
2245
|
+
export interface UpdateConnectivityResponse {
|
|
2246
|
+
/**
|
|
2247
|
+
* <p>The Amazon Resource Name (ARN) of the cluster.</p>
|
|
2248
|
+
*/
|
|
2249
|
+
ClusterArn?: string;
|
|
2250
|
+
/**
|
|
2251
|
+
* <p>The Amazon Resource Name (ARN) of the cluster operation.</p>
|
|
2252
|
+
*/
|
|
2253
|
+
ClusterOperationArn?: string;
|
|
2254
|
+
}
|
|
2255
|
+
export declare namespace UpdateConnectivityResponse {
|
|
2256
|
+
/**
|
|
2257
|
+
* @internal
|
|
2258
|
+
*/
|
|
2259
|
+
const filterSensitiveLog: (obj: UpdateConnectivityResponse) => any;
|
|
2260
|
+
}
|
|
2172
2261
|
/**
|
|
2173
2262
|
* Request body for UpdateMonitoring.
|
|
2174
2263
|
*/
|
|
@@ -29,6 +29,7 @@ import { UpdateBrokerTypeCommandInput, UpdateBrokerTypeCommandOutput } from "../
|
|
|
29
29
|
import { UpdateClusterConfigurationCommandInput, UpdateClusterConfigurationCommandOutput } from "../commands/UpdateClusterConfigurationCommand";
|
|
30
30
|
import { UpdateClusterKafkaVersionCommandInput, UpdateClusterKafkaVersionCommandOutput } from "../commands/UpdateClusterKafkaVersionCommand";
|
|
31
31
|
import { UpdateConfigurationCommandInput, UpdateConfigurationCommandOutput } from "../commands/UpdateConfigurationCommand";
|
|
32
|
+
import { UpdateConnectivityCommandInput, UpdateConnectivityCommandOutput } from "../commands/UpdateConnectivityCommand";
|
|
32
33
|
import { UpdateMonitoringCommandInput, UpdateMonitoringCommandOutput } from "../commands/UpdateMonitoringCommand";
|
|
33
34
|
import { UpdateSecurityCommandInput, UpdateSecurityCommandOutput } from "../commands/UpdateSecurityCommand";
|
|
34
35
|
export declare const serializeAws_restJson1BatchAssociateScramSecretCommand: (input: BatchAssociateScramSecretCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -60,6 +61,7 @@ export declare const serializeAws_restJson1UpdateBrokerTypeCommand: (input: Upda
|
|
|
60
61
|
export declare const serializeAws_restJson1UpdateClusterConfigurationCommand: (input: UpdateClusterConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
61
62
|
export declare const serializeAws_restJson1UpdateClusterKafkaVersionCommand: (input: UpdateClusterKafkaVersionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
62
63
|
export declare const serializeAws_restJson1UpdateConfigurationCommand: (input: UpdateConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
64
|
+
export declare const serializeAws_restJson1UpdateConnectivityCommand: (input: UpdateConnectivityCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
63
65
|
export declare const serializeAws_restJson1UpdateMonitoringCommand: (input: UpdateMonitoringCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
64
66
|
export declare const serializeAws_restJson1UpdateSecurityCommand: (input: UpdateSecurityCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
65
67
|
export declare const deserializeAws_restJson1BatchAssociateScramSecretCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<BatchAssociateScramSecretCommandOutput>;
|
|
@@ -91,5 +93,6 @@ export declare const deserializeAws_restJson1UpdateBrokerTypeCommand: (output: _
|
|
|
91
93
|
export declare const deserializeAws_restJson1UpdateClusterConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateClusterConfigurationCommandOutput>;
|
|
92
94
|
export declare const deserializeAws_restJson1UpdateClusterKafkaVersionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateClusterKafkaVersionCommandOutput>;
|
|
93
95
|
export declare const deserializeAws_restJson1UpdateConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateConfigurationCommandOutput>;
|
|
96
|
+
export declare const deserializeAws_restJson1UpdateConnectivityCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateConnectivityCommandOutput>;
|
|
94
97
|
export declare const deserializeAws_restJson1UpdateMonitoringCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateMonitoringCommandOutput>;
|
|
95
98
|
export declare const deserializeAws_restJson1UpdateSecurityCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateSecurityCommandOutput>;
|
|
@@ -16,6 +16,8 @@ export declare const getRuntimeConfig: (config: KafkaClientConfig) => {
|
|
|
16
16
|
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
17
17
|
sha256: import("@aws-sdk/types").HashConstructor;
|
|
18
18
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
19
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
20
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
19
21
|
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
20
22
|
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
21
23
|
apiVersion: string;
|