Interface TestServiceAsync
-
- All Implemented Interfaces:
public interface TestServiceAsync
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public interfaceTestServiceAsync.WithRawResponseA view of TestServiceAsync that provides access to raw HTTP responses for each method.
-
Method Summary
-
-
Method Detail
-
withRawResponse
abstract TestServiceAsync.WithRawResponse withRawResponse()
Returns a view of this service that provides access to raw HTTP responses for each method.
-
withOptions
abstract TestServiceAsync 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<TestCreateResponse> create(String projectId, TestCreateParams params)
Create a test.
-
create
CompletableFuture<TestCreateResponse> create(String projectId, TestCreateParams params, RequestOptions requestOptions)
-
create
CompletableFuture<TestCreateResponse> create(TestCreateParams params)
-
create
abstract CompletableFuture<TestCreateResponse> create(TestCreateParams params, RequestOptions requestOptions)
-
update
CompletableFuture<TestUpdateResponse> update(String projectId, TestUpdateParams params)
Update tests.
-
update
CompletableFuture<TestUpdateResponse> update(String projectId, TestUpdateParams params, RequestOptions requestOptions)
-
update
CompletableFuture<TestUpdateResponse> update(TestUpdateParams params)
-
update
abstract CompletableFuture<TestUpdateResponse> update(TestUpdateParams params, RequestOptions requestOptions)
-
list
CompletableFuture<TestListResponse> list(String projectId)
List tests under a project.
-
list
CompletableFuture<TestListResponse> list(String projectId, TestListParams params, RequestOptions requestOptions)
-
list
CompletableFuture<TestListResponse> list(String projectId, TestListParams params)
-
list
abstract CompletableFuture<TestListResponse> list(TestListParams params, RequestOptions requestOptions)
-
list
CompletableFuture<TestListResponse> list(TestListParams params)
-
list
CompletableFuture<TestListResponse> list(String projectId, RequestOptions requestOptions)
-
-
-
-