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.
Example
frompfruck_contabo.models.create_instance_response_dataimportCreateInstanceResponseData# TODO update the JSON string belowjson="{}"# create an instance of CreateInstanceResponseData from a JSON stringcreate_instance_response_data_instance=CreateInstanceResponseData.from_json(json)
# print the JSON string representation of the objectprint(CreateInstanceResponseData.to_json())
# convert the object into a dictcreate_instance_response_data_dict=create_instance_response_data_instance.to_dict()
# create an instance of CreateInstanceResponseData from a dictcreate_instance_response_data_from_dict=CreateInstanceResponseData.from_dict(create_instance_response_data_dict)