验证托管服务器

 

适用于:Windows Azure Pack

验证服务器组中的托管服务器。

请求

将 ServiceMgmt> 替换为<服务管理 API 终结点地址。

方法

请求 URI

HTTP 版本

POST

<https:// ServiceMgmt>:30004/services/sqlservers/serverGroups/<GroupId>/hostingServers

HTTP/1.1

URI 参数

下表描述了 URI 参数。

URI 参数

说明

验证

必需。 设置为 True 以开始验证。

请求标头

下表介绍必需的和可选的请求标头。

请求标头

说明

授权:持有者

必需。 授权持有者令牌。

x-ms-principal-id

必需。 主体标识符。

x-ms-client-request-id

可选。 客户端请求标识符。

x-ms-client-session-id

可选。 客户端会话标识符。

x-ms-principal-liveid

可选。 主体 Live 标识符。

请求正文

下表说明了请求正文的元素。

元素名称

说明

HostingServer

要验证的宿主服务器。 有关详细信息,请参阅 HostingServer (Object)

响应

响应包括 HTTP 状态代码、一组响应标头和响应正文。

状态代码

此操作成功后返回状态代码 200(正常)。

响应标头

此操作的响应包括标准 HTTP 标头。 所有标准标头都符合 HTTP/1.1 协议规范

响应正文

下表介绍了响应正文中的主要元素:

元素名称

说明

HostingServer

经过验证的托管服务器。 有关详细信息,请参阅 HostingServer (Object)

示例

下面的代码示例演示 了验证宿主服务器 请求。

POST https://:30004/services/sqlservers/serverGroups//hostingServers?Validate=True HTTP/1.1
x-ms-version: 2012-03-01
Accept: application/json
Authorization: Bearer 
x-ms-principal-id: %5cAdministrator
Accept-Language: es-ES
Content-Type: application/json; charset=utf-8
Host: :30004
Content-Length: 289
Expect: 100-continue

{
  "Name": "<computer>",
  "ServerId": null,
  "Created": "0001-01-01T00:00:00+00:00",
  "AvailableSpaceMB": 0,
  "TotalSpaceMB": 0,
  "AvailabilityGroup": null,
  "DatabaseCount": 0,
  "State": null,
  "ServerGroups": [

  ],
  "ConnectionString": "Data Source=<computer>;User ID=sa;Password=pass@word1;Asynchronous Processing=True"
}

下面的代码示例演示 了验证宿主服务器 响应。

{
  "Name": ""<computer>",
  "ServerId": null,
  "Created": "0001-01-01T00:00:00+00:00",
  "AvailableSpaceMB": 0,
  "TotalSpaceMB": 0,
  "AvailabilityGroup": null,
  "DatabaseCount": 0,
  "State": null,
  "ServerGroups": [

  ],
  "ConnectionString": "Data Source="<computer>;User ID=sa;Password=********;Asynchronous Processing=True"
}

另请参阅

SQL Server资源提供程序管理员托管服务器接口