liusheng 693b93d77f Rename nimbleclient to moganclient
We have decided to rename nimble to mogan because of name conflict, now we
need also to rename nimbleclient to moganclient.

Change-Id: Ibf9480d73bbabf8d3e2b92f9609b22b3b713b3db
2017-01-03 17:21:50 +08:00

64 lines
2.2 KiB
Python

# Copyright 2016 Huawei, Inc. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
#
from moganclient.common import base
class Server(base.Resource):
pass
class ServerManager(base.ManagerWithFind):
resource_class = Server
def create(self, name, image_uuid, flavor_uuid, networks,
description=None, availability_zone=None, extra=None):
url = '/instances'
data = {
'name': name,
'image_uuid': image_uuid,
'instance_type_uuid': flavor_uuid,
'networks': networks
}
if availability_zone is not None:
data['availability_zone'] = availability_zone
if description is not None:
data['description'] = description
if extra is not None:
data['extra'] = extra
return self._create(url, data=data)
def delete(self, server_id):
url = '/instances/%s' % base.getid(server_id)
return self._delete(url)
def get(self, server_id):
url = '/instances/%s' % base.getid(server_id)
return self._get(url)
def list(self, detailed=False, all_projects=False):
url = '/instances/detail' if detailed else '/instances'
if all_projects:
url = '%s?%s' % (url, 'all_tenants=True')
return self._list(url, response_key='instances')
def update(self, server_id, updates):
url = '/instances/%s' % base.getid(server_id)
return self._update(url, data=updates)
def set_power_state(self, server_id, power_state):
url = '/instances/%s/states/power' % base.getid(server_id)
return self._update_all(url, data={'target': power_state})