DataIngestionJobStatistics¶
-
class
oci.generative_ai_agent.models.
DataIngestionJobStatistics
(**kwargs)¶ Bases:
object
DataIngestionJobStatistics
The statistics of data ingestion job.
Methods
__init__
(**kwargs)Initializes a new DataIngestionJobStatistics object with values from keyword arguments. Attributes
duration_in_seconds
Gets the duration_in_seconds of this DataIngestionJobStatistics. number_of_failed_files
Gets the number_of_failed_files of this DataIngestionJobStatistics. number_of_ingested_files
Gets the number_of_ingested_files of this DataIngestionJobStatistics. -
__init__
(**kwargs)¶ Initializes a new DataIngestionJobStatistics object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):
Parameters: - number_of_failed_files (int) – The value to assign to the number_of_failed_files property of this DataIngestionJobStatistics.
- number_of_ingested_files (int) – The value to assign to the number_of_ingested_files property of this DataIngestionJobStatistics.
- duration_in_seconds (int) – The value to assign to the duration_in_seconds property of this DataIngestionJobStatistics.
-
duration_in_seconds
¶ Gets the duration_in_seconds of this DataIngestionJobStatistics. The duration of this ingestion job.
Returns: The duration_in_seconds of this DataIngestionJobStatistics. Return type: int
-
number_of_failed_files
¶ Gets the number_of_failed_files of this DataIngestionJobStatistics. The number of files that have failed during the ingestion.
Returns: The number_of_failed_files of this DataIngestionJobStatistics. Return type: int
-
number_of_ingested_files
¶ Gets the number_of_ingested_files of this DataIngestionJobStatistics. The number of files that have been successfully ingested during the ingestion.
Returns: The number_of_ingested_files of this DataIngestionJobStatistics. Return type: int
-