Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1 KB

File metadata and controls

31 lines (22 loc) · 1 KB

DBUser

Credentials for the database user to be created.

Properties

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

Example

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)

[Back to Model list] [Back to API list] [Back to README]