DESCRIBE OPENFLOW DATA PLANE INTEGRATION

描述 Openflow 数据平面集成中的列。

另请参阅:

ALTER OPENFLOW DATA PLANESHOW OPENFLOW DATA PLANE INTEGRATIONS

语法

{ DESC | DESCRIBE } OPENFLOW DATA PLANE INTEGRATION <name>
Copy

参数

name

要描述的 Openflow 数据平面集成的标识符。如果标识符包含空格或特殊字符,则整个字符串必须放在双引号内。放在双引号内的标识符也区分大小写。

请参阅 SHOW OPENFLOW DATA PLANE INTEGRATIONS 以了解有关 Openflow 数据平面集成的详细信息,包括 Openflow 数据平面集成 名称

使用说明

  • Openflow 数据平面集成不能直接创建,而是在创建部署时创建。

  • 要 DESCRIBE Openflow 数据平面集成,您必须使用具有以下权限之一的角色:USAGE、MODIFY 或 OWNERSHIP。

  • 要对该命令的输出进行后处理,可以使用 管道运算符 (->>) 或 RESULT_SCAN 函数。这两种构造都将输出视为可以查询的结果集。

    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, specify SELECT "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.

输出

命令输出在以下列中提供 Openflow 数据平面集成属性和元数据:

描述

enabled

如果已启用,则为 True,否则为 False。

oauth_redirect_uri

URI 用于 OATH2 身份验证。

data_plane_id

数据平面集成的内部标识符。

event_table

指定 <DATABASE>.<SCHEMA>.<EVENT TABLE NAME> 的完全限定路径。

comment

关联的注释。

示例

使用指定名称描述 Openflow 数据平面集成中的列:

DESC OPENFLOW DATA PLANE INTEGRATION edf6f909-d3ff-49d6-925f-xxxxx;
Copy
+-----------------------------------+----------------------------------+------------------+---------------+
|   enabled  |   oath_redirect_uri  |   data_plane_id                  |   event_table    |   comment     |
+-----------------------------------+----------------------------------+------------------+---------------+
|   true     |   https://...        |   edf6f909-d3ff-49d6-925f-xxxxx  |                  |   Example     |
+-----------------------------------+----------------------------------+------------------+---------------+
语言: 中文