62 lines
2.1 KiB
Python
62 lines
2.1 KiB
Python
# Copyright 2011 OpenStack LLC.
|
|
# 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 novaclient import base
|
|
|
|
|
|
class QuotaSet(base.Resource):
|
|
|
|
def get(self):
|
|
self.manager.get(self)
|
|
|
|
def update(self, *args, **kwargs):
|
|
self.manager.update(self.tenant_id, *args, **kwargs)
|
|
|
|
|
|
class QuotaSetManager(base.ManagerWithFind):
|
|
resource_class = QuotaSet
|
|
|
|
def get(self, tenant_id):
|
|
if hasattr(tenant_id, 'tenant_id'):
|
|
tenant_id = tenant_id.tenant_id
|
|
return self._get("/os-quota-sets/%s" % (tenant_id), "quota_set")
|
|
|
|
def update(self, tenant_id, metadata_items=None,
|
|
injected_file_content_bytes=None, volumes=None, gigabytes=None,
|
|
ram=None, floating_ips=None, instances=None,
|
|
injected_files=None, cores=None):
|
|
|
|
body = {'quota_set': {
|
|
'tenant_id': tenant_id,
|
|
'metadata_items': metadata_items,
|
|
'injected_file_content_bytes': injected_file_content_bytes,
|
|
'volumes': volumes,
|
|
'gigabytes': gigabytes,
|
|
'ram': ram,
|
|
'floating_ips': floating_ips,
|
|
'instances': instances,
|
|
'injected_files': injected_files,
|
|
'cores': cores}}
|
|
|
|
for key in body['quota_set'].keys():
|
|
if body['quota_set'][key] == None:
|
|
body['quota_set'].pop(key)
|
|
|
|
return self._update('/os-quota-sets/%s' % (tenant_id), body)
|
|
|
|
def defaults(self, tenant_id):
|
|
return self._get('/os-quota-sets/%s/defaults' % tenant_id,
|
|
'quota_set')
|