OperationResult Constructors

Definition

Overloads

OperationResult()

Initializes a new instance of the OperationResult class.

OperationResult(String, String, String, Nullable<DateTime>, Nullable<DateTime>, Nullable<Double>, String, String, String, String, String)

Initializes a new instance of the OperationResult class.

OperationResult()

Initializes a new instance of the OperationResult class.

public OperationResult ();
Public Sub New ()

Applies to

OperationResult(String, String, String, Nullable<DateTime>, Nullable<DateTime>, Nullable<Double>, String, String, String, String, String)

Initializes a new instance of the OperationResult class.

public OperationResult (string id = default, string name = default, string status = default, DateTime? startTime = default, DateTime? endTime = default, double? percentComplete = default, string operationKind = default, string provisioningState = default, string operationState = default, string code = default, string message = default);
new Microsoft.Azure.Management.Kusto.Models.OperationResult : string * string * string * Nullable<DateTime> * Nullable<DateTime> * Nullable<double> * string * string * string * string * string -> Microsoft.Azure.Management.Kusto.Models.OperationResult
Public Sub New (Optional id As String = Nothing, Optional name As String = Nothing, Optional status As String = Nothing, Optional startTime As Nullable(Of DateTime) = Nothing, Optional endTime As Nullable(Of DateTime) = Nothing, Optional percentComplete As Nullable(Of Double) = Nothing, Optional operationKind As String = Nothing, Optional provisioningState As String = Nothing, Optional operationState As String = Nothing, Optional code As String = Nothing, Optional message As String = Nothing)

Parameters

id
String

ID of the resource.

name
String

Name of the resource.

status
String

status of the Operation result. Possible values include: 'Succeeded', 'Canceled', 'Failed', 'Running'

startTime
Nullable<DateTime>

The operation start time

endTime
Nullable<DateTime>

The operation end time

percentComplete
Nullable<Double>

Percentage completed.

operationKind
String

The kind of the operation.

provisioningState
String

The provisioned state of the resource. Possible values include: 'Running', 'Creating', 'Deleting', 'Succeeded', 'Failed', 'Moving'

operationState
String

The state of the operation.

code
String

The code of the error.

message
String

The error message.

Applies to