Share via


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.Synapse.Models.RestorePointType? restorePointType = default, DateTime? earliestRestoreDate = default, DateTime? restorePointCreationDate = default, string restorePointLabel = default);
new Microsoft.Azure.Management.Synapse.Models.RestorePoint : string * string * string * string * Nullable<Microsoft.Azure.Management.Synapse.Models.RestorePointType> * Nullable<DateTime> * Nullable<DateTime> * string -> Microsoft.Azure.Management.Synapse.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

Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}

name
String

The name of the resource

type
String

The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

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