接口描述:查询lua脚本预部署环境的编译信息。
请求方式:post
请求路径:/icdn/udf-script/query-udf-script-compile-result
使用说明:单个用户一分钟限制调用10000次,并发不超过100。
请求参数说明(json):
参数 | 是否必填 | 参数类型 | 说明 | 示例 | 下级对象 |
---|---|---|---|---|---|
domain | 是 | String | 域名必须属于当前用户且合法有效 | ctyun.cn | |
script_name | 是 | String | 为2-64位的小写字母、数字、下划线组合,以小写字母、数字开头结尾 | lua_test |
返回参数说明:
参数 | 参数类型 | 说明 | 示例 | 下级对象 |
---|---|---|---|---|
statusCode | Integer | 状态码 | 100000 | |
returnObj | Object | 返回对象 | - | returnObj |
message | String | 结果简述 | 正确返回/参数不合法 | |
error | String | 错误码 | CDN_200002 | |
errorMessage | String | 错误详情 | 请求参数校验失败,参数domain为必填,且不能为空 |
表 returnObj
参数 | 参数类型 | 说明 | 示例 | 下级对象 |
---|---|---|---|---|
compiled_result | Array of Objects | 返回结果数组 | - | compiled_result |
表 compiled_result
参数 | 参数类型 | 说明 | 示例 | 下级对象 |
---|---|---|---|---|
info | String | 编译结果 | success | |
time | String | 编译完成时间 | 2022-11-04T18:49:31+08:00 | |
rip | String | 下发机器 | 1.1.10.0 |
示例:
请求路径:https://cdnapi-global.ctapi.ctyun.cn/icdn/udf-script/query-udf-script-compile-result
请求参数:
{
"domain":"ctyun.cn",
"script_name":"lua_test"
}
返回结果:
{
"statusCode": 100000,
"message": "正确返回",
"returnObj": {
"compiled_result": [
{
"info": "success",
"time": "2022-11-04T18:49:31+08:00",
"rip": "1.1.10.0"
},
{
"info": "success",
"time": "2022-11-04T19:05:43+08:00",
"rip": "1.1.158.0"
},
{
"info": "success",
"time": "2023-04-04T14:21:50+08:00",
"rip": "1.11.185.45"
}
]
}
}
错误码请参考:参数code和message含义