com.microsoft.azure.kusto.ingest.TransformationMethod 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;
/**
* Transformation method can be used over all formats configured with Json mapping type (Json, Orc and Parquet)
* See kusto docs
*/
public enum TransformationMethod {
/**
* Comma-separated value.
*/
None,
/**
* Property bag array to dictionary.
*/
PropertyBagArrayToDictionary,
/**
* Source location.
*/
SourceLocation,
/**
* Source line number.
*/
SourceLineNumber,
/**
* Get path element.
*/
GetPathElement,
/**
* Unknown method.
*/
UnknownMethod,
/**
* Converts UNIX epoch (seconds) to UTC datetime.
*/
DateTimeFromUnixSeconds,
/**
* Converts UNIX epoch (milliseconds) to UTC datetime.
*/
DateTimeFromUnixMilliseconds,
/**
* Converts UNIX epoch (microseconds) to UTC datetime.
*/
DateTimeFromUnixMicroseconds,
/**
* Converts UNIX epoch (nanoseconds) to UTC datetime.
*/
DateTimeFromUnixNanoseconds,
}