LongTermRetentionBackup Constructors

Definition

Overloads

LongTermRetentionBackup()

Initializes a new instance of the LongTermRetentionBackup class.

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

Initializes a new instance of the LongTermRetentionBackup class.

LongTermRetentionBackup()

Initializes a new instance of the LongTermRetentionBackup class.

public LongTermRetentionBackup ();
Public Sub New ()

Applies to

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

Initializes a new instance of the LongTermRetentionBackup class.

public LongTermRetentionBackup (string id = default, string name = default, string type = default, string serverName = default, DateTime? serverCreateTime = default, string databaseName = default, DateTime? databaseDeletionTime = default, DateTime? backupTime = default, DateTime? backupExpirationTime = default, string backupStorageRedundancy = default, string requestedBackupStorageRedundancy = default);
new Microsoft.Azure.Management.Sql.Models.LongTermRetentionBackup : string * string * string * string * Nullable<DateTime> * string * Nullable<DateTime> * Nullable<DateTime> * Nullable<DateTime> * string * string -> Microsoft.Azure.Management.Sql.Models.LongTermRetentionBackup
Public Sub New (Optional id As String = Nothing, Optional name As String = Nothing, Optional type As String = Nothing, Optional serverName As String = Nothing, Optional serverCreateTime As Nullable(Of DateTime) = Nothing, Optional databaseName As String = Nothing, Optional databaseDeletionTime As Nullable(Of DateTime) = Nothing, Optional backupTime As Nullable(Of DateTime) = Nothing, Optional backupExpirationTime As Nullable(Of DateTime) = Nothing, Optional backupStorageRedundancy As String = Nothing, Optional requestedBackupStorageRedundancy As String = Nothing)

Parameters

id
String

Resource ID.

name
String

Resource name.

type
String

Resource type.

serverName
String

The server name that the backup database belong to.

serverCreateTime
Nullable<DateTime>

The create time of the server.

databaseName
String

The name of the database the backup belong to

databaseDeletionTime
Nullable<DateTime>

The delete time of the database

backupTime
Nullable<DateTime>

The time the backup was taken

backupExpirationTime
Nullable<DateTime>

The time the long term retention backup will expire.

backupStorageRedundancy
String

The storage redundancy type of the backup. Possible values include: 'Geo', 'Local', 'Zone', 'GeoZone'

requestedBackupStorageRedundancy
String

The storage redundancy type of the backup. Possible values include: 'Geo', 'Local', 'Zone', 'GeoZone'

Applies to