你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
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 |
结果数组。 |