Class RestorePoint
Database restore points.
Namespace: System.Dynamic.ExpandoObject
Assembly: Microsoft.Azure.Management.Sql.dll
Syntax
[Microsoft.Rest.Serialization.JsonTransformation]
public class RestorePoint : Microsoft.Azure.Management.Sql.Models.ProxyResource
Constructors
RestorePoint()
Initializes a new instance of the RestorePoint class.
Declaration
public RestorePoint ();
RestorePoint(String, String, String, String, Nullable<RestorePointType>, Nullable<DateTime>, Nullable<DateTime>, String)
Initializes a new instance of the RestorePoint class.
Declaration
public RestorePoint (string id = null, string name = null, string type = null, string location = null, Nullable<Microsoft.Azure.Management.Sql.Models.RestorePointType> restorePointType = null, Nullable<DateTime> earliestRestoreDate = null, Nullable<DateTime> restorePointCreationDate = null, string restorePointLabel = null);
Parameters
String
id
Resource ID. |
String
name
Resource name. |
String
type
Resource type. |
String
location
Resource location. |
Nullable<RestorePointType>
restorePointType
The type of restore point. Possible values include: 'CONTINUOUS', 'DISCRETE' |
Nullable<DateTime>
earliestRestoreDate
The earliest time to which this database can be restored |
Nullable<DateTime>
restorePointCreationDate
The time the backup was taken |
String
restorePointLabel
The label of restore point for backup request by user |
Properties
EarliestRestoreDate
Gets the earliest time to which this database can be restored
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="properties.earliestRestoreDate")]
public Nullable<DateTime> EarliestRestoreDate { get; }
Property Value
Nullable<DateTime>
|
Location
Gets resource location.
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="location")]
public string Location { get; }
Property Value
String
|
RestorePointCreationDate
Gets the time the backup was taken
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="properties.restorePointCreationDate")]
public Nullable<DateTime> RestorePointCreationDate { get; }
Property Value
Nullable<DateTime>
|
RestorePointLabel
Gets the label of restore point for backup request by user
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="properties.restorePointLabel")]
public string RestorePointLabel { get; }
Property Value
String
|
RestorePointType
Gets the type of restore point. Possible values include: 'CONTINUOUS', 'DISCRETE'
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="properties.restorePointType")]
public Nullable<Microsoft.Azure.Management.Sql.Models.RestorePointType> RestorePointType { get; }
Property Value
Nullable<RestorePointType>
|