Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.31 KB

File metadata and controls

33 lines (24 loc) · 1.31 KB

DatabaseUserRequest

Properties

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]

Example

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]