DatabaseOperation Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
DatabaseOperation() |
Initializes a new instance of the DatabaseOperation class. |
DatabaseOperation(String, String, String, String, String, String, Nullable<Int32>, String, Nullable<DateTime>, String, Nullable<Int32>, String, Nullable<Int32>, Nullable<Boolean>, Nullable<DateTime>, String, Nullable<Boolean>) |
Initializes a new instance of the DatabaseOperation class. |
DatabaseOperation()
Initializes a new instance of the DatabaseOperation class.
public DatabaseOperation ();
Public Sub New ()
Applies to
DatabaseOperation(String, String, String, String, String, String, Nullable<Int32>, String, Nullable<DateTime>, String, Nullable<Int32>, String, Nullable<Int32>, Nullable<Boolean>, Nullable<DateTime>, String, Nullable<Boolean>)
Initializes a new instance of the DatabaseOperation class.
public DatabaseOperation (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, string 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.Models.DatabaseOperation : string * string * string * string * string * string * Nullable<int> * string * Nullable<DateTime> * string * Nullable<int> * string * Nullable<int> * Nullable<bool> * Nullable<DateTime> * string * Nullable<bool> -> Microsoft.Azure.Management.Sql.Models.DatabaseOperation
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 String = 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
Resource ID.
- name
- String
Resource name.
- type
- String
Resource type.
- 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.
- serverName
- String
The name of the server.
- state
- String
The operation state. Possible values include: 'Pending', 'InProgress', 'Succeeded', 'Failed', 'CancelInProgress', 'Cancelled'
- errorDescription
- String
The operation error description.
- description
- String
The operation description.
Applies to
Azure SDK for .NET