Show / Hide Table of Contents

Class Schedule

A scanning schedule

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

Properties

DayOfWeek

Declaration
[JsonProperty(PropertyName = "dayOfWeek")]
[JsonConverter(typeof(ResponseEnumConverter))]
public DayOfWeek? DayOfWeek { get; set; }
Property Value
Type Description
DayOfWeek?

Day of week the scheduled scan occurs (not applicable for DAILY type)

Type

Declaration
[Required(ErrorMessage = "Type is required.")]
[JsonProperty(PropertyName = "type")]
[JsonConverter(typeof(ResponseEnumConverter))]
public ScheduleType? Type { get; set; }
Property Value
Type Description
ScheduleType?

How often the scan occurs

Remarks

Required

In this article
Back to top