Add api-ref url for compute list_baremetal_nodes

Change-Id: Ib99a2c5cea106bfee4e23d786c5cb7f583ef8d61
This commit is contained in:
Felipe Monteiro 2017-06-23 20:04:05 +01:00
parent 8fde5658a8
commit 31c75acff2
1 changed files with 11 additions and 2 deletions

View File

@ -25,7 +25,12 @@ class BaremetalNodesClient(base_compute_client.BaseComputeClient):
"""Tests Baremetal API"""
def list_baremetal_nodes(self, **params):
"""List all baremetal nodes."""
"""List all baremetal nodes.
For a full list of available parameters, please refer to the official
API reference:
https://developer.openstack.org/api-ref/compute/#list-bare-metal-nodes
"""
url = 'os-baremetal-nodes'
if params:
url += '?%s' % urllib.urlencode(params)
@ -35,7 +40,11 @@ class BaremetalNodesClient(base_compute_client.BaseComputeClient):
return rest_client.ResponseBody(resp, body)
def show_baremetal_node(self, baremetal_node_id):
"""Return the details of a single baremetal node."""
"""Show the details of a single baremetal node.
For more information, please refer to the official API reference:
https://developer.openstack.org/api-ref/compute/#show-bare-metal-node-details
"""
url = 'os-baremetal-nodes/%s' % baremetal_node_id
resp, body = self.get(url)
body = json.loads(body)