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
ISO 8601 formatted timestamp when the log entry was generated by the container
[optional]
line
str
Raw log message content as output by the application inside the container
[optional]
Example
fromhostinger_api.models.vpsv1_docker_manager_log_entry_resourceimportVPSV1DockerManagerLogEntryResource# TODO update the JSON string belowjson="{}"# create an instance of VPSV1DockerManagerLogEntryResource from a JSON stringvpsv1_docker_manager_log_entry_resource_instance=VPSV1DockerManagerLogEntryResource.from_json(json)
# print the JSON string representation of the objectprint(VPSV1DockerManagerLogEntryResource.to_json())
# convert the object into a dictvpsv1_docker_manager_log_entry_resource_dict=vpsv1_docker_manager_log_entry_resource_instance.to_dict()
# create an instance of VPSV1DockerManagerLogEntryResource from a dictvpsv1_docker_manager_log_entry_resource_from_dict=VPSV1DockerManagerLogEntryResource.from_dict(vpsv1_docker_manager_log_entry_resource_dict)