Show / Hide Table of Contents

Class DesktopSchedule

Provides the schedule information for a desktop.

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

Properties

CronExpression

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

A cron expression describing the desktop's schedule.

Remarks

Required

Timezone

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

The timezone of the desktop's schedule.

Remarks

Required

In this article
Back to top