Retrieves a list of the user's tasks. Returns: A list of task status dictionaries, one for each task submitted to EE by the current user. These include currently running tasks as well as recently canceled or failed tasks.
()
| 1595 | |
| 1596 | @deprecation.Deprecated('Use listOperations') |
| 1597 | def getTaskList() -> list[Any]: |
| 1598 | """Retrieves a list of the user's tasks. |
| 1599 | |
| 1600 | Returns: |
| 1601 | A list of task status dictionaries, one for each task submitted to EE by |
| 1602 | the current user. These include currently running tasks as well as recently |
| 1603 | canceled or failed tasks. |
| 1604 | """ |
| 1605 | return [_cloud_api_utils.convert_operation_to_task(o) |
| 1606 | for o in listOperations()] |
| 1607 | |
| 1608 | |
| 1609 | def listOperations(project: str | None = None) -> list[Any]: |
nothing calls this directly
no test coverage detected