quickstart/src/main/java/com/microsoft/azure/kusto/quickstart/Utils.java (4 lines): - line 62: // TODO (config - optional): App ID and tenant, and App Key to authenticate with - line 87: // TODO (config - optional): Managed identity client ID if you are using a user-assigned managed identity - line 100: // TODO (config - optional): App ID and tenant, path to public certificate and path to private certificate pem file to authenticate with - line 218: // TODO (config - optional): Setting the ingestion batching policy takes up to 5 minutes to take effect. quickstart/src/main/java/com/microsoft/azure/kusto/quickstart/SampleApp.java (3 lines): - line 273: // TODO (config): - line 281: // TODO (tracing): Uncomment the following line to enable tracing. - line 407: // TODO: Change if needed. Disabled to prevent an existing batching policy from being unintentionally changed data/src/main/java/com/microsoft/azure/kusto/data/BaseClient.java (2 lines): - line 82: return httpResponse.getBodyAsInputStream() // TODO: since we want to just close on EOF should we implement EofSensorInputStream - line 136: * TODO: When we add another streaming API that returns a KustoOperationResult, we'll need to handle the 2 types of content errors this API can return: data/src/main/java/com/microsoft/azure/kusto/data/KustoResultSetTable.java (2 lines): - line 102: // TODO yischoen Use CslFormat classes to validate columnType is valid, and that its value ("JsonNode obj" below) is valid for columnType - line 131: throw KustoServiceQueryError.fromOneApiErrorArray(exceptions, exceptions.size() == 1); // TODO: this is the same logic as before, should ingest/src/main/java/com/microsoft/azure/kusto/ingest/exceptions/IngestionClientException.java (1 line): - line 8: public class IngestionClientException extends AzureException { // TODO: remove throws from internal method declarations (not from public Apis) on async ingest ingest/src/main/java/com/microsoft/azure/kusto/ingest/exceptions/IngestionServiceException.java (1 line): - line 8: public class IngestionServiceException extends AzureException { // TODO: remove throws from internal method declarations (not from public Apis) on async ingest data/src/main/java/com/microsoft/azure/kusto/data/auth/endpoints/KustoTrustedEndpoints.java (1 line): - line 78: // TODO: if this method will be used, replace the sync retrieveCloudInfoForCluster with the async one ingest/src/main/java/com/microsoft/azure/kusto/ingest/result/IngestionStatus.java (1 line): - line 147: /// In case of a failure - indicates the failure's error code. TODO: Deprecate next major version data/src/main/java/com/microsoft/azure/kusto/data/auth/KnownKeywords.java (1 line): - line 21: APPLICATION_CERTIFICATE_BLOB("Application Certificate Blob", false), // TODO - if we add a way to pass a certificate by a byte[], support this data/src/main/java/com/microsoft/azure/kusto/data/http/HttpRequestBuilder.java (1 line): - line 28: // TODO - maybe save this in a resource