You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Password for the virtual machine. If not provided, random password will be generated. Password will not be shown in the response.
[optional]
post_install_script_id
int
Post-install script ID
[optional]
Example
fromhostinger_api.models.vpsv1_virtual_machine_recreate_requestimportVPSV1VirtualMachineRecreateRequest# TODO update the JSON string belowjson="{}"# create an instance of VPSV1VirtualMachineRecreateRequest from a JSON stringvpsv1_virtual_machine_recreate_request_instance=VPSV1VirtualMachineRecreateRequest.from_json(json)
# print the JSON string representation of the objectprint(VPSV1VirtualMachineRecreateRequest.to_json())
# convert the object into a dictvpsv1_virtual_machine_recreate_request_dict=vpsv1_virtual_machine_recreate_request_instance.to_dict()
# create an instance of VPSV1VirtualMachineRecreateRequest from a dictvpsv1_virtual_machine_recreate_request_from_dict=VPSV1VirtualMachineRecreateRequest.from_dict(vpsv1_virtual_machine_recreate_request_dict)