X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=xapp_onboarder%2Fxapp_onboarder%2Fapi%2Fendpoints%2Fonboard_ep.py;h=6806bbf3b485eb8785cdbb85e7e15fc12cabc313;hb=refs%2Fchanges%2F06%2F4006%2F1;hp=d287f111c727936760709e14981ba82c4591d7cf;hpb=3b56acc14a2308e853612e22738cd44687288149;p=it%2Fdev.git diff --git a/xapp_onboarder/xapp_onboarder/api/endpoints/onboard_ep.py b/xapp_onboarder/xapp_onboarder/api/endpoints/onboard_ep.py index d287f11..6806bbf 100644 --- a/xapp_onboarder/xapp_onboarder/api/endpoints/onboard_ep.py +++ b/xapp_onboarder/xapp_onboarder/api/endpoints/onboard_ep.py @@ -45,12 +45,12 @@ class OnboardxApps(Resource): @api.expect(request_models.xapp_descriptor_post, validate=True) def post(self): """ - Onboard xApp with the xApp descriptor and its scehma included in the Json body + Onboard xApp using the xApp descriptor and schema in the request body. """ config_file = request.json.get('config-file.json') - schema_file = request.json.get('schema.json') + controls_schema_file = request.json.get('controls-schema.json') - return onboard(config_file, schema_file) + return onboard(config_file, controls_schema_file) @ns.route('/download') @@ -62,10 +62,9 @@ class OnboardxAppsDownload(Resource): @api.expect(request_models.xapp_descriptor_download_post, validate=True) def post(self): """ - Onboard xApp with xApp descriptor and schema downloading URLs + Onboard xApp after downloading the xApp descriptor and schema from the URLs. """ config_file_url = request.json.get('config-file.json_url') - schema_url = request.json.get('schema.json_url') - - return download_config_and_schema_and_onboard(config_file_url, schema_url) + controls_schema_url = request.json.get('controls-schema.json_url') + return download_config_and_schema_and_onboard(config_file_url, controls_schema_url)