DROP SECURITY INTEGRATION

Syntax

DROP SECURITY INTEGRATION security_integration_name;

Description

Drops a Security Integration from the organization. A security integration can only be dropped by the Role with MANAGE_MEMBERS privilege.

Arguments

security_integration_name

Specifies the name of the new Security Integration. For case-sensitive names, the name must be wrapped in double quotes, otherwise, the lowercased name will be used.

Examples

Drop a Security Integration

The following drops the Security Integration named okta:

<no-db>/<no-store># LIST SECURITY INTEGRATIONS;
+-------+-------+-------------------------------+-------------------------------+
|  Name |  Type |  Created At                   |  Updated At                   |
+=======+=======+===============================+===============================+
| okta  | scim  | 2024-07-15 23:17:14 +0000 UTC | 2024-07-15 23:17:14 +0000 UTC |
+-------+-------+-------------------------------+-------------------------------+
<no-db>/<no-store># DROP SECURITY INTEGRATION "okta";
+----------------------+------------+------------+------------------------------------------+
|  Type                |  Name      |  Command   |  Summary                                 |
+======================+============+============+==========================================+
| security integration | okta       | DROP       | security integration okta was            |
|                      |            |            | successfully dropped                     |
+----------------------+------------+------------+------------------------------------------+

Last updated