X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=osm_lcm%2Flcm_helm_conn.py;h=845a4132cc7c0b05cf811621575ea74351b11192;hb=02ae5404cf6e5fed364fdc22505c9d0f11fa5398;hp=a13824db9399685f335577cd26b31390c1a358d8;hpb=c1fe90adf8ed0d671342c617fed7184629c7003e;p=osm%2FLCM.git diff --git a/osm_lcm/lcm_helm_conn.py b/osm_lcm/lcm_helm_conn.py index a13824d..845a413 100644 --- a/osm_lcm/lcm_helm_conn.py +++ b/osm_lcm/lcm_helm_conn.py @@ -265,20 +265,11 @@ class LCMHelmConn(N2VCConnector, LcmBase): # nothing to do pass - async def install_configuration_sw(self, - ee_id: str, - artifact_path: str, - db_dict: dict, - progress_timeout: float = None, - total_timeout: float = None, - config: dict = None, - num_units: int = 1, - vca_type: str = None - ): + async def install_configuration_sw(self, *args, **kwargs): # nothing to do pass - async def add_relation(self, ee_id_1: str, ee_id_2: str, endpoint_1: str, endpoint_2: str): + async def add_relation(self, *args, **kwargs): # nothing to do pass @@ -286,12 +277,18 @@ class LCMHelmConn(N2VCConnector, LcmBase): # nothing to to pass - async def get_status(self, namespace: str, yaml_format: bool = True): + async def get_status(self, *args, **kwargs): # not used for this connector pass - async def get_ee_ssh_public__key(self, ee_id: str, db_dict: dict, progress_timeout: float = None, - total_timeout: float = None) -> str: + async def get_ee_ssh_public__key( + self, + ee_id: str, + db_dict: dict, + progress_timeout: float = None, + total_timeout: float = None, + **kwargs, + ) -> str: """ Obtains ssh-public key from ee executing GetSShKey method from the ee. @@ -327,8 +324,16 @@ class LCMHelmConn(N2VCConnector, LcmBase): self.log.error("Error obtaining ee ssh_key: {}".format(e), exc_info=True) raise N2VCException("Error obtaining ee ssh_ke: {}".format(e)) - async def exec_primitive(self, ee_id: str, primitive_name: str, params_dict: dict, db_dict: dict = None, - progress_timeout: float = None, total_timeout: float = None) -> str: + async def exec_primitive( + self, + ee_id: str, + primitive_name: str, + params_dict: dict, + db_dict: dict = None, + progress_timeout: float = None, + total_timeout: float = None, + **kwargs, + ) -> str: """ Execute a primitive in the execution environment