action combell_create_my_sql_database { label: "Create a new mysql database" provider: combell method: POST path: "/mysqldatabases" encoding: json input: { type: "object" properties: { account_id: { type: "integer" format: "int32" description: "The id of the account on which to create the database." } database_name: { type: "string" description: "The name for the database. This will be prefixed during provisioning. \nThe provided name during creation will be different from the provisioned database name." } password: { type: "string" description: "The password for the database user.
\nPasswords have to adhere to following rules:
" } } additionalProperties: false } output: { type: "object" additionalProperties: true } }