mirror of
https://github.com/ubicloud/ubicloud.git
synced 2025-10-09 16:21:57 +08:00
11 lines
248 B
Ruby
11 lines
248 B
Ruby
# frozen_string_literal: true
|
|
|
|
UbiCli.on("lb").run_on("certificate") do
|
|
desc "Print active certificate for a load balancer"
|
|
|
|
banner "ubi lb (location/lb-name | lb-id) certificate"
|
|
|
|
run do
|
|
response(sdk_object.active_certificate)
|
|
end
|
|
end
|