Iterate over transformation schedules

async AsyncCogniteClient.transformations.schedules.__call__(
chunk_size: int | None = None,
include_public: bool = True,
limit: int | None = None,
) AsyncIterator[TransformationSchedule] | AsyncIterator[TransformationScheduleList]

Iterate over transformation schedules

Parameters:
  • chunk_size (int | None) – The number of schedules to return in each chunk. Defaults to yielding one schedule a time.

  • 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. Defaults to yielding all schedules.

Yields:

TransformationSchedule | TransformationScheduleList – Yields schedules one by one if chunk_size is None, otherwise yields lists of schedules.