查询指定CFW策略
更新时间:2022-04-25
描述
查询指定CFW策略的详情信息。
请求结构
GET /v{version}/cfw/{cfwId} HTTP/1.1
Host: cfw.baidubce.com
Authorization: authorization string
请求头域
除公共头域外,无其它特殊头域。
请求参数
参数名称 | 类型 | 是否必选 | 参数位置 | 描述 |
---|---|---|---|---|
version | String | 是 | URL参数 | API版本号 |
cfwId | String | 是 | URL参数 | CFW的id |
返回头域
除公共头域,无其它特殊头域。
返回参数
参数名称 | 类型 | 描述 |
---|---|---|
cfwId | String | CFW的id |
name | String | CFW的名称 |
description | String | CFW的描述 |
createdTime | Date | CFW的创建时间,标准UTC时间 |
bindInstanceNum | Integet | CFW绑定实例的数量 |
cfwRules | List<CfwRule> | CFW规则 |
请求示例
GET /v1/cfw/cfw-29tvzwxxtihw HTTP/1.1
Host: cfw.baidubce.com
Authorization: authorization string
返回示例
HTTP/1.1 200 OK
x-bce-request-id: 1214cca7 4ad5 451d 9215 71cb844c0a50
Date: Thu, 16 Mar 2022 06:29:48 GMT
Server: BWS
{
"name": "cfw_1",
"cfwId": "cfw-29tvzwxxtihw",
"createdTime": "2021-10-22T08:51:06Z",
"bindInstanceNum": 2,
"description":"test",
"cfwRules": [
{
"cfwId": "cfw-29tvzwxxtihw",
"cfwRuleId": "cfwr-zraj9vr149gq",
"ipVersion": 4,
"priority": 1,
"protocol": "TCP",
"direction": "in",
"sourceAddress": "0.0.0.0/0",
"destAddress": "0.0.0.0/0",
"sourcePort": "0-65535",
"destPort": "0-65535",
"action": "allow",
"description":"cfw_desc"
}
]
}