Zhenguo Niu dced15370e Replace /types with /flavors in URI
Change-Id: I50358a289c58b827283c9c4c6e068eee17063bfd
2017-04-18 11:11:40 +08:00

60 lines
1.8 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 Flavor(base.Resource):
pass
class FlavorManager(base.ManagerWithFind):
resource_class = Flavor
def create(self, name, is_public, description=None):
url = '/flavors'
data = {
'name': name,
'is_public': is_public,
'description': description,
}
return self._create(url, data=data)
def delete(self, flavor):
url = '/flavors/%s' % base.getid(flavor)
return self._delete(url)
def get(self, flavor):
url = '/flavors/%s' % base.getid(flavor)
return self._get(url)
def list(self):
url = '/flavors'
return self._list(url, response_key='flavors')
def get_extra_specs(self, flavor):
url = '/flavors/%s/extraspecs' % base.getid(flavor)
return self._get(url, return_raw=True)
def update_extra_specs(self, flavor, extra_specs):
url = '/flavors/%s/extraspecs' % base.getid(flavor)
data = extra_specs
return self._update(url, data=data, return_raw=True)
def delete_extra_specs(self, flavor, key):
url = '/flavors/%(id)s/extraspecs/%(key)s' % {
'id': base.getid(flavor), 'key': key}
return self._delete(url)