@aws-sdk/client-kafka 3.888.0 → 3.891.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.
Files changed (53) hide show
  1. package/dist-types/commands/BatchAssociateScramSecretCommand.d.ts +2 -0
  2. package/dist-types/commands/BatchDisassociateScramSecretCommand.d.ts +2 -0
  3. package/dist-types/commands/CreateClusterCommand.d.ts +2 -0
  4. package/dist-types/commands/CreateClusterV2Command.d.ts +2 -0
  5. package/dist-types/commands/CreateConfigurationCommand.d.ts +2 -0
  6. package/dist-types/commands/CreateReplicatorCommand.d.ts +2 -0
  7. package/dist-types/commands/CreateVpcConnectionCommand.d.ts +2 -0
  8. package/dist-types/commands/DeleteClusterCommand.d.ts +2 -0
  9. package/dist-types/commands/DeleteClusterPolicyCommand.d.ts +2 -0
  10. package/dist-types/commands/DeleteConfigurationCommand.d.ts +2 -0
  11. package/dist-types/commands/DeleteReplicatorCommand.d.ts +2 -0
  12. package/dist-types/commands/DeleteVpcConnectionCommand.d.ts +2 -0
  13. package/dist-types/commands/DescribeClusterCommand.d.ts +2 -0
  14. package/dist-types/commands/DescribeClusterOperationCommand.d.ts +2 -0
  15. package/dist-types/commands/DescribeClusterOperationV2Command.d.ts +2 -0
  16. package/dist-types/commands/DescribeClusterV2Command.d.ts +2 -0
  17. package/dist-types/commands/DescribeConfigurationCommand.d.ts +2 -0
  18. package/dist-types/commands/DescribeConfigurationRevisionCommand.d.ts +2 -0
  19. package/dist-types/commands/DescribeReplicatorCommand.d.ts +2 -0
  20. package/dist-types/commands/DescribeVpcConnectionCommand.d.ts +2 -0
  21. package/dist-types/commands/GetBootstrapBrokersCommand.d.ts +2 -0
  22. package/dist-types/commands/GetClusterPolicyCommand.d.ts +2 -0
  23. package/dist-types/commands/GetCompatibleKafkaVersionsCommand.d.ts +2 -0
  24. package/dist-types/commands/ListClientVpcConnectionsCommand.d.ts +2 -0
  25. package/dist-types/commands/ListClusterOperationsCommand.d.ts +2 -0
  26. package/dist-types/commands/ListClusterOperationsV2Command.d.ts +2 -0
  27. package/dist-types/commands/ListClustersCommand.d.ts +2 -0
  28. package/dist-types/commands/ListClustersV2Command.d.ts +2 -0
  29. package/dist-types/commands/ListConfigurationRevisionsCommand.d.ts +2 -0
  30. package/dist-types/commands/ListConfigurationsCommand.d.ts +2 -0
  31. package/dist-types/commands/ListKafkaVersionsCommand.d.ts +2 -0
  32. package/dist-types/commands/ListNodesCommand.d.ts +2 -0
  33. package/dist-types/commands/ListReplicatorsCommand.d.ts +2 -0
  34. package/dist-types/commands/ListScramSecretsCommand.d.ts +2 -0
  35. package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -0
  36. package/dist-types/commands/ListVpcConnectionsCommand.d.ts +2 -0
  37. package/dist-types/commands/PutClusterPolicyCommand.d.ts +2 -0
  38. package/dist-types/commands/RebootBrokerCommand.d.ts +2 -0
  39. package/dist-types/commands/RejectClientVpcConnectionCommand.d.ts +2 -0
  40. package/dist-types/commands/TagResourceCommand.d.ts +2 -0
  41. package/dist-types/commands/UntagResourceCommand.d.ts +2 -0
  42. package/dist-types/commands/UpdateBrokerCountCommand.d.ts +2 -0
  43. package/dist-types/commands/UpdateBrokerStorageCommand.d.ts +2 -0
  44. package/dist-types/commands/UpdateBrokerTypeCommand.d.ts +2 -0
  45. package/dist-types/commands/UpdateClusterConfigurationCommand.d.ts +2 -0
  46. package/dist-types/commands/UpdateClusterKafkaVersionCommand.d.ts +2 -0
  47. package/dist-types/commands/UpdateConfigurationCommand.d.ts +2 -0
  48. package/dist-types/commands/UpdateConnectivityCommand.d.ts +2 -0
  49. package/dist-types/commands/UpdateMonitoringCommand.d.ts +2 -0
  50. package/dist-types/commands/UpdateReplicationInfoCommand.d.ts +2 -0
  51. package/dist-types/commands/UpdateSecurityCommand.d.ts +2 -0
  52. package/dist-types/commands/UpdateStorageCommand.d.ts +2 -0
  53. package/package.json +19 -19
@@ -33,6 +33,8 @@ declare const BatchAssociateScramSecretCommand_base: {
33
33
  * ```javascript
34
34
  * import { KafkaClient, BatchAssociateScramSecretCommand } from "@aws-sdk/client-kafka"; // ES Modules import
35
35
  * // const { KafkaClient, BatchAssociateScramSecretCommand } = require("@aws-sdk/client-kafka"); // CommonJS import
36
+ * // import type { KafkaClientConfig } from "@aws-sdk/client-kafka";
37
+ * const config = {}; // type is KafkaClientConfig
36
38
  * const client = new KafkaClient(config);
37
39
  * const input = { // BatchAssociateScramSecretRequest
38
40
  * ClusterArn: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const BatchDisassociateScramSecretCommand_base: {
33
33
  * ```javascript
34
34
  * import { KafkaClient, BatchDisassociateScramSecretCommand } from "@aws-sdk/client-kafka"; // ES Modules import
35
35
  * // const { KafkaClient, BatchDisassociateScramSecretCommand } = require("@aws-sdk/client-kafka"); // CommonJS import
36
+ * // import type { KafkaClientConfig } from "@aws-sdk/client-kafka";
37
+ * const config = {}; // type is KafkaClientConfig
36
38
  * const client = new KafkaClient(config);
37
39
  * const input = { // BatchDisassociateScramSecretRequest
38
40
  * ClusterArn: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const CreateClusterCommand_base: {
33
33
  * ```javascript
34
34
  * import { KafkaClient, CreateClusterCommand } from "@aws-sdk/client-kafka"; // ES Modules import
35
35
  * // const { KafkaClient, CreateClusterCommand } = require("@aws-sdk/client-kafka"); // CommonJS import
36
+ * // import type { KafkaClientConfig } from "@aws-sdk/client-kafka";
37
+ * const config = {}; // type is KafkaClientConfig
36
38
  * const client = new KafkaClient(config);
37
39
  * const input = { // CreateClusterRequest
38
40
  * BrokerNodeGroupInfo: { // BrokerNodeGroupInfo
@@ -33,6 +33,8 @@ declare const CreateClusterV2Command_base: {
33
33
  * ```javascript
34
34
  * import { KafkaClient, CreateClusterV2Command } from "@aws-sdk/client-kafka"; // ES Modules import
35
35
  * // const { KafkaClient, CreateClusterV2Command } = require("@aws-sdk/client-kafka"); // CommonJS import
36
+ * // import type { KafkaClientConfig } from "@aws-sdk/client-kafka";
37
+ * const config = {}; // type is KafkaClientConfig
36
38
  * const client = new KafkaClient(config);
37
39
  * const input = { // CreateClusterV2Request
38
40
  * ClusterName: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const CreateConfigurationCommand_base: {
33
33
  * ```javascript
34
34
  * import { KafkaClient, CreateConfigurationCommand } from "@aws-sdk/client-kafka"; // ES Modules import
35
35
  * // const { KafkaClient, CreateConfigurationCommand } = require("@aws-sdk/client-kafka"); // CommonJS import
36
+ * // import type { KafkaClientConfig } from "@aws-sdk/client-kafka";
37
+ * const config = {}; // type is KafkaClientConfig
36
38
  * const client = new KafkaClient(config);
37
39
  * const input = { // CreateConfigurationRequest
38
40
  * Description: "STRING_VALUE",
@@ -33,6 +33,8 @@ declare const CreateReplicatorCommand_base: {
33
33
  * ```javascript
34
34
  * import { KafkaClient, CreateReplicatorCommand } from "@aws-sdk/client-kafka"; // ES Modules import
35
35
  * // const { KafkaClient, CreateReplicatorCommand } = require("@aws-sdk/client-kafka"); // CommonJS import
36
+ * // import type { KafkaClientConfig } from "@aws-sdk/client-kafka";
37
+ * const config = {}; // type is KafkaClientConfig
36
38
  * const client = new KafkaClient(config);
37
39
  * const input = { // CreateReplicatorRequest
38
40
  * Description: "STRING_VALUE",
@@ -33,6 +33,8 @@ declare const CreateVpcConnectionCommand_base: {
33
33
  * ```javascript
34
34
  * import { KafkaClient, CreateVpcConnectionCommand } from "@aws-sdk/client-kafka"; // ES Modules import
35
35
  * // const { KafkaClient, CreateVpcConnectionCommand } = require("@aws-sdk/client-kafka"); // CommonJS import
36
+ * // import type { KafkaClientConfig } from "@aws-sdk/client-kafka";
37
+ * const config = {}; // type is KafkaClientConfig
36
38
  * const client = new KafkaClient(config);
37
39
  * const input = { // CreateVpcConnectionRequest
38
40
  * TargetClusterArn: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const DeleteClusterCommand_base: {
33
33
  * ```javascript
34
34
  * import { KafkaClient, DeleteClusterCommand } from "@aws-sdk/client-kafka"; // ES Modules import
35
35
  * // const { KafkaClient, DeleteClusterCommand } = require("@aws-sdk/client-kafka"); // CommonJS import
36
+ * // import type { KafkaClientConfig } from "@aws-sdk/client-kafka";
37
+ * const config = {}; // type is KafkaClientConfig
36
38
  * const client = new KafkaClient(config);
37
39
  * const input = { // DeleteClusterRequest
38
40
  * ClusterArn: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const DeleteClusterPolicyCommand_base: {
33
33
  * ```javascript
34
34
  * import { KafkaClient, DeleteClusterPolicyCommand } from "@aws-sdk/client-kafka"; // ES Modules import
35
35
  * // const { KafkaClient, DeleteClusterPolicyCommand } = require("@aws-sdk/client-kafka"); // CommonJS import
36
+ * // import type { KafkaClientConfig } from "@aws-sdk/client-kafka";
37
+ * const config = {}; // type is KafkaClientConfig
36
38
  * const client = new KafkaClient(config);
37
39
  * const input = { // DeleteClusterPolicyRequest
38
40
  * ClusterArn: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const DeleteConfigurationCommand_base: {
33
33
  * ```javascript
34
34
  * import { KafkaClient, DeleteConfigurationCommand } from "@aws-sdk/client-kafka"; // ES Modules import
35
35
  * // const { KafkaClient, DeleteConfigurationCommand } = require("@aws-sdk/client-kafka"); // CommonJS import
36
+ * // import type { KafkaClientConfig } from "@aws-sdk/client-kafka";
37
+ * const config = {}; // type is KafkaClientConfig
36
38
  * const client = new KafkaClient(config);
37
39
  * const input = { // DeleteConfigurationRequest
38
40
  * Arn: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const DeleteReplicatorCommand_base: {
33
33
  * ```javascript
34
34
  * import { KafkaClient, DeleteReplicatorCommand } from "@aws-sdk/client-kafka"; // ES Modules import
35
35
  * // const { KafkaClient, DeleteReplicatorCommand } = require("@aws-sdk/client-kafka"); // CommonJS import
36
+ * // import type { KafkaClientConfig } from "@aws-sdk/client-kafka";
37
+ * const config = {}; // type is KafkaClientConfig
36
38
  * const client = new KafkaClient(config);
37
39
  * const input = { // DeleteReplicatorRequest
38
40
  * CurrentVersion: "STRING_VALUE",
@@ -33,6 +33,8 @@ declare const DeleteVpcConnectionCommand_base: {
33
33
  * ```javascript
34
34
  * import { KafkaClient, DeleteVpcConnectionCommand } from "@aws-sdk/client-kafka"; // ES Modules import
35
35
  * // const { KafkaClient, DeleteVpcConnectionCommand } = require("@aws-sdk/client-kafka"); // CommonJS import
36
+ * // import type { KafkaClientConfig } from "@aws-sdk/client-kafka";
37
+ * const config = {}; // type is KafkaClientConfig
36
38
  * const client = new KafkaClient(config);
37
39
  * const input = { // DeleteVpcConnectionRequest
38
40
  * Arn: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const DescribeClusterCommand_base: {
33
33
  * ```javascript
34
34
  * import { KafkaClient, DescribeClusterCommand } from "@aws-sdk/client-kafka"; // ES Modules import
35
35
  * // const { KafkaClient, DescribeClusterCommand } = require("@aws-sdk/client-kafka"); // CommonJS import
36
+ * // import type { KafkaClientConfig } from "@aws-sdk/client-kafka";
37
+ * const config = {}; // type is KafkaClientConfig
36
38
  * const client = new KafkaClient(config);
37
39
  * const input = { // DescribeClusterRequest
38
40
  * ClusterArn: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const DescribeClusterOperationCommand_base: {
33
33
  * ```javascript
34
34
  * import { KafkaClient, DescribeClusterOperationCommand } from "@aws-sdk/client-kafka"; // ES Modules import
35
35
  * // const { KafkaClient, DescribeClusterOperationCommand } = require("@aws-sdk/client-kafka"); // CommonJS import
36
+ * // import type { KafkaClientConfig } from "@aws-sdk/client-kafka";
37
+ * const config = {}; // type is KafkaClientConfig
36
38
  * const client = new KafkaClient(config);
37
39
  * const input = { // DescribeClusterOperationRequest
38
40
  * ClusterOperationArn: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const DescribeClusterOperationV2Command_base: {
33
33
  * ```javascript
34
34
  * import { KafkaClient, DescribeClusterOperationV2Command } from "@aws-sdk/client-kafka"; // ES Modules import
35
35
  * // const { KafkaClient, DescribeClusterOperationV2Command } = require("@aws-sdk/client-kafka"); // CommonJS import
36
+ * // import type { KafkaClientConfig } from "@aws-sdk/client-kafka";
37
+ * const config = {}; // type is KafkaClientConfig
36
38
  * const client = new KafkaClient(config);
37
39
  * const input = { // DescribeClusterOperationV2Request
38
40
  * ClusterOperationArn: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const DescribeClusterV2Command_base: {
33
33
  * ```javascript
34
34
  * import { KafkaClient, DescribeClusterV2Command } from "@aws-sdk/client-kafka"; // ES Modules import
35
35
  * // const { KafkaClient, DescribeClusterV2Command } = require("@aws-sdk/client-kafka"); // CommonJS import
36
+ * // import type { KafkaClientConfig } from "@aws-sdk/client-kafka";
37
+ * const config = {}; // type is KafkaClientConfig
36
38
  * const client = new KafkaClient(config);
37
39
  * const input = { // DescribeClusterV2Request
38
40
  * ClusterArn: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const DescribeConfigurationCommand_base: {
33
33
  * ```javascript
34
34
  * import { KafkaClient, DescribeConfigurationCommand } from "@aws-sdk/client-kafka"; // ES Modules import
35
35
  * // const { KafkaClient, DescribeConfigurationCommand } = require("@aws-sdk/client-kafka"); // CommonJS import
36
+ * // import type { KafkaClientConfig } from "@aws-sdk/client-kafka";
37
+ * const config = {}; // type is KafkaClientConfig
36
38
  * const client = new KafkaClient(config);
37
39
  * const input = { // DescribeConfigurationRequest
38
40
  * Arn: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const DescribeConfigurationRevisionCommand_base: {
33
33
  * ```javascript
34
34
  * import { KafkaClient, DescribeConfigurationRevisionCommand } from "@aws-sdk/client-kafka"; // ES Modules import
35
35
  * // const { KafkaClient, DescribeConfigurationRevisionCommand } = require("@aws-sdk/client-kafka"); // CommonJS import
36
+ * // import type { KafkaClientConfig } from "@aws-sdk/client-kafka";
37
+ * const config = {}; // type is KafkaClientConfig
36
38
  * const client = new KafkaClient(config);
37
39
  * const input = { // DescribeConfigurationRevisionRequest
38
40
  * Arn: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const DescribeReplicatorCommand_base: {
33
33
  * ```javascript
34
34
  * import { KafkaClient, DescribeReplicatorCommand } from "@aws-sdk/client-kafka"; // ES Modules import
35
35
  * // const { KafkaClient, DescribeReplicatorCommand } = require("@aws-sdk/client-kafka"); // CommonJS import
36
+ * // import type { KafkaClientConfig } from "@aws-sdk/client-kafka";
37
+ * const config = {}; // type is KafkaClientConfig
36
38
  * const client = new KafkaClient(config);
37
39
  * const input = { // DescribeReplicatorRequest
38
40
  * ReplicatorArn: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const DescribeVpcConnectionCommand_base: {
33
33
  * ```javascript
34
34
  * import { KafkaClient, DescribeVpcConnectionCommand } from "@aws-sdk/client-kafka"; // ES Modules import
35
35
  * // const { KafkaClient, DescribeVpcConnectionCommand } = require("@aws-sdk/client-kafka"); // CommonJS import
36
+ * // import type { KafkaClientConfig } from "@aws-sdk/client-kafka";
37
+ * const config = {}; // type is KafkaClientConfig
36
38
  * const client = new KafkaClient(config);
37
39
  * const input = { // DescribeVpcConnectionRequest
38
40
  * Arn: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const GetBootstrapBrokersCommand_base: {
33
33
  * ```javascript
34
34
  * import { KafkaClient, GetBootstrapBrokersCommand } from "@aws-sdk/client-kafka"; // ES Modules import
35
35
  * // const { KafkaClient, GetBootstrapBrokersCommand } = require("@aws-sdk/client-kafka"); // CommonJS import
36
+ * // import type { KafkaClientConfig } from "@aws-sdk/client-kafka";
37
+ * const config = {}; // type is KafkaClientConfig
36
38
  * const client = new KafkaClient(config);
37
39
  * const input = { // GetBootstrapBrokersRequest
38
40
  * ClusterArn: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const GetClusterPolicyCommand_base: {
33
33
  * ```javascript
34
34
  * import { KafkaClient, GetClusterPolicyCommand } from "@aws-sdk/client-kafka"; // ES Modules import
35
35
  * // const { KafkaClient, GetClusterPolicyCommand } = require("@aws-sdk/client-kafka"); // CommonJS import
36
+ * // import type { KafkaClientConfig } from "@aws-sdk/client-kafka";
37
+ * const config = {}; // type is KafkaClientConfig
36
38
  * const client = new KafkaClient(config);
37
39
  * const input = { // GetClusterPolicyRequest
38
40
  * ClusterArn: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const GetCompatibleKafkaVersionsCommand_base: {
33
33
  * ```javascript
34
34
  * import { KafkaClient, GetCompatibleKafkaVersionsCommand } from "@aws-sdk/client-kafka"; // ES Modules import
35
35
  * // const { KafkaClient, GetCompatibleKafkaVersionsCommand } = require("@aws-sdk/client-kafka"); // CommonJS import
36
+ * // import type { KafkaClientConfig } from "@aws-sdk/client-kafka";
37
+ * const config = {}; // type is KafkaClientConfig
36
38
  * const client = new KafkaClient(config);
37
39
  * const input = { // GetCompatibleKafkaVersionsRequest
38
40
  * ClusterArn: "STRING_VALUE",
@@ -33,6 +33,8 @@ declare const ListClientVpcConnectionsCommand_base: {
33
33
  * ```javascript
34
34
  * import { KafkaClient, ListClientVpcConnectionsCommand } from "@aws-sdk/client-kafka"; // ES Modules import
35
35
  * // const { KafkaClient, ListClientVpcConnectionsCommand } = require("@aws-sdk/client-kafka"); // CommonJS import
36
+ * // import type { KafkaClientConfig } from "@aws-sdk/client-kafka";
37
+ * const config = {}; // type is KafkaClientConfig
36
38
  * const client = new KafkaClient(config);
37
39
  * const input = { // ListClientVpcConnectionsRequest
38
40
  * ClusterArn: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const ListClusterOperationsCommand_base: {
33
33
  * ```javascript
34
34
  * import { KafkaClient, ListClusterOperationsCommand } from "@aws-sdk/client-kafka"; // ES Modules import
35
35
  * // const { KafkaClient, ListClusterOperationsCommand } = require("@aws-sdk/client-kafka"); // CommonJS import
36
+ * // import type { KafkaClientConfig } from "@aws-sdk/client-kafka";
37
+ * const config = {}; // type is KafkaClientConfig
36
38
  * const client = new KafkaClient(config);
37
39
  * const input = { // ListClusterOperationsRequest
38
40
  * ClusterArn: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const ListClusterOperationsV2Command_base: {
33
33
  * ```javascript
34
34
  * import { KafkaClient, ListClusterOperationsV2Command } from "@aws-sdk/client-kafka"; // ES Modules import
35
35
  * // const { KafkaClient, ListClusterOperationsV2Command } = require("@aws-sdk/client-kafka"); // CommonJS import
36
+ * // import type { KafkaClientConfig } from "@aws-sdk/client-kafka";
37
+ * const config = {}; // type is KafkaClientConfig
36
38
  * const client = new KafkaClient(config);
37
39
  * const input = { // ListClusterOperationsV2Request
38
40
  * ClusterArn: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const ListClustersCommand_base: {
33
33
  * ```javascript
34
34
  * import { KafkaClient, ListClustersCommand } from "@aws-sdk/client-kafka"; // ES Modules import
35
35
  * // const { KafkaClient, ListClustersCommand } = require("@aws-sdk/client-kafka"); // CommonJS import
36
+ * // import type { KafkaClientConfig } from "@aws-sdk/client-kafka";
37
+ * const config = {}; // type is KafkaClientConfig
36
38
  * const client = new KafkaClient(config);
37
39
  * const input = { // ListClustersRequest
38
40
  * ClusterNameFilter: "STRING_VALUE",
@@ -33,6 +33,8 @@ declare const ListClustersV2Command_base: {
33
33
  * ```javascript
34
34
  * import { KafkaClient, ListClustersV2Command } from "@aws-sdk/client-kafka"; // ES Modules import
35
35
  * // const { KafkaClient, ListClustersV2Command } = require("@aws-sdk/client-kafka"); // CommonJS import
36
+ * // import type { KafkaClientConfig } from "@aws-sdk/client-kafka";
37
+ * const config = {}; // type is KafkaClientConfig
36
38
  * const client = new KafkaClient(config);
37
39
  * const input = { // ListClustersV2Request
38
40
  * ClusterNameFilter: "STRING_VALUE",
@@ -33,6 +33,8 @@ declare const ListConfigurationRevisionsCommand_base: {
33
33
  * ```javascript
34
34
  * import { KafkaClient, ListConfigurationRevisionsCommand } from "@aws-sdk/client-kafka"; // ES Modules import
35
35
  * // const { KafkaClient, ListConfigurationRevisionsCommand } = require("@aws-sdk/client-kafka"); // CommonJS import
36
+ * // import type { KafkaClientConfig } from "@aws-sdk/client-kafka";
37
+ * const config = {}; // type is KafkaClientConfig
36
38
  * const client = new KafkaClient(config);
37
39
  * const input = { // ListConfigurationRevisionsRequest
38
40
  * Arn: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const ListConfigurationsCommand_base: {
33
33
  * ```javascript
34
34
  * import { KafkaClient, ListConfigurationsCommand } from "@aws-sdk/client-kafka"; // ES Modules import
35
35
  * // const { KafkaClient, ListConfigurationsCommand } = require("@aws-sdk/client-kafka"); // CommonJS import
36
+ * // import type { KafkaClientConfig } from "@aws-sdk/client-kafka";
37
+ * const config = {}; // type is KafkaClientConfig
36
38
  * const client = new KafkaClient(config);
37
39
  * const input = { // ListConfigurationsRequest
38
40
  * MaxResults: Number("int"),
@@ -33,6 +33,8 @@ declare const ListKafkaVersionsCommand_base: {
33
33
  * ```javascript
34
34
  * import { KafkaClient, ListKafkaVersionsCommand } from "@aws-sdk/client-kafka"; // ES Modules import
35
35
  * // const { KafkaClient, ListKafkaVersionsCommand } = require("@aws-sdk/client-kafka"); // CommonJS import
36
+ * // import type { KafkaClientConfig } from "@aws-sdk/client-kafka";
37
+ * const config = {}; // type is KafkaClientConfig
36
38
  * const client = new KafkaClient(config);
37
39
  * const input = { // ListKafkaVersionsRequest
38
40
  * MaxResults: Number("int"),
@@ -33,6 +33,8 @@ declare const ListNodesCommand_base: {
33
33
  * ```javascript
34
34
  * import { KafkaClient, ListNodesCommand } from "@aws-sdk/client-kafka"; // ES Modules import
35
35
  * // const { KafkaClient, ListNodesCommand } = require("@aws-sdk/client-kafka"); // CommonJS import
36
+ * // import type { KafkaClientConfig } from "@aws-sdk/client-kafka";
37
+ * const config = {}; // type is KafkaClientConfig
36
38
  * const client = new KafkaClient(config);
37
39
  * const input = { // ListNodesRequest
38
40
  * ClusterArn: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const ListReplicatorsCommand_base: {
33
33
  * ```javascript
34
34
  * import { KafkaClient, ListReplicatorsCommand } from "@aws-sdk/client-kafka"; // ES Modules import
35
35
  * // const { KafkaClient, ListReplicatorsCommand } = require("@aws-sdk/client-kafka"); // CommonJS import
36
+ * // import type { KafkaClientConfig } from "@aws-sdk/client-kafka";
37
+ * const config = {}; // type is KafkaClientConfig
36
38
  * const client = new KafkaClient(config);
37
39
  * const input = { // ListReplicatorsRequest
38
40
  * MaxResults: Number("int"),
@@ -33,6 +33,8 @@ declare const ListScramSecretsCommand_base: {
33
33
  * ```javascript
34
34
  * import { KafkaClient, ListScramSecretsCommand } from "@aws-sdk/client-kafka"; // ES Modules import
35
35
  * // const { KafkaClient, ListScramSecretsCommand } = require("@aws-sdk/client-kafka"); // CommonJS import
36
+ * // import type { KafkaClientConfig } from "@aws-sdk/client-kafka";
37
+ * const config = {}; // type is KafkaClientConfig
36
38
  * const client = new KafkaClient(config);
37
39
  * const input = { // ListScramSecretsRequest
38
40
  * ClusterArn: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const ListTagsForResourceCommand_base: {
33
33
  * ```javascript
34
34
  * import { KafkaClient, ListTagsForResourceCommand } from "@aws-sdk/client-kafka"; // ES Modules import
35
35
  * // const { KafkaClient, ListTagsForResourceCommand } = require("@aws-sdk/client-kafka"); // CommonJS import
36
+ * // import type { KafkaClientConfig } from "@aws-sdk/client-kafka";
37
+ * const config = {}; // type is KafkaClientConfig
36
38
  * const client = new KafkaClient(config);
37
39
  * const input = { // ListTagsForResourceRequest
38
40
  * ResourceArn: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const ListVpcConnectionsCommand_base: {
33
33
  * ```javascript
34
34
  * import { KafkaClient, ListVpcConnectionsCommand } from "@aws-sdk/client-kafka"; // ES Modules import
35
35
  * // const { KafkaClient, ListVpcConnectionsCommand } = require("@aws-sdk/client-kafka"); // CommonJS import
36
+ * // import type { KafkaClientConfig } from "@aws-sdk/client-kafka";
37
+ * const config = {}; // type is KafkaClientConfig
36
38
  * const client = new KafkaClient(config);
37
39
  * const input = { // ListVpcConnectionsRequest
38
40
  * MaxResults: Number("int"),
@@ -33,6 +33,8 @@ declare const PutClusterPolicyCommand_base: {
33
33
  * ```javascript
34
34
  * import { KafkaClient, PutClusterPolicyCommand } from "@aws-sdk/client-kafka"; // ES Modules import
35
35
  * // const { KafkaClient, PutClusterPolicyCommand } = require("@aws-sdk/client-kafka"); // CommonJS import
36
+ * // import type { KafkaClientConfig } from "@aws-sdk/client-kafka";
37
+ * const config = {}; // type is KafkaClientConfig
36
38
  * const client = new KafkaClient(config);
37
39
  * const input = { // PutClusterPolicyRequest
38
40
  * ClusterArn: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const RebootBrokerCommand_base: {
33
33
  * ```javascript
34
34
  * import { KafkaClient, RebootBrokerCommand } from "@aws-sdk/client-kafka"; // ES Modules import
35
35
  * // const { KafkaClient, RebootBrokerCommand } = require("@aws-sdk/client-kafka"); // CommonJS import
36
+ * // import type { KafkaClientConfig } from "@aws-sdk/client-kafka";
37
+ * const config = {}; // type is KafkaClientConfig
36
38
  * const client = new KafkaClient(config);
37
39
  * const input = { // RebootBrokerRequest
38
40
  * BrokerIds: [ // __listOf__string // required
@@ -33,6 +33,8 @@ declare const RejectClientVpcConnectionCommand_base: {
33
33
  * ```javascript
34
34
  * import { KafkaClient, RejectClientVpcConnectionCommand } from "@aws-sdk/client-kafka"; // ES Modules import
35
35
  * // const { KafkaClient, RejectClientVpcConnectionCommand } = require("@aws-sdk/client-kafka"); // CommonJS import
36
+ * // import type { KafkaClientConfig } from "@aws-sdk/client-kafka";
37
+ * const config = {}; // type is KafkaClientConfig
36
38
  * const client = new KafkaClient(config);
37
39
  * const input = { // RejectClientVpcConnectionRequest
38
40
  * ClusterArn: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const TagResourceCommand_base: {
33
33
  * ```javascript
34
34
  * import { KafkaClient, TagResourceCommand } from "@aws-sdk/client-kafka"; // ES Modules import
35
35
  * // const { KafkaClient, TagResourceCommand } = require("@aws-sdk/client-kafka"); // CommonJS import
36
+ * // import type { KafkaClientConfig } from "@aws-sdk/client-kafka";
37
+ * const config = {}; // type is KafkaClientConfig
36
38
  * const client = new KafkaClient(config);
37
39
  * const input = { // TagResourceRequest
38
40
  * ResourceArn: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const UntagResourceCommand_base: {
33
33
  * ```javascript
34
34
  * import { KafkaClient, UntagResourceCommand } from "@aws-sdk/client-kafka"; // ES Modules import
35
35
  * // const { KafkaClient, UntagResourceCommand } = require("@aws-sdk/client-kafka"); // CommonJS import
36
+ * // import type { KafkaClientConfig } from "@aws-sdk/client-kafka";
37
+ * const config = {}; // type is KafkaClientConfig
36
38
  * const client = new KafkaClient(config);
37
39
  * const input = { // UntagResourceRequest
38
40
  * ResourceArn: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const UpdateBrokerCountCommand_base: {
33
33
  * ```javascript
34
34
  * import { KafkaClient, UpdateBrokerCountCommand } from "@aws-sdk/client-kafka"; // ES Modules import
35
35
  * // const { KafkaClient, UpdateBrokerCountCommand } = require("@aws-sdk/client-kafka"); // CommonJS import
36
+ * // import type { KafkaClientConfig } from "@aws-sdk/client-kafka";
37
+ * const config = {}; // type is KafkaClientConfig
36
38
  * const client = new KafkaClient(config);
37
39
  * const input = { // UpdateBrokerCountRequest
38
40
  * ClusterArn: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const UpdateBrokerStorageCommand_base: {
33
33
  * ```javascript
34
34
  * import { KafkaClient, UpdateBrokerStorageCommand } from "@aws-sdk/client-kafka"; // ES Modules import
35
35
  * // const { KafkaClient, UpdateBrokerStorageCommand } = require("@aws-sdk/client-kafka"); // CommonJS import
36
+ * // import type { KafkaClientConfig } from "@aws-sdk/client-kafka";
37
+ * const config = {}; // type is KafkaClientConfig
36
38
  * const client = new KafkaClient(config);
37
39
  * const input = { // UpdateBrokerStorageRequest
38
40
  * ClusterArn: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const UpdateBrokerTypeCommand_base: {
33
33
  * ```javascript
34
34
  * import { KafkaClient, UpdateBrokerTypeCommand } from "@aws-sdk/client-kafka"; // ES Modules import
35
35
  * // const { KafkaClient, UpdateBrokerTypeCommand } = require("@aws-sdk/client-kafka"); // CommonJS import
36
+ * // import type { KafkaClientConfig } from "@aws-sdk/client-kafka";
37
+ * const config = {}; // type is KafkaClientConfig
36
38
  * const client = new KafkaClient(config);
37
39
  * const input = { // UpdateBrokerTypeRequest
38
40
  * ClusterArn: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const UpdateClusterConfigurationCommand_base: {
33
33
  * ```javascript
34
34
  * import { KafkaClient, UpdateClusterConfigurationCommand } from "@aws-sdk/client-kafka"; // ES Modules import
35
35
  * // const { KafkaClient, UpdateClusterConfigurationCommand } = require("@aws-sdk/client-kafka"); // CommonJS import
36
+ * // import type { KafkaClientConfig } from "@aws-sdk/client-kafka";
37
+ * const config = {}; // type is KafkaClientConfig
36
38
  * const client = new KafkaClient(config);
37
39
  * const input = { // UpdateClusterConfigurationRequest
38
40
  * ClusterArn: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const UpdateClusterKafkaVersionCommand_base: {
33
33
  * ```javascript
34
34
  * import { KafkaClient, UpdateClusterKafkaVersionCommand } from "@aws-sdk/client-kafka"; // ES Modules import
35
35
  * // const { KafkaClient, UpdateClusterKafkaVersionCommand } = require("@aws-sdk/client-kafka"); // CommonJS import
36
+ * // import type { KafkaClientConfig } from "@aws-sdk/client-kafka";
37
+ * const config = {}; // type is KafkaClientConfig
36
38
  * const client = new KafkaClient(config);
37
39
  * const input = { // UpdateClusterKafkaVersionRequest
38
40
  * ClusterArn: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const UpdateConfigurationCommand_base: {
33
33
  * ```javascript
34
34
  * import { KafkaClient, UpdateConfigurationCommand } from "@aws-sdk/client-kafka"; // ES Modules import
35
35
  * // const { KafkaClient, UpdateConfigurationCommand } = require("@aws-sdk/client-kafka"); // CommonJS import
36
+ * // import type { KafkaClientConfig } from "@aws-sdk/client-kafka";
37
+ * const config = {}; // type is KafkaClientConfig
36
38
  * const client = new KafkaClient(config);
37
39
  * const input = { // UpdateConfigurationRequest
38
40
  * Arn: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const UpdateConnectivityCommand_base: {
33
33
  * ```javascript
34
34
  * import { KafkaClient, UpdateConnectivityCommand } from "@aws-sdk/client-kafka"; // ES Modules import
35
35
  * // const { KafkaClient, UpdateConnectivityCommand } = require("@aws-sdk/client-kafka"); // CommonJS import
36
+ * // import type { KafkaClientConfig } from "@aws-sdk/client-kafka";
37
+ * const config = {}; // type is KafkaClientConfig
36
38
  * const client = new KafkaClient(config);
37
39
  * const input = { // UpdateConnectivityRequest
38
40
  * ClusterArn: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const UpdateMonitoringCommand_base: {
33
33
  * ```javascript
34
34
  * import { KafkaClient, UpdateMonitoringCommand } from "@aws-sdk/client-kafka"; // ES Modules import
35
35
  * // const { KafkaClient, UpdateMonitoringCommand } = require("@aws-sdk/client-kafka"); // CommonJS import
36
+ * // import type { KafkaClientConfig } from "@aws-sdk/client-kafka";
37
+ * const config = {}; // type is KafkaClientConfig
36
38
  * const client = new KafkaClient(config);
37
39
  * const input = { // UpdateMonitoringRequest
38
40
  * ClusterArn: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const UpdateReplicationInfoCommand_base: {
33
33
  * ```javascript
34
34
  * import { KafkaClient, UpdateReplicationInfoCommand } from "@aws-sdk/client-kafka"; // ES Modules import
35
35
  * // const { KafkaClient, UpdateReplicationInfoCommand } = require("@aws-sdk/client-kafka"); // CommonJS import
36
+ * // import type { KafkaClientConfig } from "@aws-sdk/client-kafka";
37
+ * const config = {}; // type is KafkaClientConfig
36
38
  * const client = new KafkaClient(config);
37
39
  * const input = { // UpdateReplicationInfoRequest
38
40
  * ConsumerGroupReplication: { // ConsumerGroupReplicationUpdate
@@ -33,6 +33,8 @@ declare const UpdateSecurityCommand_base: {
33
33
  * ```javascript
34
34
  * import { KafkaClient, UpdateSecurityCommand } from "@aws-sdk/client-kafka"; // ES Modules import
35
35
  * // const { KafkaClient, UpdateSecurityCommand } = require("@aws-sdk/client-kafka"); // CommonJS import
36
+ * // import type { KafkaClientConfig } from "@aws-sdk/client-kafka";
37
+ * const config = {}; // type is KafkaClientConfig
36
38
  * const client = new KafkaClient(config);
37
39
  * const input = { // UpdateSecurityRequest
38
40
  * ClientAuthentication: { // ClientAuthentication
@@ -33,6 +33,8 @@ declare const UpdateStorageCommand_base: {
33
33
  * ```javascript
34
34
  * import { KafkaClient, UpdateStorageCommand } from "@aws-sdk/client-kafka"; // ES Modules import
35
35
  * // const { KafkaClient, UpdateStorageCommand } = require("@aws-sdk/client-kafka"); // CommonJS import
36
+ * // import type { KafkaClientConfig } from "@aws-sdk/client-kafka";
37
+ * const config = {}; // type is KafkaClientConfig
36
38
  * const client = new KafkaClient(config);
37
39
  * const input = { // UpdateStorageRequest
38
40
  * ClusterArn: "STRING_VALUE", // required
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-kafka",
3
3
  "description": "AWS SDK for JavaScript Kafka Client for Node.js, Browser and React Native",
4
- "version": "3.888.0",
4
+ "version": "3.891.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-kafka",
@@ -20,41 +20,41 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/core": "3.888.0",
24
- "@aws-sdk/credential-provider-node": "3.888.0",
25
- "@aws-sdk/middleware-host-header": "3.887.0",
26
- "@aws-sdk/middleware-logger": "3.887.0",
27
- "@aws-sdk/middleware-recursion-detection": "3.887.0",
28
- "@aws-sdk/middleware-user-agent": "3.888.0",
29
- "@aws-sdk/region-config-resolver": "3.887.0",
23
+ "@aws-sdk/core": "3.890.0",
24
+ "@aws-sdk/credential-provider-node": "3.891.0",
25
+ "@aws-sdk/middleware-host-header": "3.891.0",
26
+ "@aws-sdk/middleware-logger": "3.891.0",
27
+ "@aws-sdk/middleware-recursion-detection": "3.891.0",
28
+ "@aws-sdk/middleware-user-agent": "3.891.0",
29
+ "@aws-sdk/region-config-resolver": "3.890.0",
30
30
  "@aws-sdk/types": "3.887.0",
31
- "@aws-sdk/util-endpoints": "3.887.0",
31
+ "@aws-sdk/util-endpoints": "3.891.0",
32
32
  "@aws-sdk/util-user-agent-browser": "3.887.0",
33
- "@aws-sdk/util-user-agent-node": "3.888.0",
34
- "@smithy/config-resolver": "^4.2.1",
33
+ "@aws-sdk/util-user-agent-node": "3.891.0",
34
+ "@smithy/config-resolver": "^4.2.2",
35
35
  "@smithy/core": "^3.11.0",
36
36
  "@smithy/fetch-http-handler": "^5.2.1",
37
37
  "@smithy/hash-node": "^4.1.1",
38
38
  "@smithy/invalid-dependency": "^4.1.1",
39
39
  "@smithy/middleware-content-length": "^4.1.1",
40
- "@smithy/middleware-endpoint": "^4.2.1",
41
- "@smithy/middleware-retry": "^4.2.1",
40
+ "@smithy/middleware-endpoint": "^4.2.2",
41
+ "@smithy/middleware-retry": "^4.2.3",
42
42
  "@smithy/middleware-serde": "^4.1.1",
43
43
  "@smithy/middleware-stack": "^4.1.1",
44
- "@smithy/node-config-provider": "^4.2.1",
44
+ "@smithy/node-config-provider": "^4.2.2",
45
45
  "@smithy/node-http-handler": "^4.2.1",
46
46
  "@smithy/protocol-http": "^5.2.1",
47
- "@smithy/smithy-client": "^4.6.1",
47
+ "@smithy/smithy-client": "^4.6.2",
48
48
  "@smithy/types": "^4.5.0",
49
49
  "@smithy/url-parser": "^4.1.1",
50
50
  "@smithy/util-base64": "^4.1.0",
51
51
  "@smithy/util-body-length-browser": "^4.1.0",
52
52
  "@smithy/util-body-length-node": "^4.1.0",
53
- "@smithy/util-defaults-mode-browser": "^4.1.1",
54
- "@smithy/util-defaults-mode-node": "^4.1.1",
55
- "@smithy/util-endpoints": "^3.1.1",
53
+ "@smithy/util-defaults-mode-browser": "^4.1.2",
54
+ "@smithy/util-defaults-mode-node": "^4.1.2",
55
+ "@smithy/util-endpoints": "^3.1.2",
56
56
  "@smithy/util-middleware": "^4.1.1",
57
- "@smithy/util-retry": "^4.1.1",
57
+ "@smithy/util-retry": "^4.1.2",
58
58
  "@smithy/util-utf8": "^4.1.0",
59
59
  "tslib": "^2.6.2"
60
60
  },