diff options
Diffstat (limited to 'vio/vio/swagger/views/service/views.py')
-rw-r--r-- | vio/vio/swagger/views/service/views.py | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/vio/vio/swagger/views/service/views.py b/vio/vio/swagger/views/service/views.py new file mode 100644 index 0000000..535f2d2 --- /dev/null +++ b/vio/vio/swagger/views/service/views.py @@ -0,0 +1,44 @@ +# Copyright (c) 2017 VMware, Inc. +# +# 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. + + +from rest_framework import status +from rest_framework.response import Response +from rest_framework.views import APIView + +from vio.pub.msapi import extsys +from vio.pub.vim.vimapi.nova import OperateServers +from vio.pub.vim.vimapi.nova import OperateService + +from vio.swagger import nova_utils + + +class HostsView(APIView): + + def get(self, request, vimid, tenantid): + vim_info = extsys.get_vim_by_id(vimid) + data = {'vimid': vim_info['vimId'], + 'vimName': vim_info['name'], + 'username': vim_info['userName'], + 'password': vim_info['password'], + 'url': vim_info['url'], + 'project_name': vim_info['tenant']} + + services_op = OperateService.OperateService() + + rsp = {'vimid': vim_info['vimId'], + 'vimName': vim_info['name'], + 'tenantId': tenantid, + 'hosts': [nova_utils.service_formatter(svc) + for svc in services_op.list_services(data, tenantid)]} + + return Response(data=rsp, status=status.HTTP_200_OK) |