Search in sources :

Example 1 with ListLogsOptions

use of com.ibm.watson.developer_cloud.assistant.v1.model.ListLogsOptions in project java-sdk by watson-developer-cloud.

the class AssistantServiceIT method testListLogs.

/**
 * Test listLogs.
 */
@Test
public void testListLogs() {
    try {
        ListLogsOptions listOptions = new ListLogsOptions.Builder().workspaceId(workspaceId).build();
        LogCollection response = service.listLogs(listOptions).execute();
        assertNotNull(response);
        assertNotNull(response.getLogs());
        assertNotNull(response.getPagination());
        // nextUrl may be null
        if (response.getPagination().getNextUrl() == null) {
            assertNull(response.getPagination().getCursor());
        } else {
            assertNotNull(response.getPagination().getCursor());
        }
    } catch (Exception ex) {
        fail(ex.getMessage());
    }
}
Also used : ListLogsOptions(com.ibm.watson.developer_cloud.assistant.v1.model.ListLogsOptions) LogCollection(com.ibm.watson.developer_cloud.assistant.v1.model.LogCollection) UnauthorizedException(com.ibm.watson.developer_cloud.service.exception.UnauthorizedException) NotFoundException(com.ibm.watson.developer_cloud.service.exception.NotFoundException) Test(org.junit.Test)

Example 2 with ListLogsOptions

use of com.ibm.watson.developer_cloud.assistant.v1.model.ListLogsOptions in project java-sdk by watson-developer-cloud.

the class Assistant method listLogs.

/**
 * List log events in a workspace.
 *
 * List the events from the log of a specific workspace. If **cursor** is not specified, this operation is limited to
 * 40 requests per 30 minutes. If **cursor** is specified, the limit is 120 requests per minute. For more information,
 * see **Rate limiting**.
 *
 * @param listLogsOptions the {@link ListLogsOptions} containing the options for the call
 * @return a {@link ServiceCall} with a response type of {@link LogCollection}
 */
public ServiceCall<LogCollection> listLogs(ListLogsOptions listLogsOptions) {
    Validator.notNull(listLogsOptions, "listLogsOptions cannot be null");
    String[] pathSegments = { "v1/workspaces", "logs" };
    String[] pathParameters = { listLogsOptions.workspaceId() };
    RequestBuilder builder = RequestBuilder.get(RequestBuilder.constructHttpUrl(getEndPoint(), pathSegments, pathParameters));
    builder.query(VERSION, versionDate);
    if (listLogsOptions.sort() != null) {
        builder.query("sort", listLogsOptions.sort());
    }
    if (listLogsOptions.filter() != null) {
        builder.query("filter", listLogsOptions.filter());
    }
    if (listLogsOptions.pageLimit() != null) {
        builder.query("page_limit", String.valueOf(listLogsOptions.pageLimit()));
    }
    if (listLogsOptions.cursor() != null) {
        builder.query("cursor", listLogsOptions.cursor());
    }
    return createServiceCall(builder.build(), ResponseConverterUtils.getObject(LogCollection.class));
}
Also used : RequestBuilder(com.ibm.watson.developer_cloud.http.RequestBuilder) LogCollection(com.ibm.watson.developer_cloud.assistant.v1.model.LogCollection)

Example 3 with ListLogsOptions

use of com.ibm.watson.developer_cloud.assistant.v1.model.ListLogsOptions in project java-sdk by watson-developer-cloud.

the class ConversationServiceIT method testListLogs.

/**
 * Test listLogs.
 */
@Test
public void testListLogs() {
    try {
        ListLogsOptions listOptions = new ListLogsOptions.Builder().workspaceId(workspaceId).build();
        LogCollection response = service.listLogs(listOptions).execute();
        assertNotNull(response);
        assertNotNull(response.getLogs());
        assertNotNull(response.getPagination());
        // nextUrl may be null
        if (response.getPagination().getNextUrl() == null) {
            assertNull(response.getPagination().getCursor());
        } else {
            assertNotNull(response.getPagination().getCursor());
        }
    } catch (Exception ex) {
        fail(ex.getMessage());
    }
}
Also used : ListLogsOptions(com.ibm.watson.developer_cloud.conversation.v1.model.ListLogsOptions) LogCollection(com.ibm.watson.developer_cloud.conversation.v1.model.LogCollection) UnauthorizedException(com.ibm.watson.developer_cloud.service.exception.UnauthorizedException) NotFoundException(com.ibm.watson.developer_cloud.service.exception.NotFoundException) Test(org.junit.Test)

Aggregations

LogCollection (com.ibm.watson.developer_cloud.assistant.v1.model.LogCollection)2 NotFoundException (com.ibm.watson.developer_cloud.service.exception.NotFoundException)2 UnauthorizedException (com.ibm.watson.developer_cloud.service.exception.UnauthorizedException)2 Test (org.junit.Test)2 ListLogsOptions (com.ibm.watson.developer_cloud.assistant.v1.model.ListLogsOptions)1 ListLogsOptions (com.ibm.watson.developer_cloud.conversation.v1.model.ListLogsOptions)1 LogCollection (com.ibm.watson.developer_cloud.conversation.v1.model.LogCollection)1 RequestBuilder (com.ibm.watson.developer_cloud.http.RequestBuilder)1