RestorableDroppedManagedDatabase Constructors

Definition

Overloads

RestorableDroppedManagedDatabase()

Initializes a new instance of the RestorableDroppedManagedDatabase class.

RestorableDroppedManagedDatabase(String, String, String, String, IDictionary<String,String>, String, Nullable<DateTime>, Nullable<DateTime>, Nullable<DateTime>)

Initializes a new instance of the RestorableDroppedManagedDatabase class.

RestorableDroppedManagedDatabase()

Initializes a new instance of the RestorableDroppedManagedDatabase class.

public RestorableDroppedManagedDatabase ();
Public Sub New ()

Applies to

RestorableDroppedManagedDatabase(String, String, String, String, IDictionary<String,String>, String, Nullable<DateTime>, Nullable<DateTime>, Nullable<DateTime>)

Initializes a new instance of the RestorableDroppedManagedDatabase class.

public RestorableDroppedManagedDatabase (string location, string id = default, string name = default, string type = default, System.Collections.Generic.IDictionary<string,string> tags = default, string databaseName = default, DateTime? creationDate = default, DateTime? deletionDate = default, DateTime? earliestRestoreDate = default);
new Microsoft.Azure.Management.Sql.Models.RestorableDroppedManagedDatabase : string * string * string * string * System.Collections.Generic.IDictionary<string, string> * string * Nullable<DateTime> * Nullable<DateTime> * Nullable<DateTime> -> Microsoft.Azure.Management.Sql.Models.RestorableDroppedManagedDatabase
Public Sub New (location As String, Optional id As String = Nothing, Optional name As String = Nothing, Optional type As String = Nothing, Optional tags As IDictionary(Of String, String) = Nothing, Optional databaseName As String = Nothing, Optional creationDate As Nullable(Of DateTime) = Nothing, Optional deletionDate As Nullable(Of DateTime) = Nothing, Optional earliestRestoreDate As Nullable(Of DateTime) = Nothing)

Parameters

location
String

Resource location.

id
String

Resource ID.

name
String

Resource name.

type
String

Resource type.

tags
IDictionary<String,String>

Resource tags.

databaseName
String

The name of the database.

creationDate
Nullable<DateTime>

The creation date of the database (ISO8601 format).

deletionDate
Nullable<DateTime>

The deletion date of the database (ISO8601 format).

earliestRestoreDate
Nullable<DateTime>

The earliest restore date of the database (ISO8601 format).

Applies to