action combell_get_my_sql_database { label: "Get a specific database" provider: combell method: GET path: "/mysqldatabases/{databaseName}" encoding: json input: { type: "object" properties: { databaseName: { type: "string" } database_name: { type: "string" } } required: ["databaseName", "database_name"] additionalProperties: false } output: { type: "object" properties: { account_id: { type: "integer" format: "int32" description: "The account id for the database." } actual_size: { type: "integer" format: "int32" description: "The actual size in MB for the database." } hostname: { type: "string" description: "Hostname" } max_size: { type: "integer" format: "int32" description: "The maximim size in MB for the database." } name: { type: "string" description: "Database name" } user_count: { type: "integer" format: "int32" description: "The number of users." } } additionalProperties: false } }