@aws-sdk/client-kafka 3.986.0 → 3.988.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 (33) hide show
  1. package/README.md +21 -0
  2. package/dist-cjs/index.js +117 -2455
  3. package/dist-cjs/models/KafkaServiceException.js +12 -0
  4. package/dist-cjs/models/errors.js +293 -0
  5. package/dist-cjs/runtimeConfig.shared.js +2 -0
  6. package/dist-cjs/schemas/schemas_0.js +2122 -0
  7. package/dist-es/Kafka.js +6 -0
  8. package/dist-es/commands/CreateTopicCommand.js +16 -0
  9. package/dist-es/commands/DeleteTopicCommand.js +16 -0
  10. package/dist-es/commands/UpdateTopicCommand.js +16 -0
  11. package/dist-es/commands/index.js +3 -0
  12. package/dist-es/models/errors.js +144 -0
  13. package/dist-es/runtimeConfig.shared.js +2 -0
  14. package/dist-es/schemas/schemas_0.js +182 -65
  15. package/dist-types/Kafka.d.ts +21 -0
  16. package/dist-types/KafkaClient.d.ts +5 -2
  17. package/dist-types/commands/CreateTopicCommand.d.ts +128 -0
  18. package/dist-types/commands/DeleteTopicCommand.d.ts +113 -0
  19. package/dist-types/commands/UpdateTopicCommand.d.ts +121 -0
  20. package/dist-types/commands/index.d.ts +3 -0
  21. package/dist-types/models/errors.d.ts +198 -0
  22. package/dist-types/models/models_0.d.ts +130 -0
  23. package/dist-types/schemas/schemas_0.d.ts +34 -9
  24. package/dist-types/ts3.4/Kafka.d.ts +51 -0
  25. package/dist-types/ts3.4/KafkaClient.d.ts +20 -2
  26. package/dist-types/ts3.4/commands/CreateTopicCommand.d.ts +47 -0
  27. package/dist-types/ts3.4/commands/DeleteTopicCommand.d.ts +47 -0
  28. package/dist-types/ts3.4/commands/UpdateTopicCommand.d.ts +47 -0
  29. package/dist-types/ts3.4/commands/index.d.ts +3 -0
  30. package/dist-types/ts3.4/models/errors.d.ts +90 -0
  31. package/dist-types/ts3.4/models/models_0.d.ts +32 -0
  32. package/dist-types/ts3.4/schemas/schemas_0.d.ts +29 -9
  33. package/package.json +13 -13
package/README.md CHANGED
@@ -243,6 +243,13 @@ CreateReplicator
243
243
  </details>
244
244
  <details>
245
245
  <summary>
246
+ CreateTopic
247
+ </summary>
248
+
249
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/kafka/command/CreateTopicCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-kafka/Interface/CreateTopicCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-kafka/Interface/CreateTopicCommandOutput/)
250
+ </details>
251
+ <details>
252
+ <summary>
246
253
  CreateVpcConnection
247
254
  </summary>
248
255
 
@@ -278,6 +285,13 @@ DeleteReplicator
278
285
  </details>
279
286
  <details>
280
287
  <summary>
288
+ DeleteTopic
289
+ </summary>
290
+
291
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/kafka/command/DeleteTopicCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-kafka/Interface/DeleteTopicCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-kafka/Interface/DeleteTopicCommandOutput/)
292
+ </details>
293
+ <details>
294
+ <summary>
281
295
  DeleteVpcConnection
282
296
  </summary>
283
297
 
@@ -591,3 +605,10 @@ UpdateStorage
591
605
 
592
606
  [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/kafka/command/UpdateStorageCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-kafka/Interface/UpdateStorageCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-kafka/Interface/UpdateStorageCommandOutput/)
593
607
  </details>
608
+ <details>
609
+ <summary>
610
+ UpdateTopic
611
+ </summary>
612
+
613
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/kafka/command/UpdateTopicCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-kafka/Interface/UpdateTopicCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-kafka/Interface/UpdateTopicCommandOutput/)
614
+ </details>