Show / Hide Table of Contents

Class AssociatedSchedulerDefinition

SchedulerDefinition associated with the job.

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

Properties

DisplayName

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

A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
Example: My new resource

Remarks

Required

Id

Declaration
[Required(ErrorMessage = "Id is required.")]
[JsonProperty(PropertyName = "id")]
public string Id { get; set; }
Property Value
Type Description
string

The OCID of the resource.

Remarks

Required

IsRecurring

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

Is this a recurring schedule?

Remarks

Required

In this article
Back to top