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
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]
Example
frompfruck_contabo.models.instances_reset_password_actions_requestimportInstancesResetPasswordActionsRequest# TODO update the JSON string belowjson="{}"# create an instance of InstancesResetPasswordActionsRequest from a JSON stringinstances_reset_password_actions_request_instance=InstancesResetPasswordActionsRequest.from_json(json)
# print the JSON string representation of the objectprint(InstancesResetPasswordActionsRequest.to_json())
# convert the object into a dictinstances_reset_password_actions_request_dict=instances_reset_password_actions_request_instance.to_dict()
# create an instance of InstancesResetPasswordActionsRequest from a dictinstances_reset_password_actions_request_from_dict=InstancesResetPasswordActionsRequest.from_dict(instances_reset_password_actions_request_dict)