Show / Hide Table of Contents

Class VectorStoreConnectorStats

File synchronization statistics for a VectorStoreConnector.

Inheritance
object
VectorStoreConnectorStats
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 VectorStoreConnectorStats

Properties

Created

Declaration
[JsonProperty(PropertyName = "created")]
public FileSyncStatistics Created { get; set; }
Property Value
Type Description
FileSyncStatistics

DefinedTags

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

Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
Example: {"Operations": {"CostCenter": "42"}}

Deleted

Declaration
[JsonProperty(PropertyName = "deleted")]
public FileSyncStatistics Deleted { get; set; }
Property Value
Type Description
FileSyncStatistics

Failed

Declaration
[JsonProperty(PropertyName = "failed")]
public FileSyncStatistics Failed { get; set; }
Property Value
Type Description
FileSyncStatistics

FreeformTags

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

Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags.
Example: {"Department": "Finance"}

Ignored

Declaration
[JsonProperty(PropertyName = "ignored")]
public FileSyncStatistics Ignored { get; set; }
Property Value
Type Description
FileSyncStatistics

InProgress

Declaration
[JsonProperty(PropertyName = "inProgress")]
public FileSyncStatistics InProgress { get; set; }
Property Value
Type Description
FileSyncStatistics

MetadataUpdated

Declaration
[JsonProperty(PropertyName = "metadataUpdated")]
public FileSyncStatistics MetadataUpdated { get; set; }
Property Value
Type Description
FileSyncStatistics

SystemTags

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

System tags for this resource. Each key is predefined and scoped to a namespace.
Example: {"orcl-cloud": {"free-tier-retained": "true"}}

TimeGenerated

Declaration
[Required(ErrorMessage = "TimeGenerated is required.")]
[JsonProperty(PropertyName = "timeGenerated")]
public DateTime? TimeGenerated { get; set; }
Property Value
Type Description
DateTime?

The date and time when the statistics was generated in the format of an RFC3339 datetime string.

Remarks

Required

Unsupported

Declaration
[JsonProperty(PropertyName = "unsupported")]
public FileSyncStatistics Unsupported { get; set; }
Property Value
Type Description
FileSyncStatistics

Updated

Declaration
[JsonProperty(PropertyName = "updated")]
public FileSyncStatistics Updated { get; set; }
Property Value
Type Description
FileSyncStatistics
In this article
Back to top