Interface DatasetService.WithRawResponse
-
- All Implemented Interfaces:
public interface DatasetService.WithRawResponseA view of DatasetService that provides access to raw HTTP responses for each method.
-
-
Method Summary
-
-
Method Detail
-
create
@MustBeClosed() HttpResponseFor<Dataset> create(DatasetCreateParams params)
Returns a raw HTTP response for
post /v1/dataset, but is otherwise the same as DatasetService.create.
-
create
@MustBeClosed() abstract HttpResponseFor<Dataset> create(DatasetCreateParams params, RequestOptions requestOptions)
-
retrieve
@MustBeClosed() HttpResponseFor<Dataset> retrieve(DatasetRetrieveParams params)
Returns a raw HTTP response for
get /v1/dataset/{dataset_id}, but is otherwise the same as DatasetService.retrieve.
-
retrieve
@MustBeClosed() abstract HttpResponseFor<Dataset> retrieve(DatasetRetrieveParams params, RequestOptions requestOptions)
-
update
@MustBeClosed() HttpResponseFor<Dataset> update(DatasetUpdateParams params)
Returns a raw HTTP response for
patch /v1/dataset/{dataset_id}, but is otherwise the same as DatasetService.update.
-
update
@MustBeClosed() abstract HttpResponseFor<Dataset> update(DatasetUpdateParams params, RequestOptions requestOptions)
-
list
@MustBeClosed() HttpResponseFor<DatasetListPage> list()
Returns a raw HTTP response for
get /v1/dataset, but is otherwise the same as DatasetService.list.
-
list
@MustBeClosed() abstract HttpResponseFor<DatasetListPage> list(DatasetListParams params, RequestOptions requestOptions)
-
list
@MustBeClosed() HttpResponseFor<DatasetListPage> list(DatasetListParams params)
-
list
@MustBeClosed() HttpResponseFor<DatasetListPage> list(RequestOptions requestOptions)
-
delete
@MustBeClosed() HttpResponseFor<Dataset> delete(DatasetDeleteParams params)
Returns a raw HTTP response for
delete /v1/dataset/{dataset_id}, but is otherwise the same as DatasetService.delete.
-
delete
@MustBeClosed() abstract HttpResponseFor<Dataset> delete(DatasetDeleteParams params, RequestOptions requestOptions)
-
feedback
@MustBeClosed() HttpResponseFor<FeedbackResponseSchema> feedback(DatasetFeedbackParams params)
Returns a raw HTTP response for
post /v1/dataset/{dataset_id}/feedback, but is otherwise the same as DatasetService.feedback.
-
feedback
@MustBeClosed() abstract HttpResponseFor<FeedbackResponseSchema> feedback(DatasetFeedbackParams params, RequestOptions requestOptions)
-
fetch
@MustBeClosed() HttpResponseFor<FetchDatasetEventsResponse> fetch(DatasetFetchParams params)
Returns a raw HTTP response for
get /v1/dataset/{dataset_id}/fetch, but is otherwise the same as DatasetService.fetch.
-
fetch
@MustBeClosed() abstract HttpResponseFor<FetchDatasetEventsResponse> fetch(DatasetFetchParams params, RequestOptions requestOptions)
-
fetchPost
@MustBeClosed() HttpResponseFor<FetchDatasetEventsResponse> fetchPost(DatasetFetchPostParams params)
Returns a raw HTTP response for
post /v1/dataset/{dataset_id}/fetch, but is otherwise the same as DatasetService.fetchPost.
-
fetchPost
@MustBeClosed() abstract HttpResponseFor<FetchDatasetEventsResponse> fetchPost(DatasetFetchPostParams params, RequestOptions requestOptions)
-
insert
@MustBeClosed() HttpResponseFor<InsertEventsResponse> insert(DatasetInsertParams params)
Returns a raw HTTP response for
post /v1/dataset/{dataset_id}/insert, but is otherwise the same as DatasetService.insert.
-
insert
@MustBeClosed() abstract HttpResponseFor<InsertEventsResponse> insert(DatasetInsertParams params, RequestOptions requestOptions)
-
summarize
@MustBeClosed() HttpResponseFor<SummarizeDatasetResponse> summarize(DatasetSummarizeParams params)
Returns a raw HTTP response for
get /v1/dataset/{dataset_id}/summarize, but is otherwise the same as DatasetService.summarize.
-
summarize
@MustBeClosed() abstract HttpResponseFor<SummarizeDatasetResponse> summarize(DatasetSummarizeParams params, RequestOptions requestOptions)
-
-
-
-