Create a Kafka Cluster
You can create a new Kafka cluster with specified configurations.
Endpoint
POST /clusters
The POST /clusters
endpoint allows you to create a new Kafka cluster with specified properties. The name, version, size and connection fields are required. The response includes the ID, metadata, and properties of the newly created cluster, along with its current state and broker addresses.
Use this endpoint to provision a Kafka cluster tailored to your application's requirements, ensuring seamless integration and efficient data management.
Parameters
Body Parameter | Required | Type | Description |
---|---|---|---|
| No | object | Optional metadata for the cluster. |
| Yes | object | Properties of the cluster to be created. |
| Yes | string | The name of the Kafka cluster. |
| Yes | string | The version of Kafka to use for the cluster. |
| Yes | string | The size of the Kafka cluster. |
| No | array | List of connections for the cluster. |
| Yes | string | The UUID of the data center where the cluster will be created. |
| Yes | string | The LAN ID where the cluster will be connected. |
| Yes | array | List of broker addresses for the cluster. |
Request Body
Response
Last updated