FileSyncStatistics¶
-
class
oci.generative_ai.models.FileSyncStatistics(**kwargs)¶ Bases:
objectSynchronization Statistics for a VectorStore File Sync operation or for a VectorStore Connector
Methods
__init__(**kwargs)Initializes a new FileSyncStatistics object with values from keyword arguments. Attributes
sync_stats_by_file_typeGets the sync_stats_by_file_type of this FileSyncStatistics. total_files_syncedGets the total_files_synced of this FileSyncStatistics. -
__init__(**kwargs)¶ Initializes a new FileSyncStatistics object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):
Parameters: - total_files_synced (int) – The value to assign to the total_files_synced property of this FileSyncStatistics.
- sync_stats_by_file_type (dict(str, int)) – The value to assign to the sync_stats_by_file_type property of this FileSyncStatistics.
-
sync_stats_by_file_type¶ Gets the sync_stats_by_file_type of this FileSyncStatistics. FileSync Statistics for different file types.
Returns: The sync_stats_by_file_type of this FileSyncStatistics. Return type: dict(str, int)
-
total_files_synced¶ Gets the total_files_synced of this FileSyncStatistics. The total number of files synchronized from the datasource.
Returns: The total_files_synced of this FileSyncStatistics. Return type: int
-