RecoverableDatabase Constructors

Definition

Overloads

RecoverableDatabase()

Initializes a new instance of the RecoverableDatabase class.

RecoverableDatabase(String, String, String, String, String, String, Nullable<DateTime>)

Initializes a new instance of the RecoverableDatabase class.

RecoverableDatabase()

Initializes a new instance of the RecoverableDatabase class.

public RecoverableDatabase ();
Public Sub New ()

Applies to

RecoverableDatabase(String, String, String, String, String, String, Nullable<DateTime>)

Initializes a new instance of the RecoverableDatabase class.

public RecoverableDatabase (string id = default, string name = default, string type = default, string edition = default, string serviceLevelObjective = default, string elasticPoolName = default, DateTime? lastAvailableBackupDate = default);
new Microsoft.Azure.Management.Sql.Models.RecoverableDatabase : string * string * string * string * string * string * Nullable<DateTime> -> Microsoft.Azure.Management.Sql.Models.RecoverableDatabase
Public Sub New (Optional id As String = Nothing, Optional name As String = Nothing, Optional type As String = Nothing, Optional edition As String = Nothing, Optional serviceLevelObjective As String = Nothing, Optional elasticPoolName As String = Nothing, Optional lastAvailableBackupDate As Nullable(Of DateTime) = Nothing)

Parameters

id
String

Resource ID.

name
String

Resource name.

type
String

Resource type.

edition
String

The edition of the database

serviceLevelObjective
String

The service level objective name of the database

elasticPoolName
String

The elastic pool name of the database

lastAvailableBackupDate
Nullable<DateTime>

The last available backup date of the database (ISO8601 format)

Applies to