From 09665052acf8b98718401fb30b93f480707534d3 Mon Sep 17 00:00:00 2001 From: lin-hua-cheng Date: Thu, 5 Mar 2015 19:35:39 -0800 Subject: Add hypervisor docs Change-Id: I444734925316e876afcbfdeffafea9973a837022 --- openstackclient/compute/v2/hypervisor.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'openstackclient') diff --git a/openstackclient/compute/v2/hypervisor.py b/openstackclient/compute/v2/hypervisor.py index e01258d1..355ffbb3 100644 --- a/openstackclient/compute/v2/hypervisor.py +++ b/openstackclient/compute/v2/hypervisor.py @@ -33,8 +33,8 @@ class ListHypervisor(lister.Lister): parser = super(ListHypervisor, self).get_parser(prog_name) parser.add_argument( "--matching", - metavar="", - help="Filter hypervisors using substring", + metavar="", + help="Filter hypervisors using substring", ) return parser @@ -58,23 +58,23 @@ class ListHypervisor(lister.Lister): class ShowHypervisor(show.ShowOne): - """Show hypervisor details""" + """Display hypervisor details""" log = logging.getLogger(__name__ + ".ShowHypervisor") def get_parser(self, prog_name): parser = super(ShowHypervisor, self).get_parser(prog_name) parser.add_argument( - "id", - metavar="", - help="ID of the hypervisor to display") + "hypervisor", + metavar="", + help="Hypervisor to display (name or ID)") return parser def take_action(self, parsed_args): self.log.debug("take_action(%s)", parsed_args) compute_client = self.app.client_manager.compute hypervisor = utils.find_resource(compute_client.hypervisors, - parsed_args.id)._info.copy() + parsed_args.hypervisor)._info.copy() hypervisor["service_id"] = hypervisor["service"]["id"] hypervisor["service_host"] = hypervisor["service"]["host"] -- cgit v1.2.1