Show / Hide Table of Contents

Class FileSyncStatistics

Synchronization Statistics for a VectorStore File Sync operation or for a VectorStore Connector

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

Properties

SyncStatsByFileType

Declaration
[JsonProperty(PropertyName = "syncStatsByFileType")]
public Dictionary<string, int> SyncStatsByFileType { get; set; }
Property Value
Type Description
Dictionary<string, int>

FileSync Statistics for different file types.

TotalFilesSynced

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

The total number of files synchronized from the datasource.

In this article
Back to top