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