X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=osm_mon%2Fcore%2Fcommon_db.py;h=1e78bc8f4c383d86114c79b2857a47e362362550;hb=c5bf83e7c59366e0ca0afe94d24f71bcdc123cfc;hp=cf52d8540a30b2087ad0269b700f58f889a09566;hpb=927a5845cb804605c28fa8079aba19515b72bbf3;p=osm%2FMON.git diff --git a/osm_mon/core/common_db.py b/osm_mon/core/common_db.py index cf52d85..1e78bc8 100644 --- a/osm_mon/core/common_db.py +++ b/osm_mon/core/common_db.py @@ -144,6 +144,15 @@ class CommonDbClient: ) return vim_account + def set_vim_account(self, vim_account_id: str, update_dict: dict) -> bool: + try: + # Set vim_account resources in mongo + self.common_db.set_one('vim_accounts', {"_id": vim_account_id}, update_dict) + # self.common_db.set_one('vim_accounts', {"name": "test-vim"}, update_dict) + return True + except Exception: + return False + def get_sdncs(self): return self.common_db.get_list("sdns")