get_kafka_topic
Retrieve detailed information about a specific Kafka topic in Vultr's managed database service using database ID and topic name parameters.
Instructions
Get information about a Kafka topic.
Args: database_id: The Kafka database ID or label topic_name: The topic name
Returns: Kafka topic information
Input Schema
Name | Required | Description | Default |
---|---|---|---|
database_id | Yes | ||
topic_name | Yes |
Input Schema (JSON Schema)
{
"properties": {
"database_id": {
"title": "Database Id",
"type": "string"
},
"topic_name": {
"title": "Topic Name",
"type": "string"
}
},
"required": [
"database_id",
"topic_name"
],
"type": "object"
}