public interface Client
| Modifier and Type | Method and Description |
|---|---|
KustoOperationResult |
executeMgmt(String command)
Executes a management command against the default database.
|
KustoOperationResult |
executeMgmt(String database,
String command)
Executes a management command against a specified database.
|
KustoOperationResult |
executeMgmt(String database,
String command,
ClientRequestProperties properties)
Executes a management command against a specified database with additional request properties.
|
reactor.core.publisher.Mono<KustoOperationResult> |
executeMgmtAsync(String command)
Executes a management command asynchronously against the default database.
|
reactor.core.publisher.Mono<KustoOperationResult> |
executeMgmtAsync(String database,
String command)
Executes a management command asynchronously against a specified database.
|
reactor.core.publisher.Mono<KustoOperationResult> |
executeMgmtAsync(String database,
String command,
ClientRequestProperties properties)
Executes a management command asynchronously against a specified database with additional request properties.
|
KustoOperationResult |
executeQuery(String query)
Executes a query against the default database.
|
KustoOperationResult |
executeQuery(String database,
String query)
Executes a query against the specified database.
|
KustoOperationResult |
executeQuery(String database,
String query,
ClientRequestProperties properties)
Executes a query against a specified database with additional request properties.
|
reactor.core.publisher.Mono<KustoOperationResult> |
executeQueryAsync(String command)
Executes a query against the default database.
|
reactor.core.publisher.Mono<KustoOperationResult> |
executeQueryAsync(String database,
String command)
Executes a query against a specified database.
|
reactor.core.publisher.Mono<KustoOperationResult> |
executeQueryAsync(String database,
String command,
ClientRequestProperties properties)
Executes a query command asynchronously against a specified database with additional request properties.
|
String |
executeToJsonResult(String database,
String command,
ClientRequestProperties properties)
Executes a query command and returns the result as a JSON string.
|
reactor.core.publisher.Mono<String> |
executeToJsonResultAsync(String database,
String command,
ClientRequestProperties properties)
Executes a query command asynchronously and returns the result as a JSON string.
|
KustoOperationResult executeQuery(String query) throws DataServiceException, DataClientException
query - The query command to execute.KustoOperationResult.DataServiceException - If there is an error from the service.DataClientException - If there is an error on the client side.KustoOperationResult executeQuery(String database, String query) throws DataServiceException, DataClientException
database - The name of the database.query - The query to execute.KustoOperationResult with the result of the query.DataServiceException - If there is an error from the service.DataClientException - If there is an error on the client side.KustoOperationResult executeQuery(String database, String query, ClientRequestProperties properties) throws DataServiceException, DataClientException
database - The name of the database.query - The query query to execute.properties - Additional request properties.KustoOperationResult with the result of the query.DataServiceException - If there is an error from the service.DataClientException - If there is an error on the client side.reactor.core.publisher.Mono<KustoOperationResult> executeQueryAsync(String command)
command - The query to execute.KustoOperationResult emitting the result of the query.reactor.core.publisher.Mono<KustoOperationResult> executeQueryAsync(String database, String command)
database - The name of the database.command - The query command to execute.KustoOperationResult with the result of the query.reactor.core.publisher.Mono<KustoOperationResult> executeQueryAsync(String database, String command, ClientRequestProperties properties)
database - The name of the database.command - The query command to execute.properties - Additional request properties.Mono emitting the result of the query as a KustoOperationResult.KustoOperationResult executeMgmt(String command) throws DataServiceException, DataClientException
command - The management command to execute.KustoOperationResult.DataServiceException - If there is an error from the service.DataClientException - If there is an error on the client side.KustoOperationResult executeMgmt(String database, String command) throws DataServiceException, DataClientException
database - The name of the database.command - The management command to execute.KustoOperationResult.DataServiceException - If there is an error from the service.DataClientException - If there is an error on the client side.KustoOperationResult executeMgmt(String database, String command, ClientRequestProperties properties) throws DataServiceException, DataClientException
database - The name of the database.command - The management command to execute.properties - Additional request properties.KustoOperationResult.DataServiceException - If there is an error from the service.DataClientException - If there is an error on the client side.reactor.core.publisher.Mono<KustoOperationResult> executeMgmtAsync(String command)
command - The management command to execute.Mono emitting the result of the command as a KustoOperationResult.reactor.core.publisher.Mono<KustoOperationResult> executeMgmtAsync(String database, String command)
database - The name of the database.command - The management command to execute.Mono emitting the result of the command as a KustoOperationResult.reactor.core.publisher.Mono<KustoOperationResult> executeMgmtAsync(String database, String command, ClientRequestProperties properties)
database - The name of the database.command - The management command to execute.properties - Additional request properties.Mono emitting the result of the command as a KustoOperationResult.String executeToJsonResult(String database, String command, ClientRequestProperties properties) throws DataServiceException, DataClientException
database - The name of the database.command - The query command to execute.properties - Additional request properties.DataServiceException - If there is an error from the service.DataClientException - If there is an error on the client side.reactor.core.publisher.Mono<String> executeToJsonResultAsync(String database, String command, ClientRequestProperties properties)
database - The name of the database.command - The query command to execute.properties - Additional request properties.Mono emitting the result of the query as a JSON string.Copyright © 2025. All rights reserved.