get_service_details
Retrieve detailed information about a specified Aiven service (e.g., PostgreSQL, Kafka) by providing the project and service name for integration or management purposes.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| project_name | Yes | ||
| service_name | Yes |
Input Schema (JSON Schema)
{
"properties": {
"project_name": {
"title": "project_name",
"type": "string"
},
"service_name": {
"title": "service_name",
"type": "string"
}
},
"required": [
"project_name",
"service_name"
],
"title": "get_service_detailsArguments",
"type": "object"
}