Add log and comment
[modeling/etsicatalog.git] / catalog / packages / views / vnf_package_artifact_views.py
index 56f3f2f..bda3561 100644 (file)
@@ -23,6 +23,7 @@ from rest_framework.views import APIView
 from catalog.packages.biz.vnf_pkg_artifacts import FetchVnfPkgArtifact
 from catalog.packages.const import TAG_VNF_PACKAGE_API
 from .common import view_safe_call_with_log
+from catalog.swagger.views import EtsiCatalogFileAutoSchema
 
 logger = logging.getLogger(__name__)
 
@@ -39,6 +40,7 @@ VALID_FILTERS = [
 class FetchVnfPkgmArtifactsView(APIView):
 
     @swagger_auto_schema(
+        auto_schema=EtsiCatalogFileAutoSchema,
         tags=[TAG_VNF_PACKAGE_API],
         responses={
             status.HTTP_200_OK: openapi.Response("Return the artifact file",
@@ -52,6 +54,13 @@ class FetchVnfPkgmArtifactsView(APIView):
     )
     @view_safe_call_with_log(logger=logger)
     def get(self, request, vnfPkgId, artifactPath):
+        """
+        Fetch artifact from vnf package
+        :param request:
+        :param vnfPkgId:
+        :param artifactPath:
+        :return:
+        """
         logger.debug("FetchVnfPkgmArtifactsView--get::> ")
 
         resp_data = FetchVnfPkgArtifact().fetch(vnfPkgId, artifactPath)