RestorableDroppedDatabase Constructors

Definition

Overloads

RestorableDroppedDatabase()

Initializes a new instance of the RestorableDroppedDatabase class.

RestorableDroppedDatabase(String, String, String, Sku, String, IDictionary<String,String>, String, Nullable<Int64>, Nullable<DateTime>, Nullable<DateTime>, Nullable<DateTime>, String)

Initializes a new instance of the RestorableDroppedDatabase class.

RestorableDroppedDatabase()

Initializes a new instance of the RestorableDroppedDatabase class.

public RestorableDroppedDatabase ();
Public Sub New ()

Applies to

RestorableDroppedDatabase(String, String, String, Sku, String, IDictionary<String,String>, String, Nullable<Int64>, Nullable<DateTime>, Nullable<DateTime>, Nullable<DateTime>, String)

Initializes a new instance of the RestorableDroppedDatabase class.

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

Parameters

id
String

Resource ID.

name
String

Resource name.

type
String

Resource type.

sku
Sku

The name and tier of the SKU.

location
String

Resource location.

tags
IDictionary<String,String>

Resource tags.

databaseName
String

The name of the database.

maxSizeBytes
Nullable<Int64>

The max size of the database expressed in bytes.

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).

backupStorageRedundancy
String

The storage account type used to store backups for this database. Possible values include: 'Geo', 'Local', 'Zone', 'GeoZone'

Applies to