Interface LogServiceAsync
-
- All Implemented Interfaces:
public interface LogServiceAsync
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public interfaceLogServiceAsync.WithRawResponseA view of LogServiceAsync that provides access to raw HTTP responses for each method.
-
Method Summary
-
-
Method Detail
-
withRawResponse
abstract LogServiceAsync.WithRawResponse withRawResponse()
Returns a view of this service that provides access to raw HTTP responses for each method.
-
feedback
CompletableFuture<FeedbackResponseSchema> feedback(ProjectLogFeedbackParams params)
Log feedback for a set of project logs events
-
feedback
abstract CompletableFuture<FeedbackResponseSchema> feedback(ProjectLogFeedbackParams params, RequestOptions requestOptions)
-
fetch
CompletableFuture<FetchProjectLogsEventsResponse> fetch(ProjectLogFetchParams params)
Fetch the events in a project logs. Equivalent to the POST form of the same path, but with the parameters in the URL query rather than in the request body. For more complex queries, use the
POST /btqlendpoint.
-
fetch
abstract CompletableFuture<FetchProjectLogsEventsResponse> fetch(ProjectLogFetchParams params, RequestOptions requestOptions)
-
fetchPost
CompletableFuture<FetchProjectLogsEventsResponse> fetchPost(ProjectLogFetchPostParams params)
Fetch the events in a project logs. Equivalent to the GET form of the same path, but with the parameters in the request body rather than in the URL query. For more complex queries, use the
POST /btqlendpoint.
-
fetchPost
abstract CompletableFuture<FetchProjectLogsEventsResponse> fetchPost(ProjectLogFetchPostParams params, RequestOptions requestOptions)
-
insert
CompletableFuture<InsertEventsResponse> insert(ProjectLogInsertParams params)
Insert a set of events into the project logs
-
insert
abstract CompletableFuture<InsertEventsResponse> insert(ProjectLogInsertParams params, RequestOptions requestOptions)
-
-
-
-