功能描述
UpdateSpeechQueue 接口用于更新语音识别队列。
请求
请求示例
PUT /asrqueue/p8eb46b8cc1a94bc09512d16c5c4f4d3a HTTP/1.1Host: <BucketName-APPID>.ci.<Region>.myqcloud.comDate: <GMT Date>Authorization: <Auth String>Content-Length: <length>Content-Type: application/xml<body>
请求头
请求体
该请求操作的实现需要有以下请求体。
<Request><Name>Queue Name</Name><QueueID></QueueID><State></State><NotifyConfig><Type></Type><Url></Url><Event></Event></NotifyConfig></Request>
具体数据描述如下:
节点名称(关键字) | 父节点 | 描述 | 类型 | 是否必选 |
Request | 无 | 保存请求的容器 | Container | 是 |
Container 类型 Request 的具体数据描述如下:
节点名称(关键字) | 父节点 | 描述 | 类型 | 是否必选 | 限制 |
Name | Request | 模板名称 | String | 是 | 长度限制100字符 |
QueueID | Request | 管道 ID | String | 是 | - |
State | Request | 管道状态 | String | 是 | 1. Active 表示管道内的作业会被语音识别服务调度执行 2. Paused 表示管道暂停,作业不再会被语音识别服务调度执行,管道内的所有作业状态维持在已提交状态,已经处于识别中的任务将继续执行,不受影响 |
NotifyConfig | Request | 通知渠道 | Container | 是 | 第三方回调 Url |
Container 类型 NotifyConfig 的具体数据描述如下:
节点名称(关键字) | 父节点 | 描述 | 类型 | 是否必选 | 限制 |
Url | Request.NotifyConfig | 回调配置 | String | 否 | 长度限制100字符 |
Type | Request.NotifyConfig | 回调类型,普通回调:Url | String | 否 | 长度限制100字符 |
Event | Request.NotifyConfig | 回调事件 | String | 否 | 长度限制100字符 |
State | Request.NotifyConfig | 回调开关,Off,On | String | 否 | 长度限制100字符 |
响应
响应头
响应体
该响应体返回为 application/xml 数据,包含完整节点数据的内容展示如下:
<Response><RequestId>NTk0MjdmODlfMjQ4OGY3XzYzYzhf****</RequestId><Queue><QueueId></QueueId><Name></Name><State>Active</State><NotifyConfig><Url>mts-topic-1</Url><Type></Type><Event></Event></NotifyConfig><CreateTime></CreateTime><UpdateTime></UpdateTime></Queue></Response>
具体的数据内容如下:
节点名称(关键字) | 父节点 | 描述 | 类型 |
Response | 无 | 保存结果的容器 | Container |
Container 节点 Response 的内容:
节点名称(关键字) | 父节点 | 描述 | 类型 |
RequestId | Response | 请求的唯一 ID | String |
Queue | Response | 队列信息,详情同 DescribeSpeechQueues 接口中的 Response.QueueList 节点 | Container |
错误码
实际案例
请求:更新语音识别队列
PUT /asrqueue/pd0a7e02988c24db88b61551cf540444c HTTP/1.1Connection: keep-aliveAccept-Encoding: gzip, deflateAccept: */*User-Agent: cos-python-sdk-v5.3.2Host: examplebucket-1250000000.ci.ap-chongqing.myqcloud.comContent-Type: application/xmlContent-Length: 271Authorization: q-sign-algorithm=sha1&q-ak=AKIDnOr9IDiIUNYWGrrWb2IJ4YmywDXc****&q-sign-time=1597917374;1597927434&q-key-time=1597917374;1597927434&q-header-list=content-type;host&q-url-param-list=&q-signature=670ce7355f265cb0792c00e490a205975856****<?xml version="1.0" encoding="utf-8"?><Request><QueueId>p5275b560c7fd498db9a36e5e202827b6</QueueId><State>Active</State><Name>test</Name><NotifyConfig><Url>http://example.com/</Url><State>On</State><Type>Url</Type><Event>TransCodingFinish</Event></NotifyConfig></Request>
响应
HTTP/1.1 200 OKDate: Thu, 20 Aug 2020 09:53:02 GMTContent-Type: application/xmlContent-Length: 674Connection: keep-aliveServer: tencent-cix-ci-request-id: NWYzZTQ3ZmRfOTBmYTUwNjRfMjJh****<Response><RequestId>NWYzZTQ5NTdfZWM0YTYyNjRfNWE4ZF9l****</RequestId><Queue><QueueId>p5275b560c7fd498db9a36e5e202827b6</QueueId><Name>test</Name><State>Active</State><NotifyConfig><Url>http://example.com/</Url><Event>TransCodingFinish</Event><Type>Url</Type><State>On</State></NotifyConfig><MaxSize>10000</MaxSize><MaxConcurrent>10</MaxConcurrent><CreateTime>2020-06-29T16:55:04+0800</CreateTime><UpdateTime>2020-08-20T17:58:47+0800</UpdateTime><BucketId>examplebucket-1250000000</BucketId><Category>Speeching</Category></Queue></Response>