Messages
ErrorDetail
| Field | Type | Description |
|---|---|---|
error_type | ErrorType | High-level error category. |
message | string | Human-readable error summary. |
retention_window_slots | optional ``uint64 | Optional retention window expressed in slots when applicable. |
retention_cutoff | optional ``google.protobuf.Timestamp | Optional retention cutoff timestamp when applicable. |
field_name | optional ``string | Optional name of the field associated with the error. |
Enums
ErrorType
ErrorType captures structured error categories returned by the services.| Value | Number | Description |
|---|---|---|
ERROR_TYPE_UNSPECIFIED | 0 | ERROR_TYPE_UNSPECIFIED is an unknown error condition. |
ERROR_TYPE_NOT_FOUND | 1 | ERROR_TYPE_NOT_FOUND indicates requested data does not exist. |
ERROR_TYPE_NOT_RETAINED | 2 | ERROR_TYPE_NOT_RETAINED indicates requested data was not retained under TTL. |
ERROR_TYPE_NOT_FOUND_OR_NOT_RETAINED | 3 | ERROR_TYPE_NOT_FOUND_OR_NOT_RETAINED indicates an ambiguous not found vs TTL case. |
ERROR_TYPE_INVALID_REQUEST | 4 | ERROR_TYPE_INVALID_REQUEST indicates the request failed validation. |
ERROR_TYPE_CEL_VALIDATION_FAILED | 5 | ERROR_TYPE_CEL_VALIDATION_FAILED indicates a CEL filter failed validation. |
ERROR_TYPE_INTERNAL_ERROR | 6 | ERROR_TYPE_INTERNAL_ERROR indicates an internal server error occurred. |