def update_derived_log(
    *,
    target: Union[List[int], Dict[str, str]],
    key: Optional[str] = None,
    equation: Optional[str] = None,
    referenced_logs: Optional[List[int]] = None,
    project: Optional[str] = None,
    context: Optional[str] = None,
    api_key: Optional[str] = None,
) -> None:

source code

Update the derived entries for a log.

Arguments:

  • target - The derived logs to update
  • key - New key name for the derived entries
  • equation - New equation for computing derived values
  • referenced_logs - Optional new referenced logs to use for computation.
  • project - The project to update the derived logs for
  • context - The context to update the derived logs for
  • api_key - If specified, unify API key to be used. Defaults to the value in the

Returns:

A message indicating whether the derived logs were successfully updated.