diff options
Diffstat (limited to 'src/onaptests/steps/instantiate/service_ala_carte.py')
-rw-r--r-- | src/onaptests/steps/instantiate/service_ala_carte.py | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/onaptests/steps/instantiate/service_ala_carte.py b/src/onaptests/steps/instantiate/service_ala_carte.py index 47fc532..d5e5096 100644 --- a/src/onaptests/steps/instantiate/service_ala_carte.py +++ b/src/onaptests/steps/instantiate/service_ala_carte.py @@ -31,6 +31,16 @@ class ServiceAlaCarteInstantiateStep(BaseStep): self.add_step(ServiceOnboardStep(cleanup)) self.add_step(ConnectServiceSubToCloudRegionStep(cleanup)) + @property + def description(self) -> str: + """Step description.""" + return "Instantiate service using SO a'la carte method." + + @property + def component(self) -> str: + """Component name.""" + return "SO" + @BaseStep.store_state def execute(self): """Instantiate service. @@ -93,6 +103,16 @@ class YamlTemplateServiceAlaCarteInstantiateStep(YamlTemplateBaseStep): self.add_step(ConnectServiceSubToCloudRegionStep(cleanup)) @property + def description(self) -> str: + """Step description.""" + return "Instantiate service described in YAML using SO a'la carte method." + + @property + def component(self) -> str: + """Component name.""" + return "SO" + + @property def yaml_template(self) -> dict: """Step YAML template. |