Interface TestService
-
- All Implemented Interfaces:
public interface TestService
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public interfaceTestService.WithRawResponseA view of TestService that provides access to raw HTTP responses for each method.
-
Method Summary
-
-
Method Detail
-
withRawResponse
abstract TestService.WithRawResponse withRawResponse()
Returns a view of this service that provides access to raw HTTP responses for each method.
-
withOptions
abstract TestService withOptions(Consumer<ClientOptions.Builder> modifier)
Returns a view of this service with the given option modifications applied.
The original service is not modified.
-
create
TestCreateResponse create(String projectId, TestCreateParams params)
Create a test.
-
create
TestCreateResponse create(String projectId, TestCreateParams params, RequestOptions requestOptions)
-
create
TestCreateResponse create(TestCreateParams params)
-
create
abstract TestCreateResponse create(TestCreateParams params, RequestOptions requestOptions)
-
update
TestUpdateResponse update(String projectId, TestUpdateParams params)
Update tests.
-
update
TestUpdateResponse update(String projectId, TestUpdateParams params, RequestOptions requestOptions)
-
update
TestUpdateResponse update(TestUpdateParams params)
-
update
abstract TestUpdateResponse update(TestUpdateParams params, RequestOptions requestOptions)
-
list
TestListResponse list(String projectId)
List tests under a project.
-
list
TestListResponse list(String projectId, TestListParams params, RequestOptions requestOptions)
-
list
TestListResponse list(String projectId, TestListParams params)
-
list
abstract TestListResponse list(TestListParams params, RequestOptions requestOptions)
-
list
TestListResponse list(TestListParams params)
-
list
TestListResponse list(String projectId, RequestOptions requestOptions)
-
-
-
-