Interface JobService.WithRawResponse
-
- All Implemented Interfaces:
public interface JobService.WithRawResponseA view of JobService that provides access to raw HTTP responses for each method.
-
-
Method Summary
Modifier and Type Method Description abstract JobService.WithRawResponsewithOptions(Consumer<ClientOptions.Builder> modifier)Returns a view of this service with the given option modifications applied. HttpResponseFor<JobGetResponse>get(String jobId)Returns a raw HTTP response for get /v1/bulkJobs/{jobId}, but is otherwise the same as JobService.get.HttpResponseFor<JobGetResponse>get(String jobId, JobGetParams params, RequestOptions requestOptions)HttpResponseFor<JobGetResponse>get(String jobId, JobGetParams params)abstract HttpResponseFor<JobGetResponse>get(JobGetParams params, RequestOptions requestOptions)HttpResponseFor<JobGetResponse>get(JobGetParams params)HttpResponseFor<JobGetResponse>get(String jobId, RequestOptions requestOptions)-
-
Method Detail
-
withOptions
abstract JobService.WithRawResponse withOptions(Consumer<ClientOptions.Builder> modifier)
Returns a view of this service with the given option modifications applied.
The original service is not modified.
-
get
@MustBeClosed() HttpResponseFor<JobGetResponse> get(String jobId)
Returns a raw HTTP response for
get /v1/bulkJobs/{jobId}, but is otherwise the same as JobService.get.
-
get
@MustBeClosed() HttpResponseFor<JobGetResponse> get(String jobId, JobGetParams params, RequestOptions requestOptions)
-
get
@MustBeClosed() HttpResponseFor<JobGetResponse> get(String jobId, JobGetParams params)
-
get
@MustBeClosed() abstract HttpResponseFor<JobGetResponse> get(JobGetParams params, RequestOptions requestOptions)
-
get
@MustBeClosed() HttpResponseFor<JobGetResponse> get(JobGetParams params)
-
get
@MustBeClosed() HttpResponseFor<JobGetResponse> get(String jobId, RequestOptions requestOptions)
-
-
-
-