通过


你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

RestorePoint Interface

Implements

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 Type Method and Description
abstract String databaseId()

Gets the ID of the SQL Database to which this replication belongs.

abstract String databaseName()

Gets name of the SQL Database to which this replication belongs.

abstract OffsetDateTime earliestRestoreDate()

Gets earliest restore time.

abstract OffsetDateTime restorePointCreationDate()

Gets restore point creation time.

abstract RestorePointType restorePointType()

Gets the restore point type of the Azure SQL Database restore point.

abstract String sqlServerName()

Gets name of the SQL Server to which this replication belongs.

Method Details

databaseId

public abstract 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

databaseName

public abstract String databaseName()

Gets name of the SQL Database to which this replication belongs.

Returns:

name of the SQL Database to which this replication belongs

earliestRestoreDate

public abstract OffsetDateTime earliestRestoreDate()

Gets earliest restore time.

Returns:

earliest restore time (ISO8601 format). Populated when restorePointType = DISCRETE. Null otherwise.

restorePointCreationDate

public abstract OffsetDateTime restorePointCreationDate()

Gets restore point creation time.

Returns:

restore point creation time (ISO8601 format). Populated when restorePointType = CONTINUOUS. Null otherwise.

restorePointType

public abstract 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.

sqlServerName

public abstract String sqlServerName()

Gets name of the SQL Server to which this replication belongs.

Returns:

name of the SQL Server to which this replication belongs

Applies to