@aws-sdk/client-kafka 3.952.0 → 3.953.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +883 -623
- package/dist-cjs/runtimeConfig.shared.js +6 -1
- package/dist-es/commands/BatchAssociateScramSecretCommand.js +2 -2
- package/dist-es/commands/BatchDisassociateScramSecretCommand.js +2 -2
- package/dist-es/commands/CreateClusterCommand.js +2 -2
- package/dist-es/commands/CreateClusterV2Command.js +2 -2
- package/dist-es/commands/CreateConfigurationCommand.js +2 -2
- package/dist-es/commands/CreateReplicatorCommand.js +2 -2
- package/dist-es/commands/CreateVpcConnectionCommand.js +2 -2
- package/dist-es/commands/DeleteClusterCommand.js +2 -2
- package/dist-es/commands/DeleteClusterPolicyCommand.js +2 -2
- package/dist-es/commands/DeleteConfigurationCommand.js +2 -2
- package/dist-es/commands/DeleteReplicatorCommand.js +2 -2
- package/dist-es/commands/DeleteVpcConnectionCommand.js +2 -2
- package/dist-es/commands/DescribeClusterCommand.js +2 -2
- package/dist-es/commands/DescribeClusterOperationCommand.js +2 -2
- package/dist-es/commands/DescribeClusterOperationV2Command.js +2 -2
- package/dist-es/commands/DescribeClusterV2Command.js +2 -2
- package/dist-es/commands/DescribeConfigurationCommand.js +2 -2
- package/dist-es/commands/DescribeConfigurationRevisionCommand.js +2 -2
- package/dist-es/commands/DescribeReplicatorCommand.js +2 -2
- package/dist-es/commands/DescribeTopicCommand.js +2 -2
- package/dist-es/commands/DescribeTopicPartitionsCommand.js +2 -2
- package/dist-es/commands/DescribeVpcConnectionCommand.js +2 -2
- package/dist-es/commands/GetBootstrapBrokersCommand.js +2 -2
- package/dist-es/commands/GetClusterPolicyCommand.js +2 -2
- package/dist-es/commands/GetCompatibleKafkaVersionsCommand.js +2 -2
- package/dist-es/commands/ListClientVpcConnectionsCommand.js +2 -2
- package/dist-es/commands/ListClusterOperationsCommand.js +2 -2
- package/dist-es/commands/ListClusterOperationsV2Command.js +2 -2
- package/dist-es/commands/ListClustersCommand.js +2 -2
- package/dist-es/commands/ListClustersV2Command.js +2 -2
- package/dist-es/commands/ListConfigurationRevisionsCommand.js +2 -2
- package/dist-es/commands/ListConfigurationsCommand.js +2 -2
- package/dist-es/commands/ListKafkaVersionsCommand.js +2 -2
- package/dist-es/commands/ListNodesCommand.js +2 -2
- package/dist-es/commands/ListReplicatorsCommand.js +2 -2
- package/dist-es/commands/ListScramSecretsCommand.js +2 -2
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-es/commands/ListTopicsCommand.js +2 -2
- package/dist-es/commands/ListVpcConnectionsCommand.js +2 -2
- package/dist-es/commands/PutClusterPolicyCommand.js +2 -2
- package/dist-es/commands/RebootBrokerCommand.js +2 -2
- package/dist-es/commands/RejectClientVpcConnectionCommand.js +2 -2
- package/dist-es/commands/TagResourceCommand.js +2 -2
- package/dist-es/commands/UntagResourceCommand.js +2 -2
- package/dist-es/commands/UpdateBrokerCountCommand.js +2 -2
- package/dist-es/commands/UpdateBrokerStorageCommand.js +2 -2
- package/dist-es/commands/UpdateBrokerTypeCommand.js +2 -2
- package/dist-es/commands/UpdateClusterConfigurationCommand.js +2 -2
- package/dist-es/commands/UpdateClusterKafkaVersionCommand.js +2 -2
- package/dist-es/commands/UpdateConfigurationCommand.js +2 -2
- package/dist-es/commands/UpdateConnectivityCommand.js +2 -2
- package/dist-es/commands/UpdateMonitoringCommand.js +2 -2
- package/dist-es/commands/UpdateRebalancingCommand.js +2 -2
- package/dist-es/commands/UpdateReplicationInfoCommand.js +2 -2
- package/dist-es/commands/UpdateSecurityCommand.js +2 -2
- package/dist-es/commands/UpdateStorageCommand.js +2 -2
- package/dist-es/index.js +1 -0
- package/dist-es/runtimeConfig.shared.js +6 -1
- package/dist-es/schemas/schemas_0.js +544 -549
- package/dist-types/KafkaClient.d.ts +1 -10
- package/dist-types/index.d.ts +1 -0
- package/dist-types/runtimeConfig.browser.d.ts +6 -2
- package/dist-types/runtimeConfig.d.ts +6 -2
- package/dist-types/runtimeConfig.native.d.ts +6 -2
- package/dist-types/runtimeConfig.shared.d.ts +6 -1
- package/dist-types/schemas/schemas_0.d.ts +266 -297
- package/dist-types/ts3.4/KafkaClient.d.ts +0 -4
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +265 -297
- package/package.json +34 -34
|
@@ -26,7 +26,12 @@ const getRuntimeConfig = (config) => {
|
|
|
26
26
|
},
|
|
27
27
|
],
|
|
28
28
|
logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
|
|
29
|
-
protocol: config?.protocol ??
|
|
29
|
+
protocol: config?.protocol ?? protocols_1.AwsRestJsonProtocol,
|
|
30
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
31
|
+
defaultNamespace: "com.amazonaws.kafka",
|
|
32
|
+
version: "2018-11-14",
|
|
33
|
+
serviceTarget: "Kafka",
|
|
34
|
+
},
|
|
30
35
|
serviceId: config?.serviceId ?? "Kafka",
|
|
31
36
|
urlParser: config?.urlParser ?? url_parser_1.parseUrl,
|
|
32
37
|
utf8Decoder: config?.utf8Decoder ?? util_utf8_1.fromUtf8,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { BatchAssociateScramSecret } from "../schemas/schemas_0";
|
|
4
|
+
import { BatchAssociateScramSecret$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class BatchAssociateScramSecretCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class BatchAssociateScramSecretCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Kafka", "BatchAssociateScramSecret", {})
|
|
13
13
|
.n("KafkaClient", "BatchAssociateScramSecretCommand")
|
|
14
|
-
.sc(BatchAssociateScramSecret)
|
|
14
|
+
.sc(BatchAssociateScramSecret$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { BatchDisassociateScramSecret } from "../schemas/schemas_0";
|
|
4
|
+
import { BatchDisassociateScramSecret$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class BatchDisassociateScramSecretCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class BatchDisassociateScramSecretCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Kafka", "BatchDisassociateScramSecret", {})
|
|
13
13
|
.n("KafkaClient", "BatchDisassociateScramSecretCommand")
|
|
14
|
-
.sc(BatchDisassociateScramSecret)
|
|
14
|
+
.sc(BatchDisassociateScramSecret$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateCluster } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateCluster$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateClusterCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateClusterCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Kafka", "CreateCluster", {})
|
|
13
13
|
.n("KafkaClient", "CreateClusterCommand")
|
|
14
|
-
.sc(CreateCluster)
|
|
14
|
+
.sc(CreateCluster$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateClusterV2 } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateClusterV2$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateClusterV2Command extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateClusterV2Command extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Kafka", "CreateClusterV2", {})
|
|
13
13
|
.n("KafkaClient", "CreateClusterV2Command")
|
|
14
|
-
.sc(CreateClusterV2)
|
|
14
|
+
.sc(CreateClusterV2$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateConfiguration } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateConfiguration$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateConfigurationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateConfigurationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Kafka", "CreateConfiguration", {})
|
|
13
13
|
.n("KafkaClient", "CreateConfigurationCommand")
|
|
14
|
-
.sc(CreateConfiguration)
|
|
14
|
+
.sc(CreateConfiguration$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateReplicator } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateReplicator$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateReplicatorCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateReplicatorCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Kafka", "CreateReplicator", {})
|
|
13
13
|
.n("KafkaClient", "CreateReplicatorCommand")
|
|
14
|
-
.sc(CreateReplicator)
|
|
14
|
+
.sc(CreateReplicator$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateVpcConnection } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateVpcConnection$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateVpcConnectionCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateVpcConnectionCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Kafka", "CreateVpcConnection", {})
|
|
13
13
|
.n("KafkaClient", "CreateVpcConnectionCommand")
|
|
14
|
-
.sc(CreateVpcConnection)
|
|
14
|
+
.sc(CreateVpcConnection$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteCluster } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteCluster$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteClusterCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteClusterCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Kafka", "DeleteCluster", {})
|
|
13
13
|
.n("KafkaClient", "DeleteClusterCommand")
|
|
14
|
-
.sc(DeleteCluster)
|
|
14
|
+
.sc(DeleteCluster$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteClusterPolicy } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteClusterPolicy$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteClusterPolicyCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteClusterPolicyCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Kafka", "DeleteClusterPolicy", {})
|
|
13
13
|
.n("KafkaClient", "DeleteClusterPolicyCommand")
|
|
14
|
-
.sc(DeleteClusterPolicy)
|
|
14
|
+
.sc(DeleteClusterPolicy$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteConfiguration } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteConfiguration$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteConfigurationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteConfigurationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Kafka", "DeleteConfiguration", {})
|
|
13
13
|
.n("KafkaClient", "DeleteConfigurationCommand")
|
|
14
|
-
.sc(DeleteConfiguration)
|
|
14
|
+
.sc(DeleteConfiguration$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteReplicator } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteReplicator$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteReplicatorCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteReplicatorCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Kafka", "DeleteReplicator", {})
|
|
13
13
|
.n("KafkaClient", "DeleteReplicatorCommand")
|
|
14
|
-
.sc(DeleteReplicator)
|
|
14
|
+
.sc(DeleteReplicator$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteVpcConnection } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteVpcConnection$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteVpcConnectionCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteVpcConnectionCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Kafka", "DeleteVpcConnection", {})
|
|
13
13
|
.n("KafkaClient", "DeleteVpcConnectionCommand")
|
|
14
|
-
.sc(DeleteVpcConnection)
|
|
14
|
+
.sc(DeleteVpcConnection$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeCluster } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeCluster$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeClusterCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeClusterCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Kafka", "DescribeCluster", {})
|
|
13
13
|
.n("KafkaClient", "DescribeClusterCommand")
|
|
14
|
-
.sc(DescribeCluster)
|
|
14
|
+
.sc(DescribeCluster$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeClusterOperation } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeClusterOperation$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeClusterOperationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeClusterOperationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Kafka", "DescribeClusterOperation", {})
|
|
13
13
|
.n("KafkaClient", "DescribeClusterOperationCommand")
|
|
14
|
-
.sc(DescribeClusterOperation)
|
|
14
|
+
.sc(DescribeClusterOperation$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeClusterOperationV2 } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeClusterOperationV2$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeClusterOperationV2Command extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeClusterOperationV2Command extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Kafka", "DescribeClusterOperationV2", {})
|
|
13
13
|
.n("KafkaClient", "DescribeClusterOperationV2Command")
|
|
14
|
-
.sc(DescribeClusterOperationV2)
|
|
14
|
+
.sc(DescribeClusterOperationV2$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeClusterV2 } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeClusterV2$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeClusterV2Command extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeClusterV2Command extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Kafka", "DescribeClusterV2", {})
|
|
13
13
|
.n("KafkaClient", "DescribeClusterV2Command")
|
|
14
|
-
.sc(DescribeClusterV2)
|
|
14
|
+
.sc(DescribeClusterV2$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeConfiguration } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeConfiguration$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeConfigurationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeConfigurationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Kafka", "DescribeConfiguration", {})
|
|
13
13
|
.n("KafkaClient", "DescribeConfigurationCommand")
|
|
14
|
-
.sc(DescribeConfiguration)
|
|
14
|
+
.sc(DescribeConfiguration$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeConfigurationRevision } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeConfigurationRevision$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeConfigurationRevisionCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeConfigurationRevisionCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Kafka", "DescribeConfigurationRevision", {})
|
|
13
13
|
.n("KafkaClient", "DescribeConfigurationRevisionCommand")
|
|
14
|
-
.sc(DescribeConfigurationRevision)
|
|
14
|
+
.sc(DescribeConfigurationRevision$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeReplicator } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeReplicator$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeReplicatorCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeReplicatorCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Kafka", "DescribeReplicator", {})
|
|
13
13
|
.n("KafkaClient", "DescribeReplicatorCommand")
|
|
14
|
-
.sc(DescribeReplicator)
|
|
14
|
+
.sc(DescribeReplicator$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeTopic } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeTopic$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeTopicCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeTopicCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Kafka", "DescribeTopic", {})
|
|
13
13
|
.n("KafkaClient", "DescribeTopicCommand")
|
|
14
|
-
.sc(DescribeTopic)
|
|
14
|
+
.sc(DescribeTopic$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeTopicPartitions } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeTopicPartitions$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeTopicPartitionsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeTopicPartitionsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Kafka", "DescribeTopicPartitions", {})
|
|
13
13
|
.n("KafkaClient", "DescribeTopicPartitionsCommand")
|
|
14
|
-
.sc(DescribeTopicPartitions)
|
|
14
|
+
.sc(DescribeTopicPartitions$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeVpcConnection } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeVpcConnection$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeVpcConnectionCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeVpcConnectionCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Kafka", "DescribeVpcConnection", {})
|
|
13
13
|
.n("KafkaClient", "DescribeVpcConnectionCommand")
|
|
14
|
-
.sc(DescribeVpcConnection)
|
|
14
|
+
.sc(DescribeVpcConnection$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetBootstrapBrokers } from "../schemas/schemas_0";
|
|
4
|
+
import { GetBootstrapBrokers$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetBootstrapBrokersCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetBootstrapBrokersCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Kafka", "GetBootstrapBrokers", {})
|
|
13
13
|
.n("KafkaClient", "GetBootstrapBrokersCommand")
|
|
14
|
-
.sc(GetBootstrapBrokers)
|
|
14
|
+
.sc(GetBootstrapBrokers$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetClusterPolicy } from "../schemas/schemas_0";
|
|
4
|
+
import { GetClusterPolicy$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetClusterPolicyCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetClusterPolicyCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Kafka", "GetClusterPolicy", {})
|
|
13
13
|
.n("KafkaClient", "GetClusterPolicyCommand")
|
|
14
|
-
.sc(GetClusterPolicy)
|
|
14
|
+
.sc(GetClusterPolicy$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetCompatibleKafkaVersions } from "../schemas/schemas_0";
|
|
4
|
+
import { GetCompatibleKafkaVersions$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetCompatibleKafkaVersionsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetCompatibleKafkaVersionsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Kafka", "GetCompatibleKafkaVersions", {})
|
|
13
13
|
.n("KafkaClient", "GetCompatibleKafkaVersionsCommand")
|
|
14
|
-
.sc(GetCompatibleKafkaVersions)
|
|
14
|
+
.sc(GetCompatibleKafkaVersions$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListClientVpcConnections } from "../schemas/schemas_0";
|
|
4
|
+
import { ListClientVpcConnections$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListClientVpcConnectionsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListClientVpcConnectionsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Kafka", "ListClientVpcConnections", {})
|
|
13
13
|
.n("KafkaClient", "ListClientVpcConnectionsCommand")
|
|
14
|
-
.sc(ListClientVpcConnections)
|
|
14
|
+
.sc(ListClientVpcConnections$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListClusterOperations } from "../schemas/schemas_0";
|
|
4
|
+
import { ListClusterOperations$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListClusterOperationsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListClusterOperationsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Kafka", "ListClusterOperations", {})
|
|
13
13
|
.n("KafkaClient", "ListClusterOperationsCommand")
|
|
14
|
-
.sc(ListClusterOperations)
|
|
14
|
+
.sc(ListClusterOperations$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListClusterOperationsV2 } from "../schemas/schemas_0";
|
|
4
|
+
import { ListClusterOperationsV2$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListClusterOperationsV2Command extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListClusterOperationsV2Command extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Kafka", "ListClusterOperationsV2", {})
|
|
13
13
|
.n("KafkaClient", "ListClusterOperationsV2Command")
|
|
14
|
-
.sc(ListClusterOperationsV2)
|
|
14
|
+
.sc(ListClusterOperationsV2$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListClusters } from "../schemas/schemas_0";
|
|
4
|
+
import { ListClusters$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListClustersCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListClustersCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Kafka", "ListClusters", {})
|
|
13
13
|
.n("KafkaClient", "ListClustersCommand")
|
|
14
|
-
.sc(ListClusters)
|
|
14
|
+
.sc(ListClusters$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListClustersV2 } from "../schemas/schemas_0";
|
|
4
|
+
import { ListClustersV2$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListClustersV2Command extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListClustersV2Command extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Kafka", "ListClustersV2", {})
|
|
13
13
|
.n("KafkaClient", "ListClustersV2Command")
|
|
14
|
-
.sc(ListClustersV2)
|
|
14
|
+
.sc(ListClustersV2$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListConfigurationRevisions } from "../schemas/schemas_0";
|
|
4
|
+
import { ListConfigurationRevisions$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListConfigurationRevisionsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListConfigurationRevisionsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Kafka", "ListConfigurationRevisions", {})
|
|
13
13
|
.n("KafkaClient", "ListConfigurationRevisionsCommand")
|
|
14
|
-
.sc(ListConfigurationRevisions)
|
|
14
|
+
.sc(ListConfigurationRevisions$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListConfigurations } from "../schemas/schemas_0";
|
|
4
|
+
import { ListConfigurations$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListConfigurationsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListConfigurationsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Kafka", "ListConfigurations", {})
|
|
13
13
|
.n("KafkaClient", "ListConfigurationsCommand")
|
|
14
|
-
.sc(ListConfigurations)
|
|
14
|
+
.sc(ListConfigurations$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListKafkaVersions } from "../schemas/schemas_0";
|
|
4
|
+
import { ListKafkaVersions$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListKafkaVersionsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListKafkaVersionsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Kafka", "ListKafkaVersions", {})
|
|
13
13
|
.n("KafkaClient", "ListKafkaVersionsCommand")
|
|
14
|
-
.sc(ListKafkaVersions)
|
|
14
|
+
.sc(ListKafkaVersions$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListNodes } from "../schemas/schemas_0";
|
|
4
|
+
import { ListNodes$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListNodesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListNodesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Kafka", "ListNodes", {})
|
|
13
13
|
.n("KafkaClient", "ListNodesCommand")
|
|
14
|
-
.sc(ListNodes)
|
|
14
|
+
.sc(ListNodes$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListReplicators } from "../schemas/schemas_0";
|
|
4
|
+
import { ListReplicators$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListReplicatorsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListReplicatorsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Kafka", "ListReplicators", {})
|
|
13
13
|
.n("KafkaClient", "ListReplicatorsCommand")
|
|
14
|
-
.sc(ListReplicators)
|
|
14
|
+
.sc(ListReplicators$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|