Iterate over transformation notifications

async AsyncCogniteClient.transformations.notifications.__call__(
chunk_size: int | None = None,
transformation_id: int | None = None,
transformation_external_id: str | None = None,
destination: str | None = None,
limit: int | None = None,
) AsyncIterator[TransformationNotification] | AsyncIterator[TransformationNotificationList]

Iterate over transformation notifications

Parameters:
  • chunk_size (int | None) – Number of notifications to yield per chunk. Defaults to yielding notifications one by one.

  • transformation_id (int | None) – Filter by transformation internal numeric ID.

  • transformation_external_id (str | None) – Filter by transformation externalId.

  • destination (str | None) – Filter by notification destination.

  • limit (int | None) – Limits the number of results to be returned. Defaults to yielding all notifications.

Yields:

TransformationNotification | TransformationNotificationList – Yields notifications one by one if chunk_size is None, otherwise yields lists of notifications.