Orchestrations
What it is
- A placeholder class intended to represent orchestration-related functionality.
- Currently unimplemented.
Public API
class Orchestrations@classmethod New(cls) -> Orchestrations- Intended to create/return a new
Orchestrationsinstance. - Current behavior: always raises
NotImplementedError("This method is not implemented").
- Intended to create/return a new
Configuration/Dependencies
- No configuration, external dependencies, or imports.
Usage
from naas_abi_core.orchestrations.Orchestrations import Orchestrations
try:
Orchestrations.New()
except NotImplementedError as e:
print(e)
Caveats
Orchestrations.New()is not implemented and will always raiseNotImplementedError.