你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

Model - Patch Closed List

将一批子列表添加到应用程序版本中的现有列表实体。

PATCH {Endpoint}/luis/api/v2.0/apps/{appId}/versions/{versionId}/closedlists/{clEntityId}

URI 参数

名称 必需 类型 说明
appId
path True

string (uuid)

应用程序 ID。

clEntityId
path True

string (uuid)

列表实体模型 ID。

Endpoint
path True

string

支持的认知服务终结点(协议和主机名,例如:https://westus.api.cognitive.microsoft.com)。

versionId
path True

string

版本 ID。

请求头

名称 必需 类型 说明
Ocp-Apim-Subscription-Key True

string

请求正文

名称 类型 说明
subLists

WordListObject[]

要添加的子列表。

响应

名称 类型 说明
200 OK

OperationStatus

已成功将子列表添加到列表实体。

Other Status Codes

ErrorResponse

错误响应。

安全性

Ocp-Apim-Subscription-Key

类型: apiKey
在: header

示例

Successful Add SubLists to Closed List Entity request

示例请求

PATCH {Endpoint}/luis/api/v2.0/apps/86226c53-b7a6-416f-876b-226b2b5ab07b/versions/0.1/closedlists/d1f95436-57ac-4524-ae81-5bdd32668ccf


{
  "subLists": [
    {
      "canonicalForm": "Texas",
      "list": [
        "tx",
        "texas"
      ]
    }
  ]
}

示例响应

{
  "code": "Success",
  "message": "Operation Successful"
}

定义

名称 说明
ClosedListModelPatchObject

用于将一批子列表添加到现有列表实体的对象模型。

ErrorResponse

调用 API 上的作时出现错误响应。

OperationStatus

作状态的响应。

OperationStatusType

状态代码。

WordListObject

列表实体的项的子列表。

ClosedListModelPatchObject

用于将一批子列表添加到现有列表实体的对象模型。

名称 类型 说明
subLists

WordListObject[]

要添加的子列表。

ErrorResponse

调用 API 上的作时出现错误响应。

名称 类型 说明
errorType

string

OperationStatus

作状态的响应。

名称 类型 说明
code

OperationStatusType

状态代码。

message

string

状态详细信息。

OperationStatusType

状态代码。

说明
Failed
FAILED
Success

WordListObject

列表实体的项的子列表。

名称 类型 说明
canonicalForm

string

列表表示的标准窗体。

list

string[]

同义词列表。