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
{{ message }}
This repository was archived by the owner on Feb 5, 2024. It is now read-only.
services = client.list_services()
# Why do only some of these work?
print services[0].id # Works
print services[0].name # Works
# print services[0].version # Doesn't work
# print services[0].versions # Doesn't work
# print services[0].updated_at # Doesn't work
print "-----------"
# But all of these work fine
print services[0]._data.get('id', None)
print services[0]._data.get('name', None)
print services[0]._data.get('version', None)
print services[0]._data.get('versions', None)
print services[0]._data.get('updated_at', None)