All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.microsoft.azure.kusto.ingest.result.OperationStatus Maven / Gradle / Ivy

There is a newer version: 6.0.0
Show newest version
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.

package com.microsoft.azure.kusto.ingest.result;

/// 
/// An enum representing the state of a data ingestion operation into Kusto
/// 
public enum OperationStatus {
    /// 
    /// Represents a temporary status.
    /// Might change during the course of ingestion based on the
    /// outcome of the data ingestion operation into Kusto.
    /// 
    Pending,
    /// 
    /// Represents a permanent status.
    /// The data has been successfully ingested to Kusto.
    /// 
    Succeeded,
    /// 
    /// Represents a permanent status.
    /// The data has not been ingested to Kusto.
    /// 
    Failed,
    /// 
    /// Represents a permanent status.
    /// The data has been queued for ingestion.
    /// (This does not indicate the ingestion was successful)
    /// 
    Queued,
    /// 
    /// Represents a permanent status.
    /// No data was supplied for ingestion. The ingest operation was skipped.
    /// 
    Skipped,
    /// 
    /// Represents a permanent status.
    /// Part of the data has been successfully ingested to Kusto while some failed.
    /// 
    PartiallySucceeded
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy