alias_api.pick_nodes

alias_api.pick_nodes(*args, **kwargs)

Overloaded function.

  1. pick_nodes(nodes: collections.abc.Sequence[alias_api.AlDagNode]) -> int

    Pick the given dag nodes.

    param nodes

    The dag nodes to pick.

    type nodes

    List[AlDagNode]

    return

    The status code result Success - all nodes were picked successfully Failure - one or more nodes failed to pick

    rtype

    int(AlStatusCode)

  2. pick_nodes(node_names: collections.abc.Sequence[str]) -> int

    Pick the dag nodes with the given names.

    param node_names

    The names of the dag nodes to pick.

    type node_names

    List[str]

    return

    The status code result Success - all nodes were picked successfully Failure - one or more nodes failed to pick

    rtype

    int(AlStatusCode)