Credentials for the database user to be created.
| Name | Type | Description | Notes |
|---|---|---|---|
| username | str | The username for the initial PostgreSQL user. Some system usernames are restricted (e.g. "postgres", "admin", "standby"). | |
| password | str |
from ionoscloud_dbaas_postgres.models.db_user import DBUser
# TODO update the JSON string below
json = "{}"
# create an instance of DBUser from a JSON string
db_user_instance = DBUser.from_json(json)
# print the JSON string representation of the object
print(DBUser.to_json())
# convert the object into a dict
db_user_dict = db_user_instance.to_dict()
# create an instance of DBUser from a dict
db_user_from_dict = DBUser.from_dict(db_user_dict)