X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;f=azure%2Fmulticloud_azure%2Fswagger%2Furls.py;fp=azure%2Fmulticloud_azure%2Fswagger%2Furls.py;h=dde553a9ac4589ca91e390e39ba41e10e4004dce;hb=9abc9c644a96e74612a995b7194c69167317a6ae;hp=a3de04a056c43ee57d5fc2ebf76e6086d11a702f;hpb=5c37beb20ca804afc810074463275d87436a65df;p=multicloud%2Fazure.git diff --git a/azure/multicloud_azure/swagger/urls.py b/azure/multicloud_azure/swagger/urls.py index a3de04a..dde553a 100644 --- a/azure/multicloud_azure/swagger/urls.py +++ b/azure/multicloud_azure/swagger/urls.py @@ -1,5 +1,4 @@ # Copyright (c) 2018 Amdocs -# Copyright (c) 2018 Amdocs # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -16,13 +15,15 @@ from rest_framework.urlpatterns import format_suffix_patterns from multicloud_azure.swagger.views.swagger_json import SwaggerJsonView - # Registry from multicloud_azure.swagger.views.registry.views import Registry from multicloud_azure.swagger.views.registry.views import UnRegistry from multicloud_azure.swagger.views.registry.views import APIv1Registry from multicloud_azure.swagger.views.registry.views import APIv1UnRegistry +from multicloud_azure.swagger.views.infra_workload.views import InfraWorkload +from multicloud_azure.swagger.views.infra_workload.views import GetStackView + urlpatterns = [ # swagger url(r'^api/multicloud-azure/v0/swagger.json$', SwaggerJsonView.as_view()), @@ -42,6 +43,15 @@ urlpatterns = [ r'/(?P[0-9a-zA-Z_-]+)$', APIv1UnRegistry.as_view()), + url(r'^api/multicloud-azure/v1/(?P[0-9a-zA-Z_-]+)' + r'/(?P[0-9a-zA-Z_-]+)/infra_workload$', + InfraWorkload.as_view()), + + url(r'^api/multicloud-azure/v1/(?P[0-9a-zA-Z_-]+)/' + r'(?P[0-9a-zA-Z_-]+)/infra_workload/' + r'(?P[0-9a-zA-Z\-\_]+)$', + GetStackView.as_view()), + ] urlpatterns = format_suffix_patterns(urlpatterns)