RestorePoint Constructors

Definition

Overloads

RestorePoint()

Initializes a new instance of the RestorePoint class.

RestorePoint(String, String, String, String, Nullable<RestorePointType>, Nullable<DateTime>, Nullable<DateTime>, String)

Initializes a new instance of the RestorePoint class.

RestorePoint()

Initializes a new instance of the RestorePoint class.

public RestorePoint ();
Public Sub New ()

Applies to

RestorePoint(String, String, String, String, Nullable<RestorePointType>, Nullable<DateTime>, Nullable<DateTime>, String)

Initializes a new instance of the RestorePoint class.

public RestorePoint (string id = default, string name = default, string type = default, string location = default, Microsoft.Azure.Management.Sql.Models.RestorePointType? restorePointType = default, DateTime? earliestRestoreDate = default, DateTime? restorePointCreationDate = default, string restorePointLabel = default);
new Microsoft.Azure.Management.Sql.Models.RestorePoint : string * string * string * string * Nullable<Microsoft.Azure.Management.Sql.Models.RestorePointType> * Nullable<DateTime> * Nullable<DateTime> * string -> Microsoft.Azure.Management.Sql.Models.RestorePoint
Public Sub New (Optional id As String = Nothing, Optional name As String = Nothing, Optional type As String = Nothing, Optional location As String = Nothing, Optional restorePointType As Nullable(Of RestorePointType) = Nothing, Optional earliestRestoreDate As Nullable(Of DateTime) = Nothing, Optional restorePointCreationDate As Nullable(Of DateTime) = Nothing, Optional restorePointLabel As String = Nothing)

Parameters

id
String

Resource ID.

name
String

Resource name.

type
String

Resource type.

location
String

Resource location.

restorePointType
Nullable<RestorePointType>

The type of restore point. Possible values include: 'CONTINUOUS', 'DISCRETE'

earliestRestoreDate
Nullable<DateTime>

The earliest time to which this database can be restored

restorePointCreationDate
Nullable<DateTime>

The time the backup was taken

restorePointLabel
String

The label of restore point for backup request by user

Applies to