summaryrefslogtreecommitdiffstats
path: root/share
diff options
context:
space:
mode:
authorHaibin Huang <haibin.huang@intel.com>2018-11-22 08:40:06 +0000
committerHuang Haibin <haibin.huang@intel.com>2018-11-27 10:50:34 +0000
commit0e7bdfd96bca38494ed86053812b9dabd53b2a80 (patch)
tree655be44597da49b6fdeb24cbf563b2ecc0643009 /share
parent69c7fffdcc22bc47a84775a7214b0495efa04baf (diff)
Add server action for windriver APIv1
Change-Id: Iebab7cdf4b9e9190a32e3ce05aaca6fbb4901b76 Issue-ID: MULTICLOUD-414 Signed-off-by: Haibin Huang <haibin.huang@intel.com> (cherry picked from commit e6815a7940c20c14ca670e5393b296d3b3dce888)
Diffstat (limited to 'share')
-rw-r--r--share/newton_base/openoapi/server.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/share/newton_base/openoapi/server.py b/share/newton_base/openoapi/server.py
index 57f76196..5796f4f3 100644
--- a/share/newton_base/openoapi/server.py
+++ b/share/newton_base/openoapi/server.py
@@ -558,3 +558,10 @@ class ServerAction(APIView):
logger.error(traceback.format_exc())
return Response(data={'error': str(e)},
status=status.HTTP_500_INTERNAL_SERVER_ERROR)
+
+class APIv1ServerAction(ServerAction):
+ def post(self, request, cloud_owner="", cloud_region_id="", tenantid="", serverid=""):
+ self._logger.info("%s, %s" % (cloud_owner, cloud_region_id))
+
+ vimid = extsys.encode_vim_id(cloud_owner, cloud_region_id)
+ return super(APIv1ServerAction, self).post(request, vimid, tenantid, serverid)