epicsarchiver_mgmt.commands.alias ================================= .. py:module:: epicsarchiver_mgmt.commands.alias .. autoapi-nested-parse:: Add aliases to PVs in the archiver. Attributes ---------- .. autoapisummary:: epicsarchiver_mgmt.commands.alias.LOG Functions --------- .. autoapisummary:: epicsarchiver_mgmt.commands.alias.add_aliases epicsarchiver_mgmt.commands.alias.remove_aliases Module Contents --------------- .. py:data:: LOG :type: logging.Logger .. py:function:: add_aliases(archiver_fqdn: str, alias_maps: collections.abc.Sequence[tuple[str, str]]) -> None Add aliases to PVs in the archiver. :param archiver_fqdn: The url of the archiver. :type archiver_fqdn: str :param alias_maps: The PVs to add aliases. :type alias_maps: list[tuple[str, str]] :raises RequestHTTPError: If there is an error aliasing the PVs. .. py:function:: remove_aliases(archiver_fqdn: str, alias_maps: collections.abc.Sequence[tuple[str, str]]) -> None Remove aliases from PVs in the archiver. :param archiver_fqdn: The url of the archiver. :type archiver_fqdn: str :param alias_maps: The PVs to remove aliases. :type alias_maps: list[tuple[str, str]] :raises RequestHTTPError: If there is an error aliasing the PVs.