import { Configurer } from '../Core/index'; import { LogConfig, LogEntries, LogListRequest } from './LogsTypes'; /**Log service*/ export declare class LogsConfigurer extends Configurer { /** * Administrative API for log management. * * You can configure and list logs * */ /** * Current configuration * * Returns the current logging configuration. * */ configuration(): Promise; /** * Configures the logs * * Creates a table, with the given structure. * A table consists of a name and column definitions. You can provide as many columns as you wish. * This API never deletes columns. * */ configure(body: LogConfig): Promise; /** * List log entries * * Returns a paginated list of log entries, that were stored internally. * Will NOT return log entries other than stored through INTERNAL. * */ list(body: LogListRequest): Promise; }