Show / Hide Table of Contents

Class ScheduleConfig

The Schedule configuration of a VectorStoreConnector to trigger a File Sync Operation.

Inheritance
object
ScheduleConfig
ScheduleCronConfig
ScheduleIntervalConfig
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
[JsonConverter(typeof(ScheduleConfigModelConverter))]
public class ScheduleConfig

Properties

State

Declaration
[JsonProperty(PropertyName = "state")]
[JsonConverter(typeof(ResponseEnumConverter))]
public ScheduleConfig.StateEnum? State { get; set; }
Property Value
Type Description
ScheduleConfig.StateEnum?

The state of the schedule. The state can be either ENABLED or DISABLED.

TimeEnd

Declaration
[JsonProperty(PropertyName = "timeEnd")]
public DateTime? TimeEnd { get; set; }
Property Value
Type Description
DateTime?

The schedule end date time, if null, the schedule will never expire. Format is defined by RFC3339.

TimeStart

Declaration
[JsonProperty(PropertyName = "timeStart")]
public DateTime? TimeStart { get; set; }
Property Value
Type Description
DateTime?

The schedule starting date time, if null, System set the time when schedule is created. Format is defined by RFC3339.

In this article
Back to top