Show / Hide Table of Contents

    Class JobDefinition

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

    Constructors

    JobDefinition()

    Initializes a new instance of the JobDefinition class.

    Declaration
    public JobDefinition ();

    JobDefinition(String, String, String, JobProperties)

    Initializes a new instance of the JobDefinition class.

    Declaration
    public JobDefinition (string id = null, string type = null, string name = null, Microsoft.Azure.Management.Scheduler.Models.JobProperties properties = null);
    Parameters
    String id

    String type

    String name

    JobProperties properties

    Properties

    Id

    Gets the job resource identifier.

    Declaration
    [Newtonsoft.Json.JsonProperty(PropertyName="id")]
    public string Id { get; }
    Property Value
    String

    Name

    Gets the job resource name.

    Declaration
    [Newtonsoft.Json.JsonProperty(PropertyName="name")]
    public string Name { get; }
    Property Value
    String

    Properties

    Gets or sets the job properties.

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

    Type

    Gets the job resource type.

    Declaration
    [Newtonsoft.Json.JsonProperty(PropertyName="type")]
    public string Type { get; }
    Property Value
    String

    Back to top Azure SDK for Net