Server Operations - List By Server
サーバーで実行された操作の一覧を取得します。
GET https://management.azure.com/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/operations?api-version=2021-11-01
URI パラメーター
名前 | / | 必須 | 型 | 説明 |
---|---|---|---|---|
resource
|
path | True |
string |
リソースが含まれているリソース グループの名前。 この値は、Azure リソース マネージャー API またはポータルから取得できます。 |
server
|
path | True |
string |
サーバーの名前。 |
subscription
|
path | True |
string |
Azure サブスクリプションを識別するサブスクリプション ID。 |
api-version
|
query | True |
string |
要求で使用する API のバージョン。 |
応答
名前 | 型 | 説明 |
---|---|---|
200 OK |
サーバー操作を取得するための要求が正常に実行されました。 |
|
Other Status Codes |
エラー応答: ***
|
例
List the server management operations
要求のサンプル
応答のサンプル
{
"value": [
{
"id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-7398/providers/Microsoft.Sql/servers/sqlcrudtest-4645/operations/11111111-1111-1111-1111-111111111111",
"name": "11111111-1111-1111-1111-111111111111",
"type": "Microsoft.Sql/servers/operations",
"properties": {
"operation": "MakeAllLogicalDatabasesAccessible",
"operationFriendlyName": "MAKE ALL DBS ACCESSIBLE",
"percentComplete": 0,
"serverName": "sqlcrudtest-4645",
"startTime": "2017-06-01T09:10:08.1Z",
"state": "InProgress"
}
},
{
"id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-7398/providers/Microsoft.Sql/servers/sqlcrudtest-4645/operations/22222222-2222-2222-2222-222222222222",
"name": "22222222-2222-2222-2222-222222222222",
"type": "Microsoft.Sql/servers/operations",
"properties": {
"operation": "MakeAllLogicalDatabasesAccessible",
"operationFriendlyName": "MAKE ALL DBS ACCESSIBLE",
"percentComplete": 100,
"serverName": "sqlcrudtest-4645",
"startTime": "2017-06-01T09:00:08.1Z",
"state": "Succeeded"
}
}
]
}
定義
名前 | 説明 |
---|---|
Management |
操作の状態。 |
Server |
サーバー操作。 |
Server |
リスト サーバー操作要求への応答 |
ManagementOperationState
操作の状態。
名前 | 型 | 説明 |
---|---|---|
CancelInProgress |
string |
|
Cancelled |
string |
|
Failed |
string |
|
InProgress |
string |
|
Pending |
string |
|
Succeeded |
string |
ServerOperation
サーバー操作。
名前 | 型 | 説明 |
---|---|---|
id |
string |
リソースの ID |
name |
string |
リソース名。 |
properties.description |
string |
操作の説明。 |
properties.errorCode |
integer |
操作エラー コード。 |
properties.errorDescription |
string |
操作エラーの説明。 |
properties.errorSeverity |
integer |
操作エラーの重大度。 |
properties.estimatedCompletionTime |
string |
操作の推定完了時間。 |
properties.isCancellable |
boolean |
操作を取り消すことができるかどうか。 |
properties.isUserError |
boolean |
エラーがユーザー エラーかどうか。 |
properties.operation |
string |
操作の名前。 |
properties.operationFriendlyName |
string |
操作のフレンドリ名。 |
properties.percentComplete |
integer |
操作が完了した割合。 |
properties.serverName |
string |
サーバーの名前。 |
properties.startTime |
string |
操作の開始時刻。 |
properties.state |
操作の状態。 |
|
type |
string |
リソースの種類。 |
ServerOperationListResult
リスト サーバー操作要求への応答
名前 | 型 | 説明 |
---|---|---|
nextLink |
string |
結果の次のページを取得するためのリンク。 |
value |
結果の配列。 |