aip_sdk.list_ingest_drops
aip_sdk.list_ingest_drops(version_id: str, *, limit: int = 200, offset: int = 0, client: APIClient | None = None) -> list[TraceDropRecord]
List the records dropped while landing traces into a dataset version.
Prefer iter_ingest_drops() to walk every drop without paging by hand.
Parameters
version_idstr: Dataset version ID the ingestion run landed into.limitint: Maximum records to return (1 toMAX_DROPS_PER_PAGE).offsetint: Number of records to skip, for pagination.clientAPIClient | None: Optional API client.
Returns
list[TraceDropRecord]: One page of drop records for the version, oldest first. A page shorter thanlist[TraceDropRecord]:limitmeans there are no further records.
Raises
InvalidArgumentError: Iflimitoroffsetis out of range.AuthError: If credentials are missing or invalid.NotFoundError: If the dataset version does not exist, or belongs to a workspace the caller is not a member of.ResponseParseError: If the platform's response does not match this SDK version.