diff options
Diffstat (limited to 'share/newton_base/openoapi/limits.py')
-rw-r--r-- | share/newton_base/openoapi/limits.py | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/share/newton_base/openoapi/limits.py b/share/newton_base/openoapi/limits.py index 5789dfd4..fad710f3 100644 --- a/share/newton_base/openoapi/limits.py +++ b/share/newton_base/openoapi/limits.py @@ -22,6 +22,7 @@ from rest_framework.views import APIView from common.exceptions import VimDriverNewtonException from newton_base.util import VimDriverUtils +from common.msapi import extsys logger = logging.getLogger(__name__) @@ -56,6 +57,8 @@ class Limits(APIView): vim_dict = { "vimName": vim["name"], "vimId": vim["vimId"], + "cloud-owner": vim["cloud_owner"], + "cloud-region-id": vim["cloud_region_id"], "tenantId": tenantid, } content_all.update(vim_dict) @@ -91,3 +94,12 @@ class Limits(APIView): return Response(data={'error': str(e)}, status=status.HTTP_500_INTERNAL_SERVER_ERROR) + +class APIv1Limits(Limits): + + def get(self, request, cloud_owner="", cloud_region_id="", tenantid=""): + self._logger.info("%s, %s" % (cloud_owner, cloud_region_id)) + + vimid = extsys.encode_vim_id(cloud_owner, cloud_region_id) + return super(APIv1Limits, self).get(request, vimid, tenantid) + |