JobResponse Construtores
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Sobrecargas
JobResponse() |
Inicializa uma nova instância da classe JobResponse. |
JobResponse(String, Nullable<DateTime>, Nullable<DateTime>, String, Nullable<JobStatus>, String, String, String) |
Inicializa uma nova instância da classe JobResponse. |
JobResponse()
Inicializa uma nova instância da classe JobResponse.
public JobResponse ();
Public Sub New ()
Aplica-se a
JobResponse(String, Nullable<DateTime>, Nullable<DateTime>, String, Nullable<JobStatus>, String, String, String)
Inicializa uma nova instância da classe 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)
Parâmetros
- jobId
- String
O identificador do trabalho.
- type
- String
O tipo do trabalho. Os valores possíveis incluem: 'unknown', 'export', 'import', 'backup', 'readDeviceProperties', 'writeDeviceProperties', 'updateDeviceConfiguration', 'rebootDevice', 'factoryResetDevice', 'firmwareUpdate'
O status do trabalho. Os valores possíveis incluem: 'unknown', 'enqueued', 'running', 'completed', 'failed', 'cancelled'
- failureReason
- String
Se status == falhou, essa cadeia de caracteres que contém o motivo da falha.
- statusMessage
- String
A mensagem status para o trabalho.
- parentJobId
- String
O identificador de trabalho do trabalho pai, se houver.
Aplica-se a
Azure SDK for .NET