接口功能介绍
查询链路质量评分
接口约束
输入参数名称类长度不超过64位,描述类长度不超过128位
URI
GET /v4/sdwan/query-link-quality-weight
路径参数
无
Query参数
无
请求参数
请求header参数
无
请求body参数
无
响应参数
参数 | 是否必填 | 参数类型 | 说明 | 示例 | 下级对象 |
---|---|---|---|---|---|
statusCode | 否 | Integer | 返回状态码('800为成功,900为失败),默认值:800 | 800 | |
errorCode | 否 | String | 业务细分码,为product.module.code三段式码 | ||
message | 否 | String | 失败时的错误描述,一般为英文描述 | ||
description | 否 | String | 失败时的错误描述,一般为中文描述 | ||
returnObj | 否 | Object | 返回参数 | returnObj |
表returnObj
参数 | 是否必填 | 参数类型 | 说明 | 示例 | 下级对象 |
---|---|---|---|---|---|
result | 否 | Object | 链路质量参数 | result | |
totalCount | 否 | Integer | 总数量 | 1 | |
currentCount | 否 | Integer | 当前页数量 | 1 |
表result
参数 | 是否必填 | 参数类型 | 说明 | 示例 | 下级对象 |
---|---|---|---|---|---|
delay | 否 | String | 时延权重(delay,jitter,loss三者相加为100) | 40 | |
jitter | 否 | String | 抖动权重(delay,jitter,loss三者相加为100) | 30 | |
loss | 否 | String | 丢包率权重(delay,jitter,loss三者相加为100) | 30 | |
tenantID | 否 | String | 租户ID | be012e8f-ea32-4a2c-89da-7db35eedb334 | |
detectWindow | 否 | String | 探测窗口 | 60 | |
detectInterval | 否 | String | 探测间隔 | 300 |
请求示例
请求url
/v4/sdwan/query-link-quality-weight
请求头header
无
请求体body
无
响应示例
{
"statusCode": 800,
"returnObj": {
"result": {
"delay": "40",
"jitter": "30",
"loss": "30",
"tenantID": "be012e8f-ea32-4a2c-89da-7db35eedb334",
"detectWindow": "60",
"detectInterval": "300"
},
"totalCount": 1,
"currentCount": 1
},
"errorCode": "",
"message": "",
"description": ""
}
状态码
状态码 | 含义 |
---|---|
200 | 请求成功 |
错误码
errorCode | 含义 |
---|---|
Openapi.PatternCheck.NotValid | 请求参数无效 |
LinkDetect.SdwanSdwan.AccessFailed | 内部错误,请重试。如果多次尝试失败,请提交工单 |