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
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringdatabaseId()StringdatabaseName()OffsetDateTimeearliestRestoreDate()OffsetDateTimerestorePointCreationDate()RestorePointTyperestorePointType()StringsqlServerName()-
Methods inherited from interface com.azure.resourcemanager.resources.fluentcore.model.HasInnerModel
innerModel
-
Methods inherited from interface com.azure.resourcemanager.resources.fluentcore.arm.models.HasName
name
-
Methods inherited from interface com.azure.resourcemanager.resources.fluentcore.arm.models.HasResourceGroup
resourceGroupName
-
-
-
-
Method Detail
-
sqlServerName
String sqlServerName()
- Returns:
- name of the SQL Server to which this replication belongs
-
databaseName
String databaseName()
- Returns:
- name of the SQL Database to which this replication belongs
-
databaseId
String databaseId()
- Returns:
- the ID of the SQL Database to which this replication belongs
-
restorePointType
RestorePointType restorePointType()
- Returns:
- the restore point type of the Azure SQL Database restore point.
-
restorePointCreationDate
OffsetDateTime restorePointCreationDate()
- Returns:
- restore point creation time (ISO8601 format). Populated when restorePointType = CONTINUOUS. Null otherwise.
-
earliestRestoreDate
OffsetDateTime earliestRestoreDate()
- Returns:
- earliest restore time (ISO8601 format). Populated when restorePointType = DISCRETE. Null otherwise.
-
-