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
Modifier and Type Method Description abstract TestService.WithRawResponsewithRawResponse()Returns a view of this service that provides access to raw HTTP responses for each method. abstract TestServicewithOptions(Consumer<ClientOptions.Builder> modifier)Returns a view of this service with the given option modifications applied. TestEvaluateResponseevaluate(String testId, TestEvaluateParams params)Triggers one-off evaluation of a specific monitoring test for a custom timestamp range. TestEvaluateResponseevaluate(String testId, TestEvaluateParams params, RequestOptions requestOptions)TestEvaluateResponseevaluate(TestEvaluateParams params)abstract TestEvaluateResponseevaluate(TestEvaluateParams params, RequestOptions requestOptions)-
-
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.
-
evaluate
TestEvaluateResponse evaluate(String testId, TestEvaluateParams params)
Triggers one-off evaluation of a specific monitoring test for a custom timestamp range. This allows evaluating tests for historical data or custom time periods outside the regular evaluation window schedule. It also allows overwriting the existing test results.
-
evaluate
TestEvaluateResponse evaluate(String testId, TestEvaluateParams params, RequestOptions requestOptions)
-
evaluate
TestEvaluateResponse evaluate(TestEvaluateParams params)
-
evaluate
abstract TestEvaluateResponse evaluate(TestEvaluateParams params, RequestOptions requestOptions)
-
-
-
-