azure-kusto-ingest
Version:
Azure Data Explorer Ingestion SDK
19 lines • 1.06 kB
TypeScript
import { KustoConnectionStringBuilder } from "azure-kusto-data";
import { StreamDescriptor } from "./descriptors.js";
import { FileDescriptor } from "./fileDescriptor.browser.js";
import { IngestionPropertiesInput } from "./ingestionProperties.js";
import { KustoIngestClientBase } from "./ingestClientBase.js";
import { IngestionResult } from "./ingestionResult.js";
export declare class KustoIngestClient extends KustoIngestClientBase {
constructor(kcsb: string | KustoConnectionStringBuilder, defaultProps?: IngestionPropertiesInput, autoCorrectEndpoint?: boolean);
/**
* Use string for Node.js and Blob in browser
*/
ingestFromFile(file: Blob | FileDescriptor, ingestionProperties?: IngestionPropertiesInput): Promise<IngestionResult>;
/**
* Use Readable for Node.js and ArrayBuffer in browser
*/
ingestFromStream(stream: ArrayBuffer | StreamDescriptor, ingestionProperties?: IngestionPropertiesInput): Promise<IngestionResult>;
}
export default KustoIngestClient;
//# sourceMappingURL=ingestClient.browser.d.ts.map