blob: f6b76e92326f3ee70d63af0d23929087f5893653 [file] [log] [blame]
ZhiQiang Fan39f97222013-09-20 04:49:44 +08001# Copyright 2012 OpenStack Foundation
nithya-ganesane6a36c82013-02-15 14:38:27 +00002# Copyright 2013 Hewlett-Packard Development Company, L.P.
dwallecke62b9f02012-10-10 23:34:42 -05003# All Rights Reserved.
4#
5# Licensed under the Apache License, Version 2.0 (the "License"); you may
6# not use this file except in compliance with the License. You may obtain
7# a copy of the License at
8#
9# http://www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14# License for the specific language governing permissions and limitations
15# under the License.
16
Daryl Wallecke5b83d42011-11-10 14:39:02 -060017import json
Daryl Wallecke5b83d42011-11-10 14:39:02 -060018import time
Matthew Treinish26dd0fa2012-12-04 17:14:37 -050019import urllib
Daryl Wallecke5b83d42011-11-10 14:39:02 -060020
Ghanshyam7fa397c2014-04-01 19:32:38 +090021from tempest.api_schema.compute import servers as common_schema
Ken'ichi Ohmichi02604582014-03-14 16:23:41 +090022from tempest.api_schema.compute.v2 import servers as schema
Haiwei Xuab924622014-03-05 04:33:51 +090023from tempest.common import rest_client
Attila Fazekas0abbc952013-07-01 19:19:42 +020024from tempest.common import waiters
Matthew Treinish684d8992014-01-30 16:27:40 +000025from tempest import config
Matthew Treinisha83a16e2012-12-07 13:44:02 -050026from tempest import exceptions
27
Matthew Treinish684d8992014-01-30 16:27:40 +000028CONF = config.CONF
29
Daryl Wallecke5b83d42011-11-10 14:39:02 -060030
Haiwei Xuab924622014-03-05 04:33:51 +090031class ServersClientJSON(rest_client.RestClient):
Daryl Wallecke5b83d42011-11-10 14:39:02 -060032
Andrea Frittoli8bbdb162014-01-06 11:06:13 +000033 def __init__(self, auth_provider):
34 super(ServersClientJSON, self).__init__(auth_provider)
35
Matthew Treinish684d8992014-01-30 16:27:40 +000036 self.service = CONF.compute.catalog_type
Daryl Wallecke5b83d42011-11-10 14:39:02 -060037
Rohit Karajgi95446a22011-12-12 06:21:43 -080038 def create_server(self, name, image_ref, flavor_ref, **kwargs):
Daryl Wallecke5b83d42011-11-10 14:39:02 -060039 """
40 Creates an instance of a server.
Rohit Karajgi95446a22011-12-12 06:21:43 -080041 name (Required): The name of the server.
42 image_ref (Required): Reference to the image used to build the server.
43 flavor_ref (Required): The flavor used to build the server.
44 Following optional keyword arguments are accepted:
Daryl Wallecke5b83d42011-11-10 14:39:02 -060045 adminPass: Sets the initial root password.
chris fattarsia6c2a732012-05-02 17:00:19 -070046 key_name: Key name of keypair that was created earlier.
David Kranz28e79de2012-04-12 15:49:41 -040047 meta: A dictionary of values to be used as metadata.
Daryl Wallecke5b83d42011-11-10 14:39:02 -060048 personality: A list of dictionaries for files to be injected into
49 the server.
Rohit Karajgi95446a22011-12-12 06:21:43 -080050 security_groups: A list of security group dicts.
51 networks: A list of network dicts with UUID and fixed_ip.
52 user_data: User data for instance.
53 availability_zone: Availability zone in which to launch instance.
Daryl Wallecke5b83d42011-11-10 14:39:02 -060054 accessIPv4: The IPv4 access address for the server.
55 accessIPv6: The IPv6 access address for the server.
Rohit Karajgi95446a22011-12-12 06:21:43 -080056 min_count: Count of minimum number of instances to launch.
57 max_count: Count of maximum number of instances to launch.
Daryl Wallecke36d5002012-03-28 09:56:10 -050058 disk_config: Determines if user or admin controls disk configuration.
Mauro S. M. Rodriguesc5da4f42013-03-04 23:57:10 -050059 return_reservation_id: Enable/Disable the return of reservation id
Daryl Wallecke5b83d42011-11-10 14:39:02 -060060 """
Daryl Wallecke5b83d42011-11-10 14:39:02 -060061 post_body = {
62 'name': name,
63 'imageRef': image_ref,
David Kranz28e79de2012-04-12 15:49:41 -040064 'flavorRef': flavor_ref
Daryl Wallecke5b83d42011-11-10 14:39:02 -060065 }
66
chris fattarsia6c2a732012-05-02 17:00:19 -070067 for option in ['personality', 'adminPass', 'key_name',
Zhongyue Luoe0884a32012-09-25 17:24:17 +080068 'security_groups', 'networks', 'user_data',
69 'availability_zone', 'accessIPv4', 'accessIPv6',
70 'min_count', 'max_count', ('metadata', 'meta'),
Mauro S. M. Rodriguesc5da4f42013-03-04 23:57:10 -050071 ('OS-DCF:diskConfig', 'disk_config'),
72 'return_reservation_id']:
David Kranz28e79de2012-04-12 15:49:41 -040073 if isinstance(option, tuple):
74 post_param = option[0]
75 key = option[1]
76 else:
77 post_param = option
78 key = option
79 value = kwargs.get(key)
Zhongyue Luoe471d6e2012-09-17 17:02:43 +080080 if value is not None:
David Kranz28e79de2012-04-12 15:49:41 -040081 post_body[post_param] = value
raiesmh08cbe21b02014-03-12 17:04:44 +053082 post_body = {'server': post_body}
83
84 if 'sched_hints' in kwargs:
85 hints = {'os:scheduler_hints': kwargs.get('sched_hints')}
86 post_body = dict(post_body.items() + hints.items())
87 post_body = json.dumps(post_body)
vponomaryovf4c27f92014-02-18 10:56:42 +020088 resp, body = self.post('servers', post_body)
Jay Pipes5135bfc2012-01-05 15:46:49 -050089
Daryl Wallecke5b83d42011-11-10 14:39:02 -060090 body = json.loads(body)
Mauro S. M. Rodriguesc5da4f42013-03-04 23:57:10 -050091 # NOTE(maurosr): this deals with the case of multiple server create
92 # with return reservation id set True
93 if 'reservation_id' in body:
94 return resp, body
Ken'ichi Ohmichi02604582014-03-14 16:23:41 +090095 self.validate_response(schema.create_server, resp, body)
Daryl Wallecke5b83d42011-11-10 14:39:02 -060096 return resp, body['server']
97
98 def update_server(self, server_id, name=None, meta=None, accessIPv4=None,
ivan-zhu72d7d5b2013-10-16 17:30:58 +080099 accessIPv6=None, disk_config=None):
Daryl Wallecke5b83d42011-11-10 14:39:02 -0600100 """
101 Updates the properties of an existing server.
102 server_id: The id of an existing server.
103 name: The name of the server.
104 personality: A list of files to be injected into the server.
105 accessIPv4: The IPv4 access address for the server.
106 accessIPv6: The IPv6 access address for the server.
107 """
108
109 post_body = {}
110
Zhongyue Luoe471d6e2012-09-17 17:02:43 +0800111 if meta is not None:
Daryl Wallecke5b83d42011-11-10 14:39:02 -0600112 post_body['metadata'] = meta
113
Zhongyue Luoe471d6e2012-09-17 17:02:43 +0800114 if name is not None:
Daryl Wallecke5b83d42011-11-10 14:39:02 -0600115 post_body['name'] = name
116
Zhongyue Luoe471d6e2012-09-17 17:02:43 +0800117 if accessIPv4 is not None:
Daryl Wallecke5b83d42011-11-10 14:39:02 -0600118 post_body['accessIPv4'] = accessIPv4
119
Zhongyue Luoe471d6e2012-09-17 17:02:43 +0800120 if accessIPv6 is not None:
Daryl Wallecke5b83d42011-11-10 14:39:02 -0600121 post_body['accessIPv6'] = accessIPv6
122
ivan-zhu72d7d5b2013-10-16 17:30:58 +0800123 if disk_config is not None:
124 post_body['OS-DCF:diskConfig'] = disk_config
125
Daryl Wallecke5b83d42011-11-10 14:39:02 -0600126 post_body = json.dumps({'server': post_body})
vponomaryovf4c27f92014-02-18 10:56:42 +0200127 resp, body = self.put("servers/%s" % str(server_id), post_body)
Daryl Wallecke5b83d42011-11-10 14:39:02 -0600128 body = json.loads(body)
Ken'ichi Ohmichi29cd5122014-04-28 11:04:52 +0900129 self.validate_response(schema.update_server, resp, body)
Daryl Wallecke5b83d42011-11-10 14:39:02 -0600130 return resp, body['server']
131
132 def get_server(self, server_id):
Sean Daguef237ccb2013-01-04 15:19:14 -0500133 """Returns the details of an existing server."""
chris fattarsi5098fa22012-04-17 13:27:00 -0700134 resp, body = self.get("servers/%s" % str(server_id))
Daryl Wallecke5b83d42011-11-10 14:39:02 -0600135 body = json.loads(body)
136 return resp, body['server']
137
138 def delete_server(self, server_id):
Sean Daguef237ccb2013-01-04 15:19:14 -0500139 """Deletes the given server."""
Ghanshyam4ac02742014-04-17 19:15:47 +0900140 resp, body = self.delete("servers/%s" % str(server_id))
141 self.validate_response(common_schema.delete_server, resp, body)
142 return resp, body
Daryl Wallecke5b83d42011-11-10 14:39:02 -0600143
144 def list_servers(self, params=None):
Sean Daguef237ccb2013-01-04 15:19:14 -0500145 """Lists all servers for a user."""
Daryl Wallecke5b83d42011-11-10 14:39:02 -0600146
147 url = 'servers'
Matthew Treinish26dd0fa2012-12-04 17:14:37 -0500148 if params:
149 url += '?%s' % urllib.urlencode(params)
Daryl Wallecke5b83d42011-11-10 14:39:02 -0600150
chris fattarsi5098fa22012-04-17 13:27:00 -0700151 resp, body = self.get(url)
Daryl Wallecke5b83d42011-11-10 14:39:02 -0600152 body = json.loads(body)
153 return resp, body
154
155 def list_servers_with_detail(self, params=None):
Sean Daguef237ccb2013-01-04 15:19:14 -0500156 """Lists all servers in detail for a user."""
Daryl Wallecke5b83d42011-11-10 14:39:02 -0600157
158 url = 'servers/detail'
Matthew Treinish26dd0fa2012-12-04 17:14:37 -0500159 if params:
160 url += '?%s' % urllib.urlencode(params)
Daryl Wallecke5b83d42011-11-10 14:39:02 -0600161
chris fattarsi5098fa22012-04-17 13:27:00 -0700162 resp, body = self.get(url)
Daryl Wallecke5b83d42011-11-10 14:39:02 -0600163 body = json.loads(body)
164 return resp, body
165
Zhi Kun Liue5401762013-09-11 20:45:48 +0800166 def wait_for_server_status(self, server_id, status, extra_timeout=0,
167 raise_on_error=True):
Sean Daguef237ccb2013-01-04 15:19:14 -0500168 """Waits for a server to reach a given status."""
Ken'ichi Ohmichi39437e22013-10-06 00:21:38 +0900169 return waiters.wait_for_server_status(self, server_id, status,
Zhi Kun Liue5401762013-09-11 20:45:48 +0800170 extra_timeout=extra_timeout,
171 raise_on_error=raise_on_error)
Daryl Wallecke5b83d42011-11-10 14:39:02 -0600172
Jay Pipes051075a2012-04-28 17:39:37 -0400173 def wait_for_server_termination(self, server_id, ignore_error=False):
Sean Daguef237ccb2013-01-04 15:19:14 -0500174 """Waits for server to reach termination."""
Rohit Karajgi4a64d232012-05-17 07:44:37 -0700175 start_time = int(time.time())
176 while True:
177 try:
178 resp, body = self.get_server(server_id)
179 except exceptions.NotFound:
180 return
181
182 server_status = body['status']
Jay Pipes051075a2012-04-28 17:39:37 -0400183 if server_status == 'ERROR' and not ignore_error:
Jay Pipes444c3e62012-10-04 19:26:35 -0400184 raise exceptions.BuildErrorException(server_id=server_id)
Rohit Karajgi4a64d232012-05-17 07:44:37 -0700185
186 if int(time.time()) - start_time >= self.build_timeout:
187 raise exceptions.TimeoutException
188
189 time.sleep(self.build_interval)
190
Daryl Wallecke5b83d42011-11-10 14:39:02 -0600191 def list_addresses(self, server_id):
Sean Daguef237ccb2013-01-04 15:19:14 -0500192 """Lists all addresses for a server."""
chris fattarsi5098fa22012-04-17 13:27:00 -0700193 resp, body = self.get("servers/%s/ips" % str(server_id))
Daryl Wallecke5b83d42011-11-10 14:39:02 -0600194 body = json.loads(body)
195 return resp, body['addresses']
196
197 def list_addresses_by_network(self, server_id, network_id):
Sean Daguef237ccb2013-01-04 15:19:14 -0500198 """Lists all addresses of a specific network type for a server."""
chris fattarsi5098fa22012-04-17 13:27:00 -0700199 resp, body = self.get("servers/%s/ips/%s" %
Zhongyue Luoe0884a32012-09-25 17:24:17 +0800200 (str(server_id), network_id))
Daryl Wallecke5b83d42011-11-10 14:39:02 -0600201 body = json.loads(body)
202 return resp, body
203
Ghanshyamd6d30402014-04-02 15:28:37 +0900204 def action(self, server_id, action_name, response_key,
205 schema=None, **kwargs):
Attila Fazekasd4299282013-02-22 13:25:23 +0100206 post_body = json.dumps({action_name: kwargs})
207 resp, body = self.post('servers/%s/action' % str(server_id),
vponomaryovf4c27f92014-02-18 10:56:42 +0200208 post_body)
Attila Fazekasd4299282013-02-22 13:25:23 +0100209 if response_key is not None:
Ghanshyamd6d30402014-04-02 15:28:37 +0900210 body = json.loads(body)
211 # Check for Schema as 'None' because if we donot have any server
212 # action schema implemented yet then they can pass 'None' to skip
213 # the validation.Once all server action has their schema
214 # implemented then, this check can be removed if every actions are
215 # supposed to validate their response.
216 if schema is not None:
217 self.validate_response(schema, resp, body)
218 body = body[response_key]
Attila Fazekasd4299282013-02-22 13:25:23 +0100219 return resp, body
Daryl Wallecke5b83d42011-11-10 14:39:02 -0600220
ivan-zhuccc89462013-10-31 16:53:12 +0800221 def create_backup(self, server_id, backup_type, rotation, name):
222 """Backup a server instance."""
223 return self.action(server_id, "createBackup", None,
224 backup_type=backup_type,
225 rotation=rotation,
226 name=name)
227
Attila Fazekasd4299282013-02-22 13:25:23 +0100228 def change_password(self, server_id, adminPass):
229 """Changes the root password for the server."""
230 return self.action(server_id, 'changePassword', None,
231 adminPass=adminPass)
Daryl Wallecke5b83d42011-11-10 14:39:02 -0600232
ivan-zhu6de5b042013-10-24 17:21:48 +0800233 def get_password(self, server_id):
234 resp, body = self.get("servers/%s/os-server-password" %
235 str(server_id))
236 body = json.loads(body)
Ghanshyam7fa397c2014-04-01 19:32:38 +0900237 self.validate_response(common_schema.get_password, resp, body)
ivan-zhu6de5b042013-10-24 17:21:48 +0800238 return resp, body
239
240 def delete_password(self, server_id):
241 """
242 Removes the encrypted server password from the metadata server
243 Note that this does not actually change the instance server
244 password.
245 """
246 return self.delete("servers/%s/os-server-password" %
247 str(server_id))
248
Daryl Wallecke5b83d42011-11-10 14:39:02 -0600249 def reboot(self, server_id, reboot_type):
Sean Daguef237ccb2013-01-04 15:19:14 -0500250 """Reboots a server."""
Attila Fazekasd4299282013-02-22 13:25:23 +0100251 return self.action(server_id, 'reboot', None, type=reboot_type)
Daryl Wallecke5b83d42011-11-10 14:39:02 -0600252
Attila Fazekasd4299282013-02-22 13:25:23 +0100253 def rebuild(self, server_id, image_ref, **kwargs):
Sean Daguef237ccb2013-01-04 15:19:14 -0500254 """Rebuilds a server with a new image."""
Attila Fazekasd4299282013-02-22 13:25:23 +0100255 kwargs['imageRef'] = image_ref
256 if 'disk_config' in kwargs:
257 kwargs['OS-DCF:diskConfig'] = kwargs['disk_config']
258 del kwargs['disk_config']
259 return self.action(server_id, 'rebuild', 'server', **kwargs)
Daryl Wallecke5b83d42011-11-10 14:39:02 -0600260
Attila Fazekasd4299282013-02-22 13:25:23 +0100261 def resize(self, server_id, flavor_ref, **kwargs):
Daryl Wallecke5b83d42011-11-10 14:39:02 -0600262 """Changes the flavor of a server."""
Attila Fazekasd4299282013-02-22 13:25:23 +0100263 kwargs['flavorRef'] = flavor_ref
264 if 'disk_config' in kwargs:
265 kwargs['OS-DCF:diskConfig'] = kwargs['disk_config']
266 del kwargs['disk_config']
267 return self.action(server_id, 'resize', None, **kwargs)
Daryl Wallecke5b83d42011-11-10 14:39:02 -0600268
Attila Fazekasd4299282013-02-22 13:25:23 +0100269 def confirm_resize(self, server_id, **kwargs):
Sean Daguef237ccb2013-01-04 15:19:14 -0500270 """Confirms the flavor change for a server."""
Attila Fazekasd4299282013-02-22 13:25:23 +0100271 return self.action(server_id, 'confirmResize', None, **kwargs)
Daryl Wallecke5b83d42011-11-10 14:39:02 -0600272
Attila Fazekasd4299282013-02-22 13:25:23 +0100273 def revert_resize(self, server_id, **kwargs):
Sean Daguef237ccb2013-01-04 15:19:14 -0500274 """Reverts a server back to its original flavor."""
Attila Fazekasd4299282013-02-22 13:25:23 +0100275 return self.action(server_id, 'revertResize', None, **kwargs)
Daryl Wallecke5b83d42011-11-10 14:39:02 -0600276
Daryl Walleck73a9e7a2011-11-15 17:43:31 -0600277 def list_server_metadata(self, server_id):
chris fattarsi5098fa22012-04-17 13:27:00 -0700278 resp, body = self.get("servers/%s/metadata" % str(server_id))
Daryl Walleck73a9e7a2011-11-15 17:43:31 -0600279 body = json.loads(body)
Ghanshyama8f66532014-04-23 17:18:14 +0900280 self.validate_response(common_schema.list_server_metadata, resp, body)
Daryl Walleck73a9e7a2011-11-15 17:43:31 -0600281 return resp, body['metadata']
282
Chris Yeohd0b52e72013-09-17 22:38:59 +0930283 def set_server_metadata(self, server_id, meta, no_metadata_field=False):
284 if no_metadata_field:
285 post_body = ""
286 else:
287 post_body = json.dumps({'metadata': meta})
Zhongyue Luoe0884a32012-09-25 17:24:17 +0800288 resp, body = self.put('servers/%s/metadata' % str(server_id),
vponomaryovf4c27f92014-02-18 10:56:42 +0200289 post_body)
Daryl Walleck73a9e7a2011-11-15 17:43:31 -0600290 body = json.loads(body)
Haiwei Xu3d2b7af2014-04-12 02:50:26 +0900291 self.validate_response(common_schema.set_server_metadata, resp, body)
Daryl Walleck73a9e7a2011-11-15 17:43:31 -0600292 return resp, body['metadata']
293
294 def update_server_metadata(self, server_id, meta):
295 post_body = json.dumps({'metadata': meta})
Zhongyue Luoe0884a32012-09-25 17:24:17 +0800296 resp, body = self.post('servers/%s/metadata' % str(server_id),
vponomaryovf4c27f92014-02-18 10:56:42 +0200297 post_body)
Daryl Walleck73a9e7a2011-11-15 17:43:31 -0600298 body = json.loads(body)
299 return resp, body['metadata']
300
301 def get_server_metadata_item(self, server_id, key):
Zhongyue Luoe0884a32012-09-25 17:24:17 +0800302 resp, body = self.get("servers/%s/metadata/%s" % (str(server_id), key))
Daryl Walleck73a9e7a2011-11-15 17:43:31 -0600303 body = json.loads(body)
Ghanshyameaaa6a42014-04-25 18:38:21 +0900304 self.validate_response(schema.set_get_server_metadata_item,
305 resp, body)
Daryl Walleck73a9e7a2011-11-15 17:43:31 -0600306 return resp, body['meta']
307
308 def set_server_metadata_item(self, server_id, key, meta):
309 post_body = json.dumps({'meta': meta})
Zhongyue Luoe0884a32012-09-25 17:24:17 +0800310 resp, body = self.put('servers/%s/metadata/%s' % (str(server_id), key),
vponomaryovf4c27f92014-02-18 10:56:42 +0200311 post_body)
Daryl Walleck73a9e7a2011-11-15 17:43:31 -0600312 body = json.loads(body)
Ghanshyameaaa6a42014-04-25 18:38:21 +0900313 self.validate_response(schema.set_get_server_metadata_item,
314 resp, body)
Daryl Walleck73a9e7a2011-11-15 17:43:31 -0600315 return resp, body['meta']
316
317 def delete_server_metadata_item(self, server_id, key):
chris fattarsi5098fa22012-04-17 13:27:00 -0700318 resp, body = self.delete("servers/%s/metadata/%s" %
Zhongyue Luoe0884a32012-09-25 17:24:17 +0800319 (str(server_id), key))
Ghanshyameaaa6a42014-04-25 18:38:21 +0900320 self.validate_response(common_schema.delete_server_metadata_item,
321 resp, body)
Daryl Walleck73a9e7a2011-11-15 17:43:31 -0600322 return resp, body
Dan Smithc18d8c62012-07-02 08:09:26 -0700323
Attila Fazekasd4299282013-02-22 13:25:23 +0100324 def stop(self, server_id, **kwargs):
325 return self.action(server_id, 'os-stop', None, **kwargs)
Dan Smithc18d8c62012-07-02 08:09:26 -0700326
Attila Fazekasd4299282013-02-22 13:25:23 +0100327 def start(self, server_id, **kwargs):
328 return self.action(server_id, 'os-start', None, **kwargs)
Dan Smithc18d8c62012-07-02 08:09:26 -0700329
330 def attach_volume(self, server_id, volume_id, device='/dev/vdz'):
Sean Daguef237ccb2013-01-04 15:19:14 -0500331 """Attaches a volume to a server instance."""
Zhongyue Luo30a563f2012-09-30 23:43:50 +0900332 post_body = json.dumps({
333 'volumeAttachment': {
334 'volumeId': volume_id,
335 'device': device,
336 }
337 })
Dan Smithc18d8c62012-07-02 08:09:26 -0700338 resp, body = self.post('servers/%s/os-volume_attachments' % server_id,
vponomaryovf4c27f92014-02-18 10:56:42 +0200339 post_body)
Ghanshyam385c4e72014-03-27 11:42:25 +0900340 body = json.loads(body)
341 self.validate_response(schema.attach_volume, resp, body)
Dan Smithc18d8c62012-07-02 08:09:26 -0700342 return resp, body
343
344 def detach_volume(self, server_id, volume_id):
Sean Daguef237ccb2013-01-04 15:19:14 -0500345 """Detaches a volume from a server instance."""
Dan Smithc18d8c62012-07-02 08:09:26 -0700346 resp, body = self.delete('servers/%s/os-volume_attachments/%s' %
347 (server_id, volume_id))
Ghanshyam385c4e72014-03-27 11:42:25 +0900348 self.validate_response(schema.detach_volume, resp, body)
Dan Smithc18d8c62012-07-02 08:09:26 -0700349 return resp, body
sapan-kona775cf632012-06-22 00:32:36 +0530350
Attila Fazekasd4299282013-02-22 13:25:23 +0100351 def add_security_group(self, server_id, name):
Sean Daguef237ccb2013-01-04 15:19:14 -0500352 """Adds a security group to the server."""
Attila Fazekasd4299282013-02-22 13:25:23 +0100353 return self.action(server_id, 'addSecurityGroup', None, name=name)
sapan-kona775cf632012-06-22 00:32:36 +0530354
Attila Fazekasd4299282013-02-22 13:25:23 +0100355 def remove_security_group(self, server_id, name):
Sean Daguef237ccb2013-01-04 15:19:14 -0500356 """Removes a security group from the server."""
Attila Fazekasd4299282013-02-22 13:25:23 +0100357 return self.action(server_id, 'removeSecurityGroup', None, name=name)
Mate Lakat99ee9142012-09-14 12:34:46 +0100358
359 def live_migrate_server(self, server_id, dest_host, use_block_migration):
Sean Daguef237ccb2013-01-04 15:19:14 -0500360 """This should be called with administrator privileges ."""
Mate Lakat99ee9142012-09-14 12:34:46 +0100361
362 migrate_params = {
363 "disk_over_commit": False,
364 "block_migration": use_block_migration,
365 "host": dest_host
366 }
367
368 req_body = json.dumps({'os-migrateLive': migrate_params})
369
vponomaryovf4c27f92014-02-18 10:56:42 +0200370 resp, body = self.post("servers/%s/action" % str(server_id), req_body)
Mate Lakat99ee9142012-09-14 12:34:46 +0100371 return resp, body
Daryl Walleck3d3f6102012-11-09 15:16:42 -0600372
Attila Fazekasd4299282013-02-22 13:25:23 +0100373 def migrate_server(self, server_id, **kwargs):
Sean Daguef237ccb2013-01-04 15:19:14 -0500374 """Migrates a server to a new host."""
Attila Fazekasd4299282013-02-22 13:25:23 +0100375 return self.action(server_id, 'migrate', None, **kwargs)
Daryl Walleck3d3f6102012-11-09 15:16:42 -0600376
Attila Fazekasd4299282013-02-22 13:25:23 +0100377 def lock_server(self, server_id, **kwargs):
Sean Daguef237ccb2013-01-04 15:19:14 -0500378 """Locks the given server."""
Attila Fazekasd4299282013-02-22 13:25:23 +0100379 return self.action(server_id, 'lock', None, **kwargs)
Daryl Walleck3d3f6102012-11-09 15:16:42 -0600380
Attila Fazekasd4299282013-02-22 13:25:23 +0100381 def unlock_server(self, server_id, **kwargs):
Sean Daguef237ccb2013-01-04 15:19:14 -0500382 """UNlocks the given server."""
Attila Fazekasd4299282013-02-22 13:25:23 +0100383 return self.action(server_id, 'unlock', None, **kwargs)
Daryl Walleck3d3f6102012-11-09 15:16:42 -0600384
Attila Fazekasd4299282013-02-22 13:25:23 +0100385 def suspend_server(self, server_id, **kwargs):
Ken'ichi Ohmichi39437e22013-10-06 00:21:38 +0900386 """Suspends the provided server."""
Attila Fazekasd4299282013-02-22 13:25:23 +0100387 return self.action(server_id, 'suspend', None, **kwargs)
Daryl Walleck3d3f6102012-11-09 15:16:42 -0600388
Attila Fazekasd4299282013-02-22 13:25:23 +0100389 def resume_server(self, server_id, **kwargs):
Ken'ichi Ohmichi39437e22013-10-06 00:21:38 +0900390 """Un-suspends the provided server."""
Attila Fazekasd4299282013-02-22 13:25:23 +0100391 return self.action(server_id, 'resume', None, **kwargs)
Daryl Walleck3d3f6102012-11-09 15:16:42 -0600392
Attila Fazekasd4299282013-02-22 13:25:23 +0100393 def pause_server(self, server_id, **kwargs):
Ken'ichi Ohmichi39437e22013-10-06 00:21:38 +0900394 """Pauses the provided server."""
Attila Fazekasd4299282013-02-22 13:25:23 +0100395 return self.action(server_id, 'pause', None, **kwargs)
Daryl Walleck3d3f6102012-11-09 15:16:42 -0600396
Attila Fazekasd4299282013-02-22 13:25:23 +0100397 def unpause_server(self, server_id, **kwargs):
Ken'ichi Ohmichi39437e22013-10-06 00:21:38 +0900398 """Un-pauses the provided server."""
Attila Fazekasd4299282013-02-22 13:25:23 +0100399 return self.action(server_id, 'unpause', None, **kwargs)
Daryl Walleck3d3f6102012-11-09 15:16:42 -0600400
Attila Fazekasd4299282013-02-22 13:25:23 +0100401 def reset_state(self, server_id, state='error'):
Sean Daguef237ccb2013-01-04 15:19:14 -0500402 """Resets the state of a server to active/error."""
Attila Fazekasd4299282013-02-22 13:25:23 +0100403 return self.action(server_id, 'os-resetState', None, state=state)
Attila Fazekase4cb04c2013-01-29 09:51:58 +0100404
Ken'ichi Ohmichi39437e22013-10-06 00:21:38 +0900405 def shelve_server(self, server_id, **kwargs):
406 """Shelves the provided server."""
407 return self.action(server_id, 'shelve', None, **kwargs)
408
409 def unshelve_server(self, server_id, **kwargs):
410 """Un-shelves the provided server."""
411 return self.action(server_id, 'unshelve', None, **kwargs)
412
Ken'ichi Ohmichi17b7f112014-02-20 06:33:49 +0900413 def shelve_offload_server(self, server_id, **kwargs):
414 """Shelve-offload the provided server."""
415 return self.action(server_id, 'shelveOffload', None, **kwargs)
416
Attila Fazekase4cb04c2013-01-29 09:51:58 +0100417 def get_console_output(self, server_id, length):
Attila Fazekasd4299282013-02-22 13:25:23 +0100418 return self.action(server_id, 'os-getConsoleOutput', 'output',
419 length=length)
Rami Vaknin76bc8bd2013-02-17 16:18:27 +0200420
421 def list_virtual_interfaces(self, server_id):
422 """
423 List the virtual interfaces used in an instance.
424 """
425 resp, body = self.get('/'.join(['servers', server_id,
426 'os-virtual-interfaces']))
Ghanshyam08ce58d2014-04-04 14:51:14 +0900427 body = json.loads(body)
428 self.validate_response(schema.list_virtual_interfaces, resp, body)
429 return resp, body
nithya-ganesane6a36c82013-02-15 14:38:27 +0000430
Yuiko Takada7835d502014-01-15 10:15:03 +0000431 def rescue_server(self, server_id, **kwargs):
nithya-ganesane6a36c82013-02-15 14:38:27 +0000432 """Rescue the provided server."""
Yuiko Takada7835d502014-01-15 10:15:03 +0000433 return self.action(server_id, 'rescue', None, **kwargs)
nithya-ganesane6a36c82013-02-15 14:38:27 +0000434
435 def unrescue_server(self, server_id):
436 """Unrescue the provided server."""
437 return self.action(server_id, 'unrescue', None)
Leo Toyodafaca6ff2013-04-22 16:52:53 +0900438
Zhu Zhuda070852013-09-25 08:07:57 -0500439 def get_server_diagnostics(self, server_id):
440 """Get the usage data for a server."""
441 resp, body = self.get("servers/%s/diagnostics" % str(server_id))
442 return resp, json.loads(body)
443
Leo Toyodafaca6ff2013-04-22 16:52:53 +0900444 def list_instance_actions(self, server_id):
445 """List the provided server action."""
446 resp, body = self.get("servers/%s/os-instance-actions" %
447 str(server_id))
448 body = json.loads(body)
449 return resp, body['instanceActions']
450
451 def get_instance_action(self, server_id, request_id):
452 """Returns the action details of the provided server."""
453 resp, body = self.get("servers/%s/os-instance-actions/%s" %
454 (str(server_id), str(request_id)))
455 body = json.loads(body)
456 return resp, body['instanceAction']
Lingxian Kongaecc1092013-10-03 16:18:46 +0800457
458 def force_delete_server(self, server_id, **kwargs):
459 """Force delete a server."""
460 return self.action(server_id, 'forceDelete', None, **kwargs)
461
462 def restore_soft_deleted_server(self, server_id, **kwargs):
463 """Restore a soft-deleted server."""
464 return self.action(server_id, 'restore', None, **kwargs)
Ghanshyam Mann79f4a092014-02-27 21:01:31 +0900465
466 def reset_network(self, server_id, **kwargs):
467 """Resets the Network of a server"""
468 return self.action(server_id, 'resetNetwork', None, **kwargs)
469
470 def inject_network_info(self, server_id, **kwargs):
471 """Inject the Network Info into server"""
472 return self.action(server_id, 'injectNetworkInfo', None, **kwargs)
Ghanshyam86d1a572014-03-05 10:19:25 +0900473
474 def get_vnc_console(self, server_id, console_type):
475 """Get URL of VNC console."""
476 return self.action(server_id, "os-getVNCConsole",
Ghanshyamd6d30402014-04-02 15:28:37 +0900477 "console", common_schema.get_vnc_console,
478 type=console_type)