Mount a topic to a cluster
Mount a topic in object storage to a cluster according to the specified configuration.
POST
/v1/topics/mount
curl \
--request POST 'http://localhost:9644/v1/topics/mount' \
--header "Content-Type: application/json" \
--data '{"topics":[{"source_topic_reference":{"topic":"string","ns":"string"},"alias":{"topic":"string","ns":"string"}}]}'
Request examples
{
"topics": [
{
"source_topic_reference": {
"topic": "string",
"ns": "string"
},
"alias": {
"topic": "string",
"ns": "string"
}
}
]
}
Response examples (200)
{
"id": 42
}