Merge "Correct API reference link in volume client"

This commit is contained in:
Jenkins
2017-03-08 11:39:56 +00:00
committed by Gerrit Code Review
2 changed files with 3 additions and 3 deletions
@@ -28,7 +28,7 @@ class BackupsClient(rest_client.RestClient):
For a full list of available parameters, please refer to the official
API reference:
http://developer.openstack.org/api-ref-blockstorage-v2.html#createBackup
https://developer.openstack.org/api-ref/block-storage/v2/index.html#create-backup
"""
post_body = json.dumps({'backup': kwargs})
resp, body = self.post('backups', post_body)
@@ -41,7 +41,7 @@ class BackupsClient(rest_client.RestClient):
For a full list of available parameters, please refer to the official
API reference:
http://developer.openstack.org/api-ref-blockstorage-v2.html#restoreBackup
https://developer.openstack.org/api-ref/block-storage/v2/index.html#restore-backup
"""
post_body = json.dumps({'restore': kwargs})
resp, body = self.post('backups/%s/restore' % (backup_id), post_body)
@@ -49,7 +49,7 @@ class QuotasClient(rest_client.RestClient):
For a full list of available parameters, please refer to the official
API reference:
http://developer.openstack.org/api-ref-blockstorage-v2.html#updateQuota
https://developer.openstack.org/api-ref/block-storage/v2/index.html#update-quotas
"""
put_body = jsonutils.dumps({'quota_set': kwargs})
resp, body = self.put('os-quota-sets/%s' % tenant_id, put_body)