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
metadata
No
object
Optional metadata for the cluster.
properties
Yes
object
Properties of the cluster to be created.
properties.name
Yes
string
The name of the Kafka cluster.
properties.version
Yes
string
The version of Kafka to use for the cluster.
properties.size
Yes
string
The size of the Kafka cluster.
properties.connections
No
array
List of connections for the cluster.
properties.connections[].datacenterId
Yes
string
The UUID of the data center where the cluster will be created.
properties.connections[].lanId
Yes
string
The LAN ID where the cluster will be connected.
properties.connections[].brokerAddresses
Yes
array
List of broker addresses for the cluster.
Request Body
Response
Last updated