> For the complete documentation index, see [llms.txt](https://docs.ionos.com/postgres-sdk-ruby/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.ionos.com/postgres-sdk-ruby/models/dbuser.md).

# DBUser

## Properties

| Name         | Type       | Description                                                                                                                                                   | Notes |
| ------------ | ---------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----- |
| **username** | **String** | The username for the initial PostgreSQL user. Some system usernames are restricted (e.g. \&quot;postgres\&quot;, \&quot;admin\&quot;, \&quot;standby\&quot;). |       |
| **password** | **String** |                                                                                                                                                               |       |

## Example

```ruby
require 'ionoscloud-dbaas-postgres'

instance = IonoscloudDbaasPostgres::DBUser.new(
  username: db-admin,
  password: password123
)
```
