Bagikan melalui


Backup Constructors

Definition

Overloads

Backup()

Initializes a new instance of the Backup class.

Backup(Nullable<Int32>, String, Nullable<DateTime>)

Initializes a new instance of the Backup class.

Backup()

Initializes a new instance of the Backup class.

public Backup ();
Public Sub New ()

Applies to

Backup(Nullable<Int32>, String, Nullable<DateTime>)

Initializes a new instance of the Backup class.

public Backup (int? backupRetentionDays = default, string geoRedundantBackup = default, DateTime? earliestRestoreDate = default);
new Microsoft.Azure.Management.PostgreSQL.FlexibleServers.Models.Backup : Nullable<int> * string * Nullable<DateTime> -> Microsoft.Azure.Management.PostgreSQL.FlexibleServers.Models.Backup
Public Sub New (Optional backupRetentionDays As Nullable(Of Integer) = Nothing, Optional geoRedundantBackup As String = Nothing, Optional earliestRestoreDate As Nullable(Of DateTime) = Nothing)

Parameters

backupRetentionDays
Nullable<Int32>

Backup retention days for the server.

geoRedundantBackup
String

A value indicating whether Geo-Redundant backup is enabled on the server. Possible values include: 'Enabled', 'Disabled'

earliestRestoreDate
Nullable<DateTime>

The earliest restore point time (ISO8601 format) for server.

Applies to