JobLogResponse
Describes one asynchronous job log entry.
For the list of response object types, see Response Objects.
Use JobLogResponse to inspect log timestamps, status, error details, run duration, and diagnostic text for a load or index job.
Attributes
| Attribute | Type | Description |
|---|---|---|
log_date |
str or None |
Timestamp for the log entry. |
job_name |
str or None |
Name of the job associated with the log entry. |
status |
str or None |
Status reported by the log entry. |
error |
str or None |
Error code, when the job reports one. A numeric service value is normalized to text. |
additional_info |
str or None |
Additional diagnostic or status text. |
actual_start_date |
str or None |
Actual job start timestamp. |
run_duration |
str or None |
Job run duration. |
links |
list[LinkRelation] or None |
Hypermedia links returned by the service. |
Methods
| Method | Return Type | Description |
|---|---|---|
model_dump() |
dict[str, Any] |
Returns a dictionary representation of the response. |
model_dump_json() |
str |
Returns a JSON string representation of the response. |
to_dict() |
dict[str, Any] |
Returns a dictionary representation compatible with earlier SDK response handling. |
to_json() |
str |
Returns a JSON string representation compatible with earlier SDK response handling. |
to_str() |
str |
Returns a readable string representation compatible with earlier SDK response handling. |
model_validate(obj) |
JobLogResponse |
Creates a response object from a dictionary payload. |
model_validate_json(json_data) |
JobLogResponse |
Creates a response object from a JSON string. |
Iterate Attributes
Use the response serialization helper to iterate every public attribute.
response = client.get_vector_load_job_log(
load_job_name="VECTOR_LOAD_JOB_123",
)
payload = response.to_dict()
for attribute, value in payload.items():
print(attribute, value)
Sample Response
{
"log_date": "2026-07-27T07:11:36.773898Z",
"job_name": "VECDB_REBUILD_INDEX_575FD66FCCF405F1E063324946644650",
"status": "FAILED",
"error": "57703",
"additional_info": "ORA-57703: Parameter index cannot be NULL or empty.\nORA-06512: at \"SYS.DBMS_SYS_ERROR\", line 86\nORA-06512: at \"SYS.DBMS_VECTOR_DATABASE\", line 10888\nORA-06512: at \"SYS.DBMS_VECTOR_DATABASE\", line 11185\nORA-06512: at line 1\n",
"actual_start_date": "2026-07-27T07:11:36.758639Z",
"run_duration": "P0DT0H0M0S",
"links": [
{
"rel": "collection",
"href": ".../vecdb/vector-indexes/jobs/VECDB_REBUILD_INDEX_.../"
}
]
}
Returned By
Returned by: get_vector_load_job_log(), get_index_job_log().