Source code for ska_sdp_config.operations.execution_block

"""
Execution Block management for SDP Configuration Database.
"""

from .entity_operations import CollectiveEntityOperations


# pylint: disable=too-few-public-methods
[docs] class ExecutionBlockOperations(CollectiveEntityOperations): """Database operations related to resource allocation management.""" PREFIX = "/eb" KEY_PARTS = {"eb_id": "[a-zA-Z0-9-_]+"}