com.microsoft.azure.kusto.ingest.source.SourceInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kusto-ingest Show documentation
Show all versions of kusto-ingest Show documentation
Kusto client library for ingesting data
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
package com.microsoft.azure.kusto.ingest.source;
import java.util.UUID;
public interface SourceInfo {
/**
* Checks that this SourceInfo is defined appropriately.
*/
void validate();
UUID getSourceId();
void setSourceId(UUID sourceId);
}