Class Job
A job.
Namespace: System.Dynamic.ExpandoObject
Assembly: Microsoft.Azure.Management.Sql.dll
Syntax
[Microsoft.Rest.Serialization.JsonTransformation]
public class Job : Microsoft.Azure.Management.Sql.Models.ProxyResource
Constructors
Job()
Initializes a new instance of the Job class.
Declaration
public Job ();
Job(String, String, String, String, Nullable<Int32>, JobSchedule)
Initializes a new instance of the Job class.
Declaration
public Job (string id = null, string name = null, string type = null, string description = null, Nullable<int> version = null, Microsoft.Azure.Management.Sql.Models.JobSchedule schedule = null);
Parameters
String
id
Resource ID. |
String
name
Resource name. |
String
type
Resource type. |
String
description
User-defined description of the job. |
Nullable<Int32>
version
The job version number. |
JobSchedule
schedule
Schedule properties of the job. |
Properties
Description
Gets or sets user-defined description of the job.
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="properties.description")]
public string Description { get; set; }
Property Value
String
|
Schedule
Gets or sets schedule properties of the job.
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="properties.schedule")]
public Microsoft.Azure.Management.Sql.Models.JobSchedule Schedule { get; set; }
Property Value
JobSchedule
|