Restore Points - Get
復元ポイントを取得します。
GET https://management.azure.com/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases/{databaseName}/restorePoints/{restorePointName}?api-version=2021-11-01
URI パラメーター
名前 | / | 必須 | 型 | 説明 |
---|---|---|---|---|
database
|
path | True |
string |
データベースの名前。 |
resource
|
path | True |
string |
リソースが含まれているリソース グループの名前。 この値は、Azure リソース マネージャー API またはポータルから取得できます。 |
restore
|
path | True |
string |
復元ポイントの名前。 |
server
|
path | True |
string |
サーバーの名前。 |
subscription
|
path | True |
string |
Azure サブスクリプションを識別するサブスクリプション ID。 |
api-version
|
query | True |
string |
要求で使用する API のバージョン。 |
応答
名前 | 型 | 説明 |
---|---|---|
200 OK |
復元ポイントが正常に返されました。 |
|
Other Status Codes |
エラー応答: ***
|
例
Gets a database restore point. |
Gets a datawarehouse database restore point. |
Gets a database restore point.
要求のサンプル
応答のサンプル
{
"id": "/subscriptions/00000000-1111-2222-3333-444444444444/providers/Microsoft.Sql/servers/testserver/databases/testDatabase/restorePoints/ContinuousRestorePoint",
"name": "ContinuousRestorePoint",
"type": "Microsoft.Sql/servers/databases/restorePoints",
"location": "japaneast",
"properties": {
"restorePointType": "CONTINUOUS",
"earliestRestoreDate": "2017-03-10T08:00:00Z"
}
}
Gets a 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"
}
}
定義
名前 | 説明 |
---|---|
Restore |
データベース復元ポイント。 |
Restore |
復元ポイントの種類 |
RestorePoint
データベース復元ポイント。
名前 | 型 | 説明 |
---|---|---|
id |
string |
リソースの ID |
location |
string |
リソースの場所。 |
name |
string |
リソース名。 |
properties.earliestRestoreDate |
string |
このデータベースを復元できる最も早い時刻 |
properties.restorePointCreationDate |
string |
バックアップが作成された時刻 |
properties.restorePointLabel |
string |
ユーザーによるバックアップ要求の復元ポイントのラベル |
properties.restorePointType |
復元ポイントの種類 |
|
type |
string |
リソースの種類。 |
RestorePointType
復元ポイントの種類
名前 | 型 | 説明 |
---|---|---|
CONTINUOUS |
string |
|
DISCRETE |
string |