VultrRuby::CreateDatabaseUserRequest Properties Name Type Description Notes username String The username of the database user. password String The password for the database user. This can be omitted to auto-generate a secure password. [optional] encryption String The password encryption type for the database user (MySQL engine type only). * `caching_sha2_password` (default if omitted) * `mysql_native_password` [optional] Example require 'vultr_ruby' instance = VultrRuby::CreateDatabaseUserRequest.new( username: null, password: null, encryption: null )