python-novaclient/releasenotes/notes/microversion-v2_47-4aa54fbbd519e421.yaml
Chris Friesen 78986dcae2 2.47: Show flavor info in server details
This adds support for microversion 2.47 which directly embeds the
flavor information in the server details.  With this change, CLI
requests with microversion >= 2.47 will no longer need to do
additional queries to get the flavor and flavor extra_specs
information.  Instead, the flavor information will be output
as separate key/value pairs with the keys namespaced with the
"flavor:" prefix.  As one would expect, these keys can also be
specified as output fields when listing servers.

Change-Id: Ic00ec95485485dff0fd4dcf8cad6ca56a481d512
Implements: blueprint instance-flavor-api
Depends-On: If646149efb7eec8c90bf7d07c39ff4c495349941
2017-06-26 09:50:50 -06:00

19 lines
874 B
YAML

---
features:
- |
Added support for microversion 2.47 which returns the flavor details
directly embedded in the server details when listing or showing servers.
With this change, CLI requests with microversion >= 2.47 will no longer
need to do additional queries to get the flavor and flavor extra_specs
information. Instead, the flavor information will be output as
separate key/value pairs with the keys namespaced with the
"flavor:" prefix. As one would expect, these keys can also be
specified as output fields when listing servers, like this:
``nova list --fields name,flavor:original_name``
When displaying details of a single server, the ``--minimal`` option will
display a ``flavor`` field with a value of the ``original_name`` of the
flavor. Prior to this microversion the value was the ``id`` of the flavor.