DigitalOcean.Database.reset_user_authentication_method
You're seeing just the function
reset_user_authentication_method
, go back to DigitalOcean.Database module for more information.
Link to this function
reset_user_authentication_method(database_id, username, opts)
Specs
reset_user_authentication_method(String.t(), String.t(), Keyword.t()) :: DigitalOcean.Operation.t()
Reset the MySQL authentication method for a database user.
Examples
iex> DigitalOcean.Database.reset_user_authentication_method(
...> "9cc10173-e9ea-4176-9dbc-a4cee4c4ff30",
...> "app-01",
...> mysql_settings: %{ auth_plugin: "caching_sha2_password" }
...> ) |> DigitalOcean.request()
{ :ok, %DigitalOcean.Response{} }