Show / Hide Table of Contents

Class DataIngestionJobStatistics

The statistics of data ingestion job.

Inheritance
object
DataIngestionJobStatistics
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.GenerativeaiagentService.Models
Assembly: OCI.DotNetSDK.Generativeaiagent.dll
Syntax
public class DataIngestionJobStatistics

Properties

DurationInSeconds

Declaration
[JsonProperty(PropertyName = "durationInSeconds")]
public int? DurationInSeconds { get; set; }
Property Value
Type Description
int?

The duration of this ingestion job.

NumberOfFailedFiles

Declaration
[JsonProperty(PropertyName = "numberOfFailedFiles")]
public int? NumberOfFailedFiles { get; set; }
Property Value
Type Description
int?

The number of files that have failed during the ingestion.

NumberOfIngestedFiles

Declaration
[JsonProperty(PropertyName = "numberOfIngestedFiles")]
public int? NumberOfIngestedFiles { get; set; }
Property Value
Type Description
int?

The number of files that have been successfully ingested during the ingestion.

In this article
Back to top