DESCRIBE NETWORK POLICY¶
描述为网络策略指定的属性。
DESCRIBE 可以缩写为 DESC。
语法¶
DESC[RIBE] NETWORK POLICY <name>
参数¶
name指定要描述的网络策略的标识符。如果标识符包含空格或特殊字符,则整个字符串必须放在双引号内。放在双引号内的标识符也区分大小写。
使用说明¶
只有网络策略所有者(即具有网络策略 OWNERSHIP 权限的角色)或更高级别的角色才能执行此命令。
To post-process the output of this command, you can use the pipe operator (
->>) or the RESULT_SCAN function. Both constructs treat the output as a result set that you can query.For example, you can use the pipe operator or RESULT_SCAN function to select specific columns from the SHOW command output or filter the rows.
When you refer to the output columns, use double-quoted identifiers for the column names. For example, to select the output column
type, specifySELECT "type".You must use double-quoted identifiers because the output column names for SHOW commands are in lowercase. The double quotes ensure that the column names in the SELECT list or WHERE clause match the column names in the SHOW command output that was scanned.
示例¶
描述名为 mypolicy 的网络策略:
DESC NETWORK POLICY mypolicy;-----------------+---------------+ name | value | -----------------+---------------+ ALLOWED_IP_LIST | 192.168.0.100 | BLOCKED_IP_LIST | 192.168.0.101 | -----------------+---------------+