diff options
Diffstat (limited to 'src/onapsdk/sdc/__init__.py')
-rw-r--r-- | src/onapsdk/sdc/__init__.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/onapsdk/sdc/__init__.py b/src/onapsdk/sdc/__init__.py index 15280d9..c96c77f 100644 --- a/src/onapsdk/sdc/__init__.py +++ b/src/onapsdk/sdc/__init__.py @@ -458,9 +458,10 @@ class SdcOnboardable(SDC, ABC): @abstractmethod def _really_submit(self) -> None: """Really submit the SDC Vf in order to enable it.""" - @staticmethod + @abstractmethod - def _action_url(base: str, + def _action_url(self, + base: str, subpath: str, version_path: str, action_type: str = None) -> str: @@ -471,6 +472,7 @@ class SdcOnboardable(SDC, ABC): NotImplementedError: this is an abstract method. """ + @classmethod @abstractmethod def _sdc_path(cls) -> None: |