Orchestrations
What it is
- A placeholder
Orchestrationsclass intended to provide orchestration-related functionality. - Currently unimplemented.
Public API
class Orchestrations@classmethod New(cls) -> Orchestrations- Intended factory/constructor method.
- Current behavior: always raises
NotImplementedError.
Configuration/Dependencies
- None.
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.