Interface TestServiceAsync.WithRawResponse
-
- All Implemented Interfaces:
public interface TestServiceAsync.WithRawResponseA view of TestServiceAsync that provides access to raw HTTP responses for each method.
-
-
Method Summary
-
-
Method Detail
-
withOptions
abstract TestServiceAsync.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
CompletableFuture<HttpResponseFor<TestCreateResponse>> create(String projectId, TestCreateParams params)
Returns a raw HTTP response for
post /projects/{projectId}/tests, but is otherwise the same as TestServiceAsync.create.
-
create
CompletableFuture<HttpResponseFor<TestCreateResponse>> create(String projectId, TestCreateParams params, RequestOptions requestOptions)
-
create
CompletableFuture<HttpResponseFor<TestCreateResponse>> create(TestCreateParams params)
-
create
abstract CompletableFuture<HttpResponseFor<TestCreateResponse>> create(TestCreateParams params, RequestOptions requestOptions)
-
update
CompletableFuture<HttpResponseFor<TestUpdateResponse>> update(String projectId, TestUpdateParams params)
Returns a raw HTTP response for
put /projects/{projectId}/tests, but is otherwise the same as TestServiceAsync.update.
-
update
CompletableFuture<HttpResponseFor<TestUpdateResponse>> update(String projectId, TestUpdateParams params, RequestOptions requestOptions)
-
update
CompletableFuture<HttpResponseFor<TestUpdateResponse>> update(TestUpdateParams params)
-
update
abstract CompletableFuture<HttpResponseFor<TestUpdateResponse>> update(TestUpdateParams params, RequestOptions requestOptions)
-
list
CompletableFuture<HttpResponseFor<TestListResponse>> list(String projectId)
Returns a raw HTTP response for
get /projects/{projectId}/tests, but is otherwise the same as TestServiceAsync.list.
-
list
CompletableFuture<HttpResponseFor<TestListResponse>> list(String projectId, TestListParams params, RequestOptions requestOptions)
-
list
CompletableFuture<HttpResponseFor<TestListResponse>> list(String projectId, TestListParams params)
-
list
abstract CompletableFuture<HttpResponseFor<TestListResponse>> list(TestListParams params, RequestOptions requestOptions)
-
list
CompletableFuture<HttpResponseFor<TestListResponse>> list(TestListParams params)
-
list
CompletableFuture<HttpResponseFor<TestListResponse>> list(String projectId, RequestOptions requestOptions)
-
-
-
-