你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

Job 构造函数

定义

重载

Job()

初始化 Job 类的新实例。

Job(JobInput, IList<JobOutput>, String, String, String, DateTime, JobState, String, DateTime, Nullable<Priority>, IDictionary<String, String>, Nullable<DateTime>, Nullable<DateTime>, SystemData)

初始化 Job 类的新实例。

Job()

初始化 Job 类的新实例。

public Job ();
Public Sub New ()

适用于

Job(JobInput, IList<JobOutput>, String, String, String, DateTime, JobState, String, DateTime, Nullable<Priority>, IDictionary<String, String>, Nullable<DateTime>, Nullable<DateTime>, SystemData)

初始化 Job 类的新实例。

public Job (Microsoft.Azure.Management.Media.Models.JobInput input, System.Collections.Generic.IList<Microsoft.Azure.Management.Media.Models.JobOutput> outputs, string id = default, string name = default, string type = default, DateTime created = default, Microsoft.Azure.Management.Media.Models.JobState state = default, string description = default, DateTime lastModified = default, Microsoft.Azure.Management.Media.Models.Priority? priority = default, System.Collections.Generic.IDictionary<string,string> correlationData = default, DateTime? startTime = default, DateTime? endTime = default, Microsoft.Azure.Management.Media.Models.SystemData systemData = default);
new Microsoft.Azure.Management.Media.Models.Job : Microsoft.Azure.Management.Media.Models.JobInput * System.Collections.Generic.IList<Microsoft.Azure.Management.Media.Models.JobOutput> * string * string * string * DateTime * Microsoft.Azure.Management.Media.Models.JobState * string * DateTime * Nullable<Microsoft.Azure.Management.Media.Models.Priority> * System.Collections.Generic.IDictionary<string, string> * Nullable<DateTime> * Nullable<DateTime> * Microsoft.Azure.Management.Media.Models.SystemData -> Microsoft.Azure.Management.Media.Models.Job
Public Sub New (input As JobInput, outputs As IList(Of JobOutput), Optional id As String = Nothing, Optional name As String = Nothing, Optional type As String = Nothing, Optional created As DateTime = Nothing, Optional state As JobState = Nothing, Optional description As String = Nothing, Optional lastModified As DateTime = Nothing, Optional priority As Nullable(Of Priority) = Nothing, Optional correlationData As IDictionary(Of String, String) = Nothing, Optional startTime As Nullable(Of DateTime) = Nothing, Optional endTime As Nullable(Of DateTime) = Nothing, Optional systemData As SystemData = Nothing)

参数

input
JobInput

作业的输入。

outputs
IList<JobOutput>

作业的输出。

id
String

资源的完全限定的资源 ID。 例如 - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}

name
String

资源的名称

type
String

资源类型。 例如“Microsoft.Compute/virtualMachines”或“Microsoft.Storage/storageAccounts”

created
DateTime

客户创建作业的 UTC 日期和时间,采用“YYYY-MM-DDThh:mm:ssZ”格式。

state
JobState

作业的当前状态。 可能的值包括:“Canceled”、“Canceling”、“Error”、“Finished”、“Processing”、“Queued”、“Scheduled”

description
String

客户为作业提供的说明(可选)。

lastModified
DateTime

客户上次更新作业的 UTC 日期和时间,采用“YYYY-MM-DDThh:mm:ssZ”格式。

priority
Nullable<Priority>

处理作业的优先级。 较高优先级的作业在较低优先级的作业之前处理。 如果未设置,则默认为正常。 可能的值包括:“Low”、“Normal”、“High”

correlationData
IDictionary<String,String>

客户提供的键值对,将在作业和 JobOutput 状态事件中返回。

startTime
Nullable<DateTime>

此作业开始处理的 UTC 日期和时间。

endTime
Nullable<DateTime>

此作业完成处理的 UTC 日期和时间。

systemData
SystemData

与此资源相关的系统元数据。

适用于