summaryrefslogtreecommitdiff
path: root/openstackclient
diff options
context:
space:
mode:
authorAlex Schultz <aschultz@mirantis.com>2015-10-06 15:59:50 -0500
committerAlex Schultz <aschultz@mirantis.com>2015-10-06 16:00:59 -0500
commit80e3a2dedbaccd582b5761b3419ec5ea033d7fe8 (patch)
tree2e56f00f85afbe23ab1572cfb831cd37358ce03f /openstackclient
parentbe1ee4181ee9e7f8d2eed43d3cb79e50af13e6c8 (diff)
downloadpython-openstackclient-80e3a2dedbaccd582b5761b3419ec5ea033d7fe8.tar.gz
Add ID column to compute service list
This change adds the ID to the compute service list command so that the ID can be leveraged by scripts trying to remove or update a specific service. Change-Id: I446b4c0071988133195eb2382313b3918b7ffa72 Closes-Bug: #1503430
Diffstat (limited to 'openstackclient')
-rw-r--r--openstackclient/compute/v2/service.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/openstackclient/compute/v2/service.py b/openstackclient/compute/v2/service.py
index 4b2ebac6..3a031bff 100644
--- a/openstackclient/compute/v2/service.py
+++ b/openstackclient/compute/v2/service.py
@@ -43,6 +43,7 @@ class ListService(lister.Lister):
self.log.debug("take_action(%s)", parsed_args)
compute_client = self.app.client_manager.compute
columns = (
+ "Id",
"Binary",
"Host",
"Zone",