minos.saga.definitions.operations module

class minos.saga.definitions.operations.SagaOperation(callback, parameters=None, **kwargs)[source]

Bases: Generic[minos.saga.definitions.operations.T]

Saga Step Operation class.

__init__(callback, parameters=None, **kwargs)[source]
classmethod from_raw(raw, **kwargs)[source]

Build a new instance from a raw representation.

Parameters
Return type

typing.Optional[minos.saga.definitions.operations.SagaOperation[~T]]

Returns

A SagaStepOperation instance if the raw argument is not None, None otherwise.

property parameterized: bool

parameterized getter.

Return type

bool

Returns

True if parameters are provided or False otherwise.

property raw: dict[str, typing.Any]

Generate a rew representation of the instance.

Return type

dict[str, typing.Any]

Returns

A dict instance.