功能描述
UpdateDocProcessQueue 接口用于更新文档转码队列。
授权说明
服务开通
使用该功能需提前开通数据万象,并绑定存储桶。详情请参见 绑定存储桶。
使用该功能需提前通过控制台或接口开通文档处理服务 。详情请参见 开通文档处理服务。
使用限制
请求
请求示例
PUT /docqueue/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 | Container |
错误码
实际案例
请求
PUT /docqueue/p2505d57bdf4c4329804b58a6a5fb1572 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: 279Authorization: Authorization<?xml version="1.0" encoding="UTF-8" ?><Request><QueueId>p2505d57bdf4c4329804b58a6a5fb1572</QueueId><State>Active</State><Name>markjrzhang4</Name><NotifyConfig><Url>http://google.com/</Url><State>On</State><Type>Url</Type><Event>TransCodingFinish</Event></NotifyConfig></Request>[!http]
响应
HTTP/1.1 200 OKDate: Mon, 27 Jul 2020 08:22:41 GMTContent-Type: application/xmlContent-Length: 641Connection: keep-aliveServer: tencent-cix-ci-request-id: NWYxZThlZDBfYzc2OTQzNjRfMzUxYV8x****<?xml version="1.0" encoding="utf-8"?><Response><RequestId>NWYxZThlZDBfYzc2OTQzNjRfMzUxYV8x****</RequestId><Queue><QueueId>p2505d57bdf4c4329804b58a6a5fb1572</QueueId><Name>markjrzhang4</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-07-24T22:42:27+0800</CreateTime><UpdateTime>2020-07-27T16:22:40+0800</UpdateTime><BucketId>test007-1251704708</BucketId><Category>DocProcessing</Category></Queue></Response>