Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 2.11 KB

ReinstallInstanceRequest.md

File metadata and controls

34 lines (25 loc) · 2.11 KB

ReinstallInstanceRequest

Properties

Name Type Description Notes
image_id str ImageId to be used to setup the compute instance.
ssh_keys List[int] Array of `secretId`s of public SSH keys for logging into as `defaultUser` with administrator/root privileges. Applies to Linux/BSD systems. Please refer to Secrets Management API. [optional]
root_password int `secretId` of the password for the `defaultUser` with administrator/root privileges. For Linux/BSD please use SSH, for Windows RDP. Please refer to Secrets Management API. [optional]
user_data str Cloud-Init Config in order to customize during start of compute instance. [optional]
default_user str Default user name created for login during (re-)installation with administrative privileges. Allowed values for Linux/BSD are `admin` (use sudo to apply administrative privileges like root) or `root`. Allowed values for Windows are `admin` (has administrative privileges like administrator) or `administrator`. [optional] [default to 'admin']
application_id str Application ID [optional]

Example

from pfruck_contabo.models.reinstall_instance_request import ReinstallInstanceRequest

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

# convert the object into a dict
reinstall_instance_request_dict = reinstall_instance_request_instance.to_dict()
# create an instance of ReinstallInstanceRequest from a dict
reinstall_instance_request_from_dict = ReinstallInstanceRequest.from_dict(reinstall_instance_request_dict)

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