how to list all nova services infomation with nova API ?
I need to fetch all information of the nova services: their name, their zone, their status, their state using the Python API. This can be easily done with the CLI command: #nova service-list
But when I use API: nova = client.Client(XXX) print nova.services.list() it only show the service name without more information. What's wrong with me ?