工作流接口 -奇异果体育app竞彩官网下载
更新时间:2021-12-21
新建工作流接口
接口描述
创建工作流workflow。
请求(request)
- 请求语法:
post /v{version}/workflow http/1.1
x-bce-date: {utc-date-string}
host: bvw.bj.baidubce.com
content-type: application/json
authorization: {bce-authorization-string}
- 请求头域:无特殊header参数
- 请求参数:
字段名称 | 字段类型 | 是否必选 | 字段描述 |
---|---|---|---|
name | string | 必选 | 工作流名称 |
expression | 自定义dag类型 | 必选 | 工作流dag描述,工作流结构比较复杂,不建议通过api创建,建议使用console创建,所以这里不给出具体字段信息 |
- 请求示例:
post /v1/workflow http/1.1
x-bce-date: 2019-05-31t09:27:33z
host: bvw.bj.baidubce.com
content-type: application/json
authorization: bce-auth-v1/c0188830c0c342928f199bbbdac4c227/2019-05-31t09:27:33z/1800/host/f19dfaf46b9e6b619e9be203650701a2bec9db18a980686ddb3a3a58132558e1
{
"name": "workflowname",
"expression": {
"stages": {
"start": {
"name": "start",
"param": {
"input": "{\"autoprocess\":false}"
},
"type": "start"
},
"transcoding": {
"name": "transcoding",
"param": {
"input": "{\"job\":{\"pipelinename\":\"test_transcoding\",\"source\":{},\"target\":{\"presetname\":\"bvwtest\"}},\"needdetectblackboard\":false,\"adjustorientation\":\"all\"}"
},
"type": "transcoding"
},
"publish": {
"name": "publish",
"param": {
"input": "{\"autopublish\":true,\"domains\":{\"videoworks-target\":\"videoworks.baidu.com\"},\"notificationname\":\"notification\"}"
},
"type": "publish"
}
},
"dependencies": {
"start": [
"transcoding"
],
"transcoding": [
"publish"
],
"publish": []
}
}
}
响应(response)
- 响应头域:无特殊header参数
- 响应参数:无
- 响应示例:
http/1.1 200 ok
transfer-encoding: chunked
x-bce-request-id: ca8620b4-0527-4153-b6ed-3a6c0a4da937
cache-control: no-cache
server: bws
date: fri, 31 may 2019 09:27:33 gmt
content-type: application/json;charset=utf-8
删除工作流接口
接口描述
根据工作流名称删除指定工作流。
说明:只有没有被媒资处理使用的工作流才允许删除。
请求(request)
- 请求语法
delete /v{version}/workflow/{name} http/1.1
x-bce-date: {utc-date-string}
host: bvw.bj.baidubce.com
x-bce-request-id: {bce-request-id}
content-type: application/json
authorization: {bce-authorization-string}
- 请求头域:无特殊header参数
- 请求参数:无
- 请求示例:
delete /v1/workflow/{name} http/1.1
x-bce-date: 2015-07-03t09:28:13z
host: bvw.bj.baidubce.com
content-type: application/json
authorization: bce-auth-v1/e8e4a9ced6794355a9a1b8a20b58d37b/2015-07-03t09:28:13z/1800/content-type;host;x-date/4a1692dc4bab84f5801f79ea0c1fece3601cf73ecd94409d2a94b3942b971715
响应(response)
- 响应头域:无特殊header参数
- 响应参数:无
- 响应示例:
http/1.1 200 ok
x-bce-request-id: 6d0b0a36-2ffe-49d4-9d81-333a9ab9417e
date: tue, 24 mar 2015 13:06:02 gmt
transfer-encoding: chunked
content-type: application/json;charset=utf-8
cache-control: no-cache
更新工作流接口
接口描述
根据工作流名称更新指定工作流。
说明:只有没有被媒资处理使用的工作流才允许更新。
请求(request)
- 请求语法
put /v{version}/workflow/{name} http/1.1
x-bce-date: {utc-date-string}
host: bvw.bj.baidubce.com
content-type: application/json
authorization: {bce-authorization-string}
- 请求头域:无特殊header参数
- 请求参数:
字段名称 | 字段类型 | 必要性 | 字段描述 |
---|---|---|---|
expression | 自定义dag类型 | 必选 | 工作流dag描述,工作流结构比较复杂,不建议通过api更新,建议使用console更新,所以这里不给出具体字段信息 |
- 请求示例:
put /v1/workflow/{name} http/1.1
x-bce-date: 2015-07-03t09:28:13z
host: bvw.bj.baidubce.com
content-type: application/json
authorization: bce-auth-v1/e8e4a9ced6794355a9a1b8a20b58d37b/2015-07-03t09:28:13z/1800/content-type;host;x-date/4a1692dc4bab84f5801f79ea0c1fece3601cf73ecd94409d2a94b3942b971715
{
"expression": {
"stages":
"start": {
"name": "start",
"param": {
"input": "{\"autoprocess\":false}"
},
"type": "start"
},
"transcoding": {
"name": "transcoding",
"param": {
"input": "{\"job\":{\"pipelinename\":\"test_transcoding\",\"source\":{},\"target\":{\"presetname\":\"bvwtest\"}},\"needdetectblackboard\":false,\"adjustorientation\":\"all\"}"
},
"type": "transcoding"
},
"publish": {
"name": "publish",
"param": {
"input": "{\"autopublish\":true,\"domains\":{\"videoworks-target\":\"videoworks.baidu.com\"},\"notificationname\":\"notification\"}"
},
"type": "publish"
}
},
"dependencies": {
"start": [
"transcoding"
],
"transcoding": [
"publish"
],
"publish": []
}
}
}
响应(response)
- 响应头域:无特殊header参数
- 响应参数:无
- 响应示例:
http/1.1 200 ok
x-bce-request-id: 6d0b0a36-2ffe-49d4-9d81-333a9ab9417e
date: tue, 24 mar 2015 13:06:02 gmt
transfer-encoding: chunked
content-type: application/json;charset=utf-8
cache-control: no-cache
工作流查询接口
接口描述
根据工作流名称查询指定工作流。
请求(request)
- 请求语法
get /v{version}/workflow/{name} http/1.1
x-bce-date: {utc-date-string}
host: bvw.bj.baidubce.com
content-type: application/json
authorization: {bce-authorization-string}
- 请求头域:无特殊header参数
- 请求参数:无
- 请求示例:
get /v1/workflow/{name} http/1.1
x-bce-date: 2015-07-03t09:28:13z
host: bvw.bj.baidubce.com
content-type: application/json
authorization: bce-auth-v1/e8e4a9ced6794355a9a1b8a20b58d37b/2015-07-03t09:28:13z/1800/content-type;host;x-date/4a1692dc4bab84f5801f79ea0c1fece3601cf73ecd94409d2a94b3942b971715
响应(response)
- 响应头域:无特殊header参数
- 响应参数:
字段名称 | 字段类型 | 字段描述 |
---|---|---|
workflowid | string | 系统生成的工作流id |
name | string | 工作流名称 |
status | object | 状态,状态值:normal/disable |
expression | string | 工作流描述 |
createtime | string | 工作流创建时间 |
updatetime | string | 工作流更新时间 |
- 响应示例:
http/1.1 200 ok
x-bce-request-id: 6d0b0a36-2ffe-49d4-9d81-333a9ab9417e
date: tue, 24 mar 2015 13:06:02 gmt
transfer-encoding: chunked
content-type: application/json;charset=utf-8
cache-control: no-cache
{
"workflowid": "wfs-jf1m7xdkjrzj3uir",
"name": "thumbnail_jpg",
"status": "normal",
"expression": "{\"stages\":{\"thumbnail\":{\"stageid\":\"stg-jf1m0ty6bxktszv3\",\"name\":\"thumbnail\",\"param\":{\"input\":\"{\\\"job\\\":{\\\"pipelinename\\\":\\\"test_thumbnail\\\",\\\"source\\\":{},\\\"target\\\":{\\\"format\\\":\\\"jpg\\\",\\\"sizingpolicy\\\":\\\"keep\\\",\\\"widthinpixel\\\":600,\\\"heightinpixel\\\":450},\\\"capture\\\":{\\\"mode\\\":\\\"auto\\\"}}}\"},\"type\":\"thumbnail\"},\"publish\":{\"stageid\":\"stg-jf1mansrr8vqbf2n\",\"name\":\"publish\",\"param\":{\"input\":\"{\\\"autopublish\\\":true,\\\"domains\\\":{\\\"videoworks-target\\\":\\\"videoworks.baidu.com\\\"},\\\"notificationname\\\":\\\"notification\\\"}\"},\"type\":\"publish\"},\"start\":{\"stageid\":\"stg-jf1mr49yi8f4392h\",\"name\":\"start\",\"param\":{\"input\":\"{\\\"autoprocess\\\":false}\"},\"type\":\"start\"}},\"dependencies\":{\"thumbnail\":[\"publish\"],\"publish\":[],\"start\":[\"thumbnail\"]}}",
"createtime": "2019-06-26t03:06:29z",
"updatetime": "2019-06-26t03:06:29z"
}
查询工作流列表接口
接口描述
查询工作流列表。
请求(request)
- 请求语法
get /v{version}/workflow?pageno={pageno}&pagesize={pagesize}&status=normal http/1.1
x-bce-date: {utc-date-string}
host: bvw.bj.baidubce.com
content-type: application/json
authorization: {bce-authorization-string}
- 请求头域:无特殊header参数
- 请求参数:
字段名称 | 字段类型 | 必要性 | 字段描述 |
---|---|---|---|
pageno | integer | 必选 | 第几页,默认第一页 |
pagesize | integer | 必选 | 每页多少条,最大1000 |
status | string | 可选 | 媒资状态,状态值:nomal/disable |
name | string | 可选 | 工作流名称 |
begintime | date | 可选 | 创建时间下限 |
endtime | date | 可选 | 创建时间上限 |
- 请求示例:
get /v1/workflow?pageno=1&pagesize=10 http/1.1
x-bce-date: 2015-07-03t09:28:13z
host: bvw.bj.baidubce.com
content-type: application/json
authorization: bce-auth-v1/e8e4a9ced6794355a9a1b8a20b58d37b/2015-07-03t09:28:13z/1800/content-type;host;x-date/4a1692dc4bab84f5801f79ea0c1fece3601cf73ecd94409d2a94b3942b971715
响应(response)
- 响应头域:无特殊header参数
- 响应参数:
字段名称 | 字段类型 | 字段描述 |
---|---|---|
workflowid | string | 系统生成的工作流id |
name | string | 工作流名称 |
status | object | 状态,状态值:normal/disable |
expression | string | 工作流描述 |
createtime | string | 工作流创建时间 |
updatetime | string | 工作流更新时间 |
using | boolean | 工作流是否被使用 |
- 响应示例:
http/1.1 200 ok
x-bce-request-id: 6d0b0a36-2ffe-49d4-9d81-333a9ab9417e
date: tue, 24 mar 2015 13:06:02 gmt
transfer-encoding: chunked
content-type: application/json;charset=utf-8
cache-control: no-cache
{
"data": [
{
"workflowid": "wfs-jgrjy6vhtm2tzxj8",
"name": "wf716",
"status": "normal",
"expression": "{\"stages\":{\"发布\":{\"stageid\":\"stg-jgrjiurs6gspddad\",\"name\":\"发布\",\"param\":{\"input\":\"{}\"},\"type\":\"publish\"},\"输入\":{\"stageid\":\"stg-jgrj8g365hu251jd\",\"name\":\"输入\",\"param\":{\"input\":\"{}\"},\"type\":\"start\"}},\"dependencies\":{\"输入\":[\"发布\"],\"发布\":[]}}",
"createtime": "2019-07-16t09:57:30z",
"updatetime": "2019-07-26t11:05:49z",
"using": true
}
],
"pageno": 1,
"pagesize": 10,
"totalcount": 1
}
启用工作流接口
接口描述
启用工作流。
请求(request)
- 请求语法
put /v{version}/workflow/{name}?enable http/1.1
x-bce-date: {utc-date-string}
host: bvw.bj.baidubce.com
content-type: application/json
authorization: {bce-authorization-string}
- 请求头域:无特殊header参数
- 请求参数:无
- 请求示例:
put /v1/workflow/wf716?enable http/1.1
x-bce-date: 2015-07-03t09:28:13z
host: bvw.bj.baidubce.com
content-type: application/json
authorization: bce-auth-v1/e8e4a9ced6794355a9a1b8a20b58d37b/2015-07-03t09:28:13z/1800/content-type;host;x-date/4a1692dc4bab84f5801f79ea0c1fece3601cf73ecd94409d2a94b3942b971715
响应(response)
- 响应头域:无特殊header参数
- 响应参数:工作流名称列表
- 响应示例:
http/1.1 200 ok
x-bce-request-id: 6d0b0a36-2ffe-49d4-9d81-333a9ab9417e
date: tue, 24 mar 2015 13:06:02 gmt
transfer-encoding: chunked
content-type: application/json;charset=utf-8
cache-control: no-cache
禁用工作流接口
接口描述
禁用工作流。
请求(request)
- 请求语法
put /v{version}/workflow/{name}?disable http/1.1
x-bce-date: {utc-date-string}
host: bvw.bj.baidubce.com
content-type: application/json
authorization: {bce-authorization-string}
- 请求头域:无特殊header参数
- 请求参数:无
- 请求示例:
put /v1/workflow/wf716?disable http/1.1
x-bce-date: 2015-07-03t09:28:13z
host: bvw.bj.baidubce.com
content-type: application/json
authorization: bce-auth-v1/e8e4a9ced6794355a9a1b8a20b58d37b/2015-07-03t09:28:13z/1800/content-type;host;x-date/4a1692dc4bab84f5801f79ea0c1fece3601cf73ecd94409d2a94b3942b971715
响应(response)
- 响应头域:无特殊header参数
- 响应参数:工作流名称列表
- 响应示例:
http/1.1 200 ok
x-bce-request-id: 6d0b0a36-2ffe-49d4-9d81-333a9ab9417e
date: tue, 24 mar 2015 13:06:02 gmt
transfer-encoding: chunked
content-type: application/json;charset=utf-8
cache-control: no-cache