DatabaseFileInfo Constructors

Definition

Overloads

DatabaseFileInfo()

Initializes a new instance of the DatabaseFileInfo class.

DatabaseFileInfo(String, String, String, String, String, String, Nullable<Double>)

Initializes a new instance of the DatabaseFileInfo class.

DatabaseFileInfo()

Initializes a new instance of the DatabaseFileInfo class.

public DatabaseFileInfo ();
Public Sub New ()

Applies to

DatabaseFileInfo(String, String, String, String, String, String, Nullable<Double>)

Initializes a new instance of the DatabaseFileInfo class.

public DatabaseFileInfo (string databaseName = default, string id = default, string logicalName = default, string physicalFullName = default, string restoreFullName = default, string fileType = default, double? sizeMb = default);
new Microsoft.Azure.Management.DataMigration.Models.DatabaseFileInfo : string * string * string * string * string * string * Nullable<double> -> Microsoft.Azure.Management.DataMigration.Models.DatabaseFileInfo
Public Sub New (Optional databaseName As String = Nothing, Optional id As String = Nothing, Optional logicalName As String = Nothing, Optional physicalFullName As String = Nothing, Optional restoreFullName As String = Nothing, Optional fileType As String = Nothing, Optional sizeMb As Nullable(Of Double) = Nothing)

Parameters

databaseName
String

Name of the database

id
String

Unique identifier for database file

logicalName
String

Logical name of the file

physicalFullName
String

Operating-system full path of the file

restoreFullName
String

Suggested full path of the file for restoring

fileType
String

Database file type Possible values include: 'Rows', 'Log', 'Filestream', 'NotSupported', 'Fulltext'

sizeMb
Nullable<Double>

Size of the file in megabytes

Applies to