Class BlobSourceInfo
- java.lang.Object
-
- com.microsoft.azure.kusto.ingest.source.BlobSourceInfo
-
- All Implemented Interfaces:
SourceInfo
public class BlobSourceInfo extends Object
-
-
Constructor Summary
Constructors Constructor Description BlobSourceInfo(String blobPath)
BlobSourceInfo(String blobPath, long rawSizeInBytes)
BlobSourceInfo(String blobPath, long rawSizeInBytes, UUID sourceId)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getBlobPath()
long
getRawSizeInBytes()
UUID
getSourceId()
void
setBlobPath(String blobPath)
void
setRawSizeInBytes(long rawSizeInBytes)
void
setSourceId(UUID sourceId)
void
validate()
Checks that this SourceInfo is defined appropriately.
-
-
-
Method Detail
-
getBlobPath
public String getBlobPath()
-
setBlobPath
public void setBlobPath(String blobPath)
-
getRawSizeInBytes
public long getRawSizeInBytes()
-
setRawSizeInBytes
public void setRawSizeInBytes(long rawSizeInBytes)
-
validate
public void validate()
Description copied from interface:SourceInfo
Checks that this SourceInfo is defined appropriately.
-
getSourceId
public UUID getSourceId()
- Specified by:
getSourceId
in interfaceSourceInfo
-
setSourceId
public void setSourceId(UUID sourceId)
- Specified by:
setSourceId
in interfaceSourceInfo
-
-