List transformation schedules
- async AsyncCogniteClient.transformations.schedules.list(
- include_public: bool = True,
- limit: int | None = 25,
List all transformation schedules.
- Parameters:
include_public (bool) – Whether public transformations should be included in the results. (default true).
limit (int | None) – Limits the number of results to be returned. To retrieve all results use limit=-1, default limit is 25.
- Returns:
List of schedules
- Return type:
Example
List schedules:
>>> from cognite.client import CogniteClient, AsyncCogniteClient >>> client = CogniteClient() >>> # async_client = AsyncCogniteClient() # another option >>> schedules_list = client.transformations.schedules.list()