Return types and raw payloads
Use typed dataclasses for stable fields and raw payloads for diagnosis or forward-compatible access.
Use typed dataclasses for stable fields and raw payloads for diagnosis or forward-compatible access.
Outcome: Use typed dataclasses for stable fields and raw payloads for diagnosis or forward-compatible access.
Public results include ProcessingStatus, AssetUploadResult, AttachPreview, AttachResult, CloudEntry, resource handles, and resource-specific dataclasses. Stable fields use public product terminology such as image rather than backend abbreviations.
result = project.attach(dataset_ids=["DATASET_ID"])
print(result.created_count)
print(result.already_attached_count)
print(result.data_group_ids)
print(result.raw) # diagnostic/forward-compatible payloadDo not build critical business logic against undocumented keys in raw. Prefer typed fields and pin the SDK version when a raw field is unavoidable.
Execution surface
Pinned unitlab==3.0.0 application environment on Python 3.10+.
Identity
Least-privilege API key supplied through approved configuration.
Target resolution
Stable resource IDs and an explicitly bounded target set.
Success evidence
Typed return fields, server-side state, and downstream acceptance of the result.
Authentication or authorization fails
Stop, correct the service identity or access model, rotate exposed credentials, and rerun a read-only check.
Validation or entitlement rejects the operation
Correct the input or entitlement; do not retry an unchanged request.
A request times out
Inspect remote state before repeating a mutation because the server may have accepted it.
Asynchronous processing exceeds its deadline
Preserve the Batch Queue or release ID, continue bounded monitoring, and inspect item-level failures.
Only part of a batch succeeds
Keep successful identifiers, isolate failed rows, and retry only the corrected subset.
Pin and test the production SDK version. Use stable IDs, keep secrets out of logs and command history, and record the correlation ID, target IDs, counts, final state, and redacted error details for material state changes.
Explore related Unitlab capabilities: AI training-data annotation