action combell_get_my_sql_databases { label: "Overview of mysql databases" provider: combell method: GET path: "/mysqldatabases" encoding: json input: { type: "object" properties: { skip: { type: "integer" format: "int32" description: "The number of items to skip in the resultset." } take: { type: "integer" format: "int32" description: "The number of items to return in the resultset. The returned count can be equal or less than this number." } } additionalProperties: false } output: { type: "array" items: { 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 } } }