你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
Restore Points - Create
为数据仓库创建还原点。
POST https://management.azure.com/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases/{databaseName}/restorePoints?api-version=2021-11-01
URI 参数
名称 | 在 | 必需 | 类型 | 说明 |
---|---|---|---|---|
database
|
path | True |
string |
数据库的名称。 |
resource
|
path | True |
string |
包含该资源的资源组名称。 可以从 Azure 资源管理器 API 或门户获取此值。 |
server
|
path | True |
string |
服务器的名称。 |
subscription
|
path | True |
string |
用于标识 Azure 订阅的订阅 ID。 |
api-version
|
query | True |
string |
要用于请求的 API 版本。 |
请求正文
名称 | 必需 | 类型 | 说明 |
---|---|---|---|
restorePointLabel | True |
string |
要应用的还原点标签 |
响应
名称 | 类型 | 说明 |
---|---|---|
200 OK |
已成功创建还原点请求。 |
|
201 Created |
已成功创建还原点请求。 |
|
202 Accepted |
已接受 |
|
Other Status Codes |
错误响应:***
|
示例
Creates datawarehouse database restore point.
示例请求
示例响应
{
"id": "/subscriptions/00000000-1111-2222-3333-444444444444/providers/Microsoft.Sql/servers/testserver/databases/testDatabase/restorePoints/131546477590000000",
"name": "131546477590000000",
"type": "Microsoft.Sql/servers/databases/restorePoints",
"location": "japaneast",
"properties": {
"restorePointType": "DISCRETE",
"restorePointCreationDate": "2017-03-10T08:00:00Z",
"restorePointLabel": "mylabel"
}
}
{
"id": "/subscriptions/00000000-1111-2222-3333-444444444444/providers/Microsoft.Sql/servers/testserver/databases/testDatabase/restorePoints/131546477590000000",
"name": "131546477590000000",
"type": "Microsoft.Sql/servers/databases/restorePoints",
"location": "southeastasia",
"properties": {
"restorePointType": "DISCRETE",
"restorePointCreationDate": "2017-03-10T08:00:00Z",
"restorePointLabel": "mylabel"
}
}
定义
名称 | 说明 |
---|---|
Create |
包含执行创建数据库还原点操作所需的信息。 |
Restore |
数据库还原点。 |
Restore |
还原点的类型 |
CreateDatabaseRestorePointDefinition
包含执行创建数据库还原点操作所需的信息。
名称 | 类型 | 说明 |
---|---|---|
restorePointLabel |
string |
要应用的还原点标签 |
RestorePoint
数据库还原点。
名称 | 类型 | 说明 |
---|---|---|
id |
string |
资源 ID。 |
location |
string |
资源位置。 |
name |
string |
资源名称。 |
properties.earliestRestoreDate |
string |
此数据库可以还原到的最早时间 |
properties.restorePointCreationDate |
string |
备份的时间 |
properties.restorePointLabel |
string |
用户备份请求的还原点标签 |
properties.restorePointType |
还原点的类型 |
|
type |
string |
资源类型。 |
RestorePointType
还原点的类型
值 | 说明 |
---|---|
CONTINUOUS | |
DISCRETE |