Name | Type | Description | Notes |
---|---|---|---|
username | String | The username for the database user. | [optional] |
password | String | The password for the database user. | [optional] |
encryption | String | The password encryption for the database user (MySQL engine type only). * `Default (MySQL 8+)` * `Legacy (MySQL 5.x)` | [optional] |
access_control | DatabaseUserAccessControl | [optional] |
require 'vultr_ruby'
instance = VultrRuby::DatabaseUser.new(
username: null,
password: null,
encryption: null,
access_control: null
)