Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.46 KB

InstancesActionsRescueRequest.md

File metadata and controls

31 lines (22 loc) · 1.46 KB

InstancesActionsRescueRequest

Properties

Name Type Description Notes
root_password int `secretId` of the password to login into rescue system for the `root` user. [optional]
ssh_keys List[int] Array of `secretId`s of public SSH keys for logging into rescue system as `root` user. [optional]
user_data str Cloud-Init Config in order to customize during start of compute instance. [optional]

Example

from pfruck_contabo.models.instances_actions_rescue_request import InstancesActionsRescueRequest

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

# convert the object into a dict
instances_actions_rescue_request_dict = instances_actions_rescue_request_instance.to_dict()
# create an instance of InstancesActionsRescueRequest from a dict
instances_actions_rescue_request_from_dict = InstancesActionsRescueRequest.from_dict(instances_actions_rescue_request_dict)

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