Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.01 KB

File metadata and controls

32 lines (23 loc) · 1.01 KB

ServerInit

Initial server setup parameters

Properties

Name Type Description Notes
admin Admin
password str The new Plesk Administrator's password that will replace the default one.
server_name str The full host name. [optional]

Example

from plesk_client.models.server_init import ServerInit

# TODO update the JSON string below
json = "{}"
# create an instance of ServerInit from a JSON string
server_init_instance = ServerInit.from_json(json)
# print the JSON string representation of the object
print(ServerInit.to_json())

# convert the object into a dict
server_init_dict = server_init_instance.to_dict()
# create an instance of ServerInit from a dict
server_init_from_dict = ServerInit.from_dict(server_init_dict)

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