Interface InferencePipelineService.WithRawResponse
-
- All Implemented Interfaces:
public interface InferencePipelineService.WithRawResponseA view of InferencePipelineService that provides access to raw HTTP responses for each method.
-
-
Method Summary
-
-
Method Detail
-
withOptions
abstract InferencePipelineService.WithRawResponse withOptions(Consumer<ClientOptions.Builder> modifier)
Returns a view of this service with the given option modifications applied.
The original service is not modified.
-
create
@MustBeClosed() HttpResponseFor<InferencePipelineCreateResponse> create(String pathProjectId, InferencePipelineCreateParams params)
Returns a raw HTTP response for
post /projects/{projectId}/inference-pipelines, but is otherwise the same as InferencePipelineService.create.
-
create
@MustBeClosed() HttpResponseFor<InferencePipelineCreateResponse> create(String pathProjectId, InferencePipelineCreateParams params, RequestOptions requestOptions)
-
create
@MustBeClosed() HttpResponseFor<InferencePipelineCreateResponse> create(InferencePipelineCreateParams params)
-
create
@MustBeClosed() abstract HttpResponseFor<InferencePipelineCreateResponse> create(InferencePipelineCreateParams params, RequestOptions requestOptions)
-
list
@MustBeClosed() HttpResponseFor<InferencePipelineListResponse> list(String projectId)
Returns a raw HTTP response for
get /projects/{projectId}/inference-pipelines, but is otherwise the same as InferencePipelineService.list.
-
list
@MustBeClosed() HttpResponseFor<InferencePipelineListResponse> list(String projectId, InferencePipelineListParams params, RequestOptions requestOptions)
-
list
@MustBeClosed() HttpResponseFor<InferencePipelineListResponse> list(String projectId, InferencePipelineListParams params)
-
list
@MustBeClosed() abstract HttpResponseFor<InferencePipelineListResponse> list(InferencePipelineListParams params, RequestOptions requestOptions)
-
list
@MustBeClosed() HttpResponseFor<InferencePipelineListResponse> list(InferencePipelineListParams params)
-
list
@MustBeClosed() HttpResponseFor<InferencePipelineListResponse> list(String projectId, RequestOptions requestOptions)
-
-
-
-