| Name |
Type |
Description |
Notes |
| login |
str |
Database user login |
[optional] |
| password |
str |
User password |
[optional] |
| parent_domain |
DomainReference |
|
[optional] |
| server_id |
int |
ID of the database server (if user should have access to all databases on subscription) |
[optional] |
| database_id |
int |
ID of the database (if user should have access to one database) |
[optional] |
from plesk_client.models.database_user_request import DatabaseUserRequest
# TODO update the JSON string below
json = "{}"
# create an instance of DatabaseUserRequest from a JSON string
database_user_request_instance = DatabaseUserRequest.from_json(json)
# print the JSON string representation of the object
print(DatabaseUserRequest.to_json())
# convert the object into a dict
database_user_request_dict = database_user_request_instance.to_dict()
# create an instance of DatabaseUserRequest from a dict
database_user_request_from_dict = DatabaseUserRequest.from_dict(database_user_request_dict)
[Back to Model list] [Back to API list] [Back to README]