SHOW STORAGE CONNECTIONS

Overview

Lists all Storage Connections (object storage connection configurations) in the current instance, including OSS, S3, COS, and other types.

Syntax

SHOW STORAGE CONNECTIONS [ LIKE '<pattern>' ]

Parameters

LIKE '<pattern>': Optional. Filters results by name. Supports % (matches any sequence of characters) and _ (matches a single character) wildcards.

Return Columns

ColumnTypeDescription
nameSTRINGStorage Connection name
categorySTRINGAlways STORAGE
typeSTRINGStorage type: OSS / S3 / COS
enabledSTRINGStatus: ENABLED / DISABLED
created_timeTIMESTAMPCreation time

Examples

-- List all Storage Connections SHOW STORAGE CONNECTIONS; -- Filter by name SHOW STORAGE CONNECTIONS LIKE '%oss%';