mirror of
https://github.com/ubicloud/ubicloud.git
synced 2025-10-04 13:52:06 +08:00
11 lines
251 B
Ruby
11 lines
251 B
Ruby
# frozen_string_literal: true
|
|
|
|
UbiCli.on("pg").run_on("show-config") do
|
|
desc "Show configuration for a PostgreSQL database"
|
|
|
|
banner "ubi pg (location/pg-name | pg-id) show-config"
|
|
|
|
run do
|
|
config_entries_response(sdk_object.config)
|
|
end
|
|
end
|