[openstack-dev] [nova] proper way to extend index() and add a new property?

2015-03-12 Thread Chris Friesen
I'm looking for some technical advice on API extensions. I want to add a new field to the output of the nova service-list command, which currently maps to ServiceController.index(). For the v2 API this seems straightforward, I can add a new extension and in the existing function I can call

Re: [openstack-dev] [nova] proper way to extend index() and add a new property?

2015-03-12 Thread Chris Friesen
On 03/12/2015 08:47 AM, Chris Friesen wrote: I'm looking for some technical advice on API extensions. I want to add a new field to the output of the nova service-list command, which currently maps to ServiceController.index(). For the v2 API this seems straightforward, I can add a new