次の方法で共有


JobResponse コンストラクター

定義

オーバーロード

JobResponse()

JobResponse クラスの新しいインスタンスを初期化します。

JobResponse(String, Nullable<DateTime>, Nullable<DateTime>, String, Nullable<JobStatus>, String, String, String)

JobResponse クラスの新しいインスタンスを初期化します。

JobResponse()

JobResponse クラスの新しいインスタンスを初期化します。

public JobResponse ();
Public Sub New ()

適用対象

JobResponse(String, Nullable<DateTime>, Nullable<DateTime>, String, Nullable<JobStatus>, String, String, String)

JobResponse クラスの新しいインスタンスを初期化します。

public JobResponse (string jobId = default, DateTime? startTimeUtc = default, DateTime? endTimeUtc = default, string type = default, Microsoft.Azure.Management.IotHub.Models.JobStatus? status = default, string failureReason = default, string statusMessage = default, string parentJobId = default);
new Microsoft.Azure.Management.IotHub.Models.JobResponse : string * Nullable<DateTime> * Nullable<DateTime> * string * Nullable<Microsoft.Azure.Management.IotHub.Models.JobStatus> * string * string * string -> Microsoft.Azure.Management.IotHub.Models.JobResponse
Public Sub New (Optional jobId As String = Nothing, Optional startTimeUtc As Nullable(Of DateTime) = Nothing, Optional endTimeUtc As Nullable(Of DateTime) = Nothing, Optional type As String = Nothing, Optional status As Nullable(Of JobStatus) = Nothing, Optional failureReason As String = Nothing, Optional statusMessage As String = Nothing, Optional parentJobId As String = Nothing)

パラメーター

jobId
String

ジョブ識別子です。

startTimeUtc
Nullable<DateTime>

ジョブの開始時刻。

endTimeUtc
Nullable<DateTime>

ジョブが処理を停止した時刻。

type
String

ジョブの種類。 使用可能な値には、'unknown'、'export'、'import'、'backup'、'readDeviceProperties'、'writeDeviceProperties'、'updateDeviceConfiguration'、'rebootDevice'、'factoryResetDevice'、'firmwareUpdate' などがあります。

status
Nullable<JobStatus>

ジョブの状態。 使用可能な値には、'unknown'、'enqueued'、'running'、'completed'、'failed'、'cancelled' などがあります。

failureReason
String

status == failed の場合、エラーの理由を含むこの文字列。

statusMessage
String

ジョブのステータス メッセージ。

parentJobId
String

親ジョブのジョブ識別子 (存在する場合)。

適用対象