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.
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]
Example
frompfruck_contabo.models.list_instances_response_dataimportListInstancesResponseData# TODO update the JSON string belowjson="{}"# create an instance of ListInstancesResponseData from a JSON stringlist_instances_response_data_instance=ListInstancesResponseData.from_json(json)
# print the JSON string representation of the objectprint(ListInstancesResponseData.to_json())
# convert the object into a dictlist_instances_response_data_dict=list_instances_response_data_instance.to_dict()
# create an instance of ListInstancesResponseData from a dictlist_instances_response_data_from_dict=ListInstancesResponseData.from_dict(list_instances_response_data_dict)