action combell_change_database_user_password { label: "Change password for mysql user" provider: combell method: PUT path: "/mysqldatabases/{databaseName}/users/{userName}/password" encoding: json input: { type: "object" properties: { databaseName: { type: "string" } database_name: { type: "string" description: "Name of the database." } password: { type: "string" description: "The password for the database user.
\nPasswords have to adhere to following rules:
" } userName: { type: "string" } user_name: { type: "string" description: "Name of the user." } } required: ["databaseName", "database_name", "userName", "user_name"] additionalProperties: false } output: { type: "object" additionalProperties: true } }