Show / Hide Table of Contents

Class JobScheduleDetails

The details of the job schedule.

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

Properties

EndTime

Declaration
[JsonProperty(PropertyName = "endTime")]
public string EndTime { get; set; }
Property Value
Type Description
string

The end time of the scheduled job in UTC in ISO-8601 format, which is "yyyy-MM-dd'T'hh:mm:ss.sss'Z'".

IntervalType

Declaration
[JsonProperty(PropertyName = "intervalType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public JobScheduleDetails.IntervalTypeEnum? IntervalType { get; set; }
Property Value
Type Description
JobScheduleDetails.IntervalTypeEnum?

The interval type for a recurring scheduled job. For a non-recurring (one time) job, NEVER must be specified as the interval type.

IntervalValue

Declaration
[JsonProperty(PropertyName = "intervalValue")]
public string IntervalValue { get; set; }
Property Value
Type Description
string

The value for the interval period for a recurring scheduled job.

StartTime

Declaration
[JsonProperty(PropertyName = "startTime")]
public string StartTime { get; set; }
Property Value
Type Description
string

The start time of the scheduled job in UTC in ISO-8601 format, which is "yyyy-MM-dd'T'hh:mm:ss.sss'Z'".

In this article
Back to top