Interface RestorePoint
- All Superinterfaces:
HasId, HasInnerModel<RestorePointInner>, HasName, HasResourceGroup
public interface RestorePoint
extends HasInnerModel<RestorePointInner>, HasResourceGroup, HasName, HasId
An immutable client-side representation of an Azure SQL database's Restore Point.
-
Method Summary
Modifier and TypeMethodDescriptionGets the ID of the SQL Database to which this replication belongs.Gets name of the SQL Database to which this replication belongs.Gets earliest restore time.Gets restore point creation time.Gets the restore point type of the Azure SQL Database restore point.Gets name of the SQL Server to which this replication belongs.Methods inherited from interface HasInnerModel
innerModelMethods inherited from interface HasResourceGroup
resourceGroupName
-
Method Details
-
sqlServerName
String sqlServerName()Gets name of the SQL Server to which this replication belongs.- Returns:
- name of the SQL Server to which this replication belongs
-
databaseName
String databaseName()Gets name of the SQL Database to which this replication belongs.- Returns:
- name of the SQL Database to which this replication belongs
-
databaseId
String databaseId()Gets the ID of the SQL Database to which this replication belongs.- Returns:
- the ID of the SQL Database to which this replication belongs
-
restorePointType
RestorePointType restorePointType()Gets the restore point type of the Azure SQL Database restore point.- Returns:
- the restore point type of the Azure SQL Database restore point.
-
restorePointCreationDate
OffsetDateTime restorePointCreationDate()Gets restore point creation time.- Returns:
- restore point creation time (ISO8601 format). Populated when restorePointType = CONTINUOUS. Null otherwise.
-
earliestRestoreDate
OffsetDateTime earliestRestoreDate()Gets earliest restore time.- Returns:
- earliest restore time (ISO8601 format). Populated when restorePointType = DISCRETE. Null otherwise.
-