查询所有网络ACL组
功能介绍
查询提交请求的租户有权限操作的所有网络ACL组信息。
URI
GET /v2.0/fwaas/firewall_groups
分页查询样例:
GET https://{Endpoint}/v2.0/fwaas/firewall_groups?limit=2&marker=cd600d47-0045-483f-87a1-5041ae2f513b&page_reverse=False
参数说明请参见表1。
名称 |
是否必选 |
参数类型 |
说明 |
---|---|---|---|
id |
否 |
String |
按照网络ACL组对应的ID过滤查询 |
name |
否 |
String |
按照网络ACL组的名称过滤查询 |
description |
否 |
String |
按照网络ACL组的描述过滤查询 |
admin_state_up |
否 |
Booleab |
按照网络ACL组的管理状态过滤查询 取值范围:true or false |
tenant_id |
否 |
String |
按照网络ACL组所属的项目ID过滤查询 |
marker |
否 |
String |
分页查询起始的资源ID,为空时为查询第一页 |
limit |
否 |
Integer |
每页返回的个数 取值范围:0~intmax |
请求消息
无。
响应消息
参数名称 |
类型 |
说明 |
---|---|---|
firewall_groups |
Array of Firewall Group objects |
firewall group对象列表。请参见表3。 |
firewall_groups_links |
Array of firewall_groups_link objects |
firewall_groups_link对象列表。请参见表4。 |
属性 |
类型 |
说明 |
---|---|---|
id |
String |
网络ACL组的uuid标识。 |
name |
String |
网络ACL组名称。 |
description |
String |
网络ACL组描述。 |
tenant_id |
String |
项目ID |
ingress_firewall_policy_id |
String |
入方向网络ACL策略。 |
egress_firewall_policy_id |
String |
出方向网络ACL策略。 |
ports |
Array of strings |
网络ACL组绑定的端口列表。 |
public |
Boolean |
是否支持跨租户共享。 |
status |
String |
网络ACL策略的状态。 |
admin_state_up |
Boolean |
网络ACL是否受管理员控制。 |
project_id |
String |
项目ID,请参见获取项目ID。 |
created_at |
String |
资源创建时间,UTC时间 格式:yyyy-MM-ddTHH:mm:ss |
updated_at |
String |
资源更新时间,UTC时间 格式:yyyy-MM-ddTHH:mm:ss |
样例
请求样例
GET https://{Endpoint}/v2.0/fwaas/firewall_groups
响应样例
{ "firewall_groups": [ { "status": "INACTIVE", "public": false, "egress_firewall_policy_id": null, "name": "", "admin_state_up": true, "ports": [ ], "tenant_id": "23c8a121505047b6869edf39f3062712", "id": "cd600d47-0045-483f-87a1-5041ae2f513b", "ingress_firewall_policy_id": null, "description": "", "project_id": "23c8a121505047b6869edf39f3062712", "created_at": "2018-09-12T08:24:14", "updated_at": "2018-09-12T08:24:14" }, { "status": "INACTIVE", "public": false, "egress_firewall_policy_id": "d939df29-fe76-4089-90c3-3778e4d53141", "name": "fwg-1475475043", "admin_state_up": true, "ports": [ ], "tenant_id": "0af57070695044ea9a70f04779e6aa1f", "id": "ca971b45-70ce-4879-9734-b6cac1d00845", "ingress_firewall_policy_id": "d939df29-fe76-4089-90c3-3778e4d53141", "description": "", "project_id": "0af57070695044ea9a70f04779e6aa1f", "created_at": "2018-09-12T08:24:14", "updated_at": "2018-09-12T08:24:14" } ] }
状态码
请参见状态码。
错误码
请参见错误码。