X-Git-Url: https://osm.etsi.org/gitweb/?p=osm%2FNBI.git;a=blobdiff_plain;f=osm_nbi%2Fnbi.py;h=a8f891d006d225e08f349ea738f99968742dd0fe;hp=dda994657ce70761c6a79f75acd700de4cdc4c9c;hb=refs%2Fchanges%2F91%2F6091%2F4;hpb=3ace63c3639a0541c5fde92b851107fb28151a99 diff --git a/osm_nbi/nbi.py b/osm_nbi/nbi.py index dda9946..a8f891d 100644 --- a/osm_nbi/nbi.py +++ b/osm_nbi/nbi.py @@ -67,6 +67,8 @@ URL: /osm GET POST /ns_lcm_op_occs 5 5 / 5 5 5 TO BE COMPLETED 5 5 + /vnfrs O + / O /subscriptions 5 5 / 5 X /admin/v1 @@ -215,7 +217,10 @@ class Server(object): }, "ns_lcm_op_occs": {"METHODS": "GET", "": {"METHODS": "GET"}, - } + }, + "vnfrs": {"METHODS": ("GET"), + "": {"METHODS": ("GET")} + }, } }, } @@ -639,6 +644,8 @@ class Server(object): engine_item = "nsrs" if item == "ns_lcm_op_occs": engine_item = "nslcmops" + if item == "vnfrs": + engine_item = "vnfrs" if engine_item == "vims": # TODO this is for backward compatibility, it will remove in the future engine_item = "vim_accounts"