Show / Hide Table of Contents

Class UpdateScheduledJobDetails

Information for updating a Scheduled Job

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

Properties

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. Example: {"foo-namespace": {"bar-key": "value"}}

Description

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

Details describing the Scheduled Job.

DisplayName

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

Scheduled Job name

FreeformTags

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

Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}

IntervalType

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

the interval period for a recurring Scheduled Job (only if schedule type is RECURRING)

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 (only if schedule type is RECURRING)

OperationType

Declaration
[JsonProperty(PropertyName = "operationType")]
[JsonConverter(typeof(StringEnumConverter))]
public OperationTypes? OperationType { get; set; }
Property Value
Type Description
OperationTypes?

the type of operation this Scheduled Job performs

PackageNames

Declaration
[JsonProperty(PropertyName = "packageNames")]
public List<PackageName> PackageNames { get; set; }
Property Value
Type Description
List<PackageName>

the id of the package (only if operation type is INSTALL/UPDATE/REMOVE)

ScheduleType

Declaration
[JsonProperty(PropertyName = "scheduleType")]
[JsonConverter(typeof(StringEnumConverter))]
public ScheduleTypes? ScheduleType { get; set; }
Property Value
Type Description
ScheduleTypes?

the type of scheduling this Scheduled Job follows

TimeNextExecution

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

the desired time for the next execution of this Scheduled Job

UpdateNames

Declaration
[JsonProperty(PropertyName = "updateNames")]
public List<string> UpdateNames { get; set; }
Property Value
Type Description
List<string>

The unique names of the Windows Updates (only if operation type is INSTALL). This is only applicable when the osFamily is for Windows managed instances.

UpdateType

Declaration
[JsonProperty(PropertyName = "updateType")]
[JsonConverter(typeof(StringEnumConverter))]
public PackageUpdateTypes? UpdateType { get; set; }
Property Value
Type Description
PackageUpdateTypes?

Type of the update (only if operation type is UPDATEALL)

In this article
Back to top