blob: 3e3cf8df66d9ef0177ff8296213a8fa286b4a456 [file] [log] [blame]
Matthew Treinish9e26ca82016-02-23 11:43:20 -05001# Copyright 2012 OpenStack Foundation
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.api_schema.response.compute.v2_1 import keypairs as schema
19from tempest.lib.common import rest_client
20
21
22class KeyPairsClient(rest_client.RestClient):
23
24 def list_keypairs(self):
25 resp, body = self.get("os-keypairs")
26 body = json.loads(body)
27 self.validate_response(schema.list_keypairs, resp, body)
28 return rest_client.ResponseBody(resp, body)
29
30 def show_keypair(self, keypair_name):
31 resp, body = self.get("os-keypairs/%s" % keypair_name)
32 body = json.loads(body)
33 self.validate_response(schema.get_keypair, resp, body)
34 return rest_client.ResponseBody(resp, body)
35
36 def create_keypair(self, **kwargs):
37 """Create a keypair.
38
39 Available params: see http://developer.openstack.org/
40 api-ref-compute-v2.1.html#createKeypair
41 """
42 post_body = json.dumps({'keypair': kwargs})
43 resp, body = self.post("os-keypairs", body=post_body)
44 body = json.loads(body)
45 self.validate_response(schema.create_keypair, resp, body)
46 return rest_client.ResponseBody(resp, body)
47
48 def delete_keypair(self, keypair_name):
49 resp, body = self.delete("os-keypairs/%s" % keypair_name)
50 self.validate_response(schema.delete_keypair, resp, body)
51 return rest_client.ResponseBody(resp, body)