Sha256: 56bf57e2e6ee51f4fd0a738ac032dc4efc38111e638a0f26fc9a26ac94909541
Contents?: true
Size: 557 Bytes
Versions: 28
Compression:
Stored size: 557 Bytes
Contents
module Fog module Compute class Cloudstack class Real # Lists SSL certificates # # {CloudStack API Reference}[http://cloudstack.apache.org/docs/api/apidocs-4.4/root_admin/listSslCerts.html] def list_ssl_certs(*args) options = {} if args[0].is_a? Hash options = args[0] options.merge!('command' => 'listSslCerts') else options.merge!('command' => 'listSslCerts') end request(options) end end end end end
Version data entries
28 entries across 26 versions & 4 rubygems