DatabaseOperationInner Constructors

Definition

Overloads

DatabaseOperationInner()

Initializes a new instance of the DatabaseOperationInner class.

DatabaseOperationInner(String, String, String, String, String, String, Nullable<Int32>, String, Nullable<DateTime>, ManagementOperationState, Nullable<Int32>, String, Nullable<Int32>, Nullable<Boolean>, Nullable<DateTime>, String, Nullable<Boolean>)

Initializes a new instance of the DatabaseOperationInner class.

DatabaseOperationInner()

Initializes a new instance of the DatabaseOperationInner class.

public DatabaseOperationInner ();
Public Sub New ()

Applies to

DatabaseOperationInner(String, String, String, String, String, String, Nullable<Int32>, String, Nullable<DateTime>, ManagementOperationState, Nullable<Int32>, String, Nullable<Int32>, Nullable<Boolean>, Nullable<DateTime>, String, Nullable<Boolean>)

Initializes a new instance of the DatabaseOperationInner class.

public DatabaseOperationInner (string id = default, string name = default, string type = default, string databaseName = default, string operation = default, string operationFriendlyName = default, int? percentComplete = default, string serverName = default, DateTime? startTime = default, Microsoft.Azure.Management.Sql.Fluent.Models.ManagementOperationState state = default, int? errorCode = default, string errorDescription = default, int? errorSeverity = default, bool? isUserError = default, DateTime? estimatedCompletionTime = default, string description = default, bool? isCancellable = default);
new Microsoft.Azure.Management.Sql.Fluent.Models.DatabaseOperationInner : string * string * string * string * string * string * Nullable<int> * string * Nullable<DateTime> * Microsoft.Azure.Management.Sql.Fluent.Models.ManagementOperationState * Nullable<int> * string * Nullable<int> * Nullable<bool> * Nullable<DateTime> * string * Nullable<bool> -> Microsoft.Azure.Management.Sql.Fluent.Models.DatabaseOperationInner
Public Sub New (Optional id As String = Nothing, Optional name As String = Nothing, Optional type As String = Nothing, Optional databaseName As String = Nothing, Optional operation As String = Nothing, Optional operationFriendlyName As String = Nothing, Optional percentComplete As Nullable(Of Integer) = Nothing, Optional serverName As String = Nothing, Optional startTime As Nullable(Of DateTime) = Nothing, Optional state As ManagementOperationState = Nothing, Optional errorCode As Nullable(Of Integer) = Nothing, Optional errorDescription As String = Nothing, Optional errorSeverity As Nullable(Of Integer) = Nothing, Optional isUserError As Nullable(Of Boolean) = Nothing, Optional estimatedCompletionTime As Nullable(Of DateTime) = Nothing, Optional description As String = Nothing, Optional isCancellable As Nullable(Of Boolean) = Nothing)

Parameters

id
String
name
String
type
String
databaseName
String

The name of the database the operation is being performed on.

operation
String

The name of operation.

operationFriendlyName
String

The friendly name of operation.

percentComplete
Nullable<Int32>

The percentage of the operation completed.

serverName
String

The name of the server.

startTime
Nullable<DateTime>

The operation start time.

state
ManagementOperationState

The operation state. Possible values include: 'Pending', 'InProgress', 'Succeeded', 'Failed', 'CancelInProgress', 'Cancelled'

errorCode
Nullable<Int32>

The operation error code.

errorDescription
String

The operation error description.

errorSeverity
Nullable<Int32>

The operation error severity.

isUserError
Nullable<Boolean>

Whether or not the error is a user error.

estimatedCompletionTime
Nullable<DateTime>

The estimated completion time of the operation.

description
String

The operation description.

isCancellable
Nullable<Boolean>

Whether the operation can be cancelled.

Applies to