Show / Hide Table of Contents

    Class JobProperties

    Inheritance
    Object
    JobProperties
    Namespace: System.Dynamic.ExpandoObject
    Assembly: Microsoft.Azure.Management.Scheduler.dll
    Syntax
    public class JobProperties

    Constructors

    JobProperties()

    Initializes a new instance of the JobProperties class.

    Declaration
    public JobProperties ();

    JobProperties(Nullable<DateTime>, JobAction, JobRecurrence, Nullable<JobState>, JobStatus)

    Initializes a new instance of the JobProperties class.

    Declaration
    public JobProperties (Nullable<DateTime> startTime = null, Microsoft.Azure.Management.Scheduler.Models.JobAction action = null, Microsoft.Azure.Management.Scheduler.Models.JobRecurrence recurrence = null, Nullable<Microsoft.Azure.Management.Scheduler.Models.JobState> state = null, Microsoft.Azure.Management.Scheduler.Models.JobStatus status = null);
    Parameters
    Nullable<DateTime> startTime

    JobAction action

    JobRecurrence recurrence

    Nullable<JobState> state

    JobStatus status

    Properties

    Action

    Gets or sets the job action.

    Declaration
    [Newtonsoft.Json.JsonProperty(PropertyName="action")]
    public Microsoft.Azure.Management.Scheduler.Models.JobAction Action { get; set; }
    Property Value
    JobAction

    Recurrence

    Gets or sets the job recurrence.

    Declaration
    [Newtonsoft.Json.JsonProperty(PropertyName="recurrence")]
    public Microsoft.Azure.Management.Scheduler.Models.JobRecurrence Recurrence { get; set; }
    Property Value
    JobRecurrence

    StartTime

    Gets or sets the job start time.

    Declaration
    [Newtonsoft.Json.JsonProperty(PropertyName="startTime")]
    public Nullable<DateTime> StartTime { get; set; }
    Property Value
    Nullable<DateTime>

    State

    Gets or set the job state. Possible values include: 'Enabled', 'Disabled', 'Faulted', 'Completed'

    Declaration
    [Newtonsoft.Json.JsonProperty(PropertyName="state")]
    public Nullable<Microsoft.Azure.Management.Scheduler.Models.JobState> State { get; set; }
    Property Value
    Nullable<JobState>

    Status

    Gets the job status.

    Declaration
    [Newtonsoft.Json.JsonProperty(PropertyName="status")]
    public Microsoft.Azure.Management.Scheduler.Models.JobStatus Status { get; }
    Property Value
    JobStatus

    Back to top Azure SDK for Net