action combell_create_my_sql_user { label: "Create a new mysql user" description: "The creation of a new mysql user will result in a user with read_only rights." provider: combell method: POST path: "/mysqldatabases/{databaseName}/users" encoding: json input: { type: "object" properties: { databaseName: { type: "string" } database_name: { type: "string" description: "Name of the database." } name: { type: "string" description: "User name
\nUser names have to adhere to following rules:
" } password: { type: "string" description: "The password for the database user.
\nPasswords have to adhere to following rules:
" } } required: ["databaseName", "database_name"] additionalProperties: false } output: { type: "object" additionalProperties: true } }