blob: 240be135dc4227b73cb8aafecfa4180c777f005c [file] [log] [blame]
lkuchlan7bba16c2016-09-04 12:36:04 +03001# Copyright 2016 Red Hat, Inc.
2# All Rights Reserved.
3#
4# Licensed under the Apache License, Version 2.0 (the "License"); you may
5# not use this file except in compliance with the License. You may obtain
6# a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
12# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
13# License for the specific language governing permissions and limitations
14# under the License.
15
16from oslo_serialization import jsonutils as json
17
18from tempest.lib.common import rest_client
19
20
21class CapabilitiesClient(rest_client.RestClient):
ghanshyam49f99e72017-02-23 15:34:26 +000022 api_version = "v2"
lkuchlan7bba16c2016-09-04 12:36:04 +030023
24 def show_backend_capabilities(self, host):
25 """Shows capabilities for a storage back end.
26
zhufl6ea5f8b2017-04-05 17:34:08 +080027 For a full list of available parameters, please refer to the official
28 API reference:
29 https://developer.openstack.org/api-ref/block-storage/v2/index.html#show-back-end-capabilities
lkuchlan7bba16c2016-09-04 12:36:04 +030030 """
31 url = 'capabilities/%s' % host
32 resp, body = self.get(url)
33 body = json.loads(body)
34 self.expected_success(200, resp.status)
35 return rest_client.ResponseBody(resp, body)