Data Proc API, gRPC: JobService.ListLog
Returns a log for specified job.
gRPC request
rpc ListLog (ListJobLogRequest) returns (ListJobLogResponse)
ListJobLogRequest
{
"cluster_id": "string",
"job_id": "string",
"page_size": "int64",
"page_token": "string"
}
Field |
Description |
cluster_id |
string Required field. ID of the cluster that the job is being created for. |
job_id |
string ID of the job being created. |
page_size |
int64 The maximum bytes of job log per response to return. If the number of available |
page_token |
string Page token. To get the next page of results, set |
ListJobLogResponse
{
"content": "string",
"next_page_token": "string"
}
Field |
Description |
content |
string Requested part of Data Proc Job log. |
next_page_token |
string This token allows you to get the next page of results for ListLog requests, |