Skip to content

Latest commit

 

History

History
34 lines (26 loc) · 1.23 KB

BackendWithAuthentication.md

File metadata and controls

34 lines (26 loc) · 1.23 KB

BackendWithAuthentication

Properties

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

Example

from compute_api_client.models.backend_with_authentication import BackendWithAuthentication

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

# convert the object into a dict
backend_with_authentication_dict = backend_with_authentication_instance.to_dict()
# create an instance of BackendWithAuthentication from a dict
backend_with_authentication_form_dict = backend_with_authentication.from_dict(backend_with_authentication_dict)

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