Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.18 KB

File metadata and controls

35 lines (26 loc) · 1.18 KB

Backend

Properties

Name Type Description Notes
id int The id of the backend
name str The name of the backend
location str The location of the backend
backend_type_id int The id of the backend type
status BackendStatus Status of the backend
message BackendMessage The message obj for a backend [optional]
last_heartbeat datetime Time of last heartbeat

Example

from compute_api_client.models.backend import Backend

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

# convert the object into a dict
backend_dict = backend_instance.to_dict()
# create an instance of Backend from a dict
backend_from_dict = Backend.from_dict(backend_dict)

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