DESCRIBE OPENFLOW DATA PLANE INTEGRATION¶
Describes the columns in an Openflow data plane integration.
Syntax¶
{ DESC | DESCRIBE } OPENFLOW DATA PLANE INTEGRATION <name>
Parameters¶
name
The identifier for the openflow data plane integration to describe. If the identifier contains spaces or special characters, the entire string must be enclosed in double quotes. Identifiers enclosed in double quotes are also case-sensitive.
See SHOW OPENFLOW DATA PLANE INTEGRATIONS for openflow data plane integration details, including openflow data plane integration name.
Usage notes¶
Openflow data plane integrations cannot be created directly, but rather are created when a deployment is created.
To DESCRIBE an Openflow data plane integration, you must be using a role that has one of USAGE, MODIFY, or OWNERSHIP privilege on the data plane integration.
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.The output column names for this command are generated in lowercase. If you consume a result set from this command with the pipe operator or the RESULT_SCAN function, use double-quoted identifiers for the column names in the query to ensure that they match the column names in the output that was scanned. For example, if the name of an output column is
type
, then specify"type"
for the identifier.
Output¶
The command output provides properties and metadata for the Openflow data plane integration in the following columns:
Column |
Description |
|
True if enabled, otherwise false. |
|
URI used for OATH2 authentication. |
|
Internal identifier for the data plane integration. |
|
Fully qualified path to the <DATABASE>.<SCHEMA>.<EVENT TABLE NAME> is specified. |
|
Associated comment. |
Examples¶
Describe the columns in the Openflow data plane integration with the specified name:
DESC OPENFLOW DATA PLANE INTEGRATION edf6f909-d3ff-49d6-925f-xxxxx;
+-----------------------------------+----------------------------------+------------------+---------------+
| enabled | oath_redirect_uri | data_plane_id | event_table | comment |
+-----------------------------------+----------------------------------+------------------+---------------+
| true | https://... | edf6f909-d3ff-49d6-925f-xxxxx | | Example |
+-----------------------------------+----------------------------------+------------------+---------------+