2013-09-20 05:09:03 +08:00
|
|
|
# Copyright (c) 2011 OpenStack Foundation
|
2013-02-15 15:53:19 -08:00
|
|
|
# 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.
|
|
|
|
|
2013-06-17 23:34:27 -07:00
|
|
|
from troveclient import base
|
|
|
|
from troveclient.common import check_for_exceptions
|
2013-02-15 15:53:19 -08:00
|
|
|
|
|
|
|
|
|
|
|
class Quotas(base.ManagerWithFind):
|
|
|
|
"""
|
|
|
|
Manage :class:`Quota` information.
|
|
|
|
"""
|
|
|
|
|
2013-04-10 10:39:09 -05:00
|
|
|
resource_class = base.Resource
|
2013-02-15 15:53:19 -08:00
|
|
|
|
|
|
|
def show(self, tenant_id):
|
|
|
|
"""Get a list of all quotas for a tenant id"""
|
|
|
|
|
|
|
|
url = "/mgmt/quotas/%s" % tenant_id
|
|
|
|
resp, body = self.api.client.get(url)
|
|
|
|
check_for_exceptions(resp, body)
|
|
|
|
if not body:
|
|
|
|
raise Exception("Call to " + url + " did not return a body.")
|
2013-04-10 10:39:09 -05:00
|
|
|
if 'quotas' not in body:
|
|
|
|
raise Exception("Missing key value 'quotas' in response body.")
|
|
|
|
return body['quotas']
|
2013-02-15 15:53:19 -08:00
|
|
|
|
2013-04-03 16:25:02 -07:00
|
|
|
def update(self, id, quotas):
|
2013-02-15 15:53:19 -08:00
|
|
|
"""
|
|
|
|
Set limits for quotas
|
|
|
|
"""
|
2013-04-03 16:25:02 -07:00
|
|
|
url = "/mgmt/quotas/%s" % id
|
|
|
|
body = {"quotas": quotas}
|
2013-02-15 15:53:19 -08:00
|
|
|
resp, body = self.api.client.put(url, body=body)
|
|
|
|
check_for_exceptions(resp, body)
|
|
|
|
if not body:
|
|
|
|
raise Exception("Call to " + url + " did not return a body.")
|
2013-04-10 10:39:09 -05:00
|
|
|
if 'quotas' not in body:
|
|
|
|
raise Exception("Missing key value 'quotas' in response body.")
|
|
|
|
return body['quotas']
|