Skip to content

Latest commit

 

History

History
33 lines (25 loc) · 968 Bytes

File metadata and controls

33 lines (25 loc) · 968 Bytes

Backend

Properties

Name Type Description Notes
id int
name str
location str
backend_type_id int
status BackendStatus
last_heartbeat datetime

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_form_dict = backend.from_dict(backend_dict)

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