Sha256: 6b31c34ed0cc946a590f5d9bc7488b75caa6fac58178d285ddf168c76dc164a0
Contents?: true
Size: 911 Bytes
Versions: 28
Compression:
Stored size: 911 Bytes
Contents
module Fog module Compute class Cloudstack class Real # Uploads a custom certificate for the console proxy VMs to use for SSL. Can be used to upload a single certificate signed by a known CA. Can also be used, through multiple calls, to upload a chain of certificates from CA to the custom certificate itself. # # {CloudStack API Reference}[http://cloudstack.apache.org/docs/api/apidocs-4.4/root_admin/uploadCustomCertificate.html] def upload_custom_certificate(*args) options = {} if args[0].is_a? Hash options = args[0] options.merge!('command' => 'uploadCustomCertificate') else options.merge!('command' => 'uploadCustomCertificate', 'domainsuffix' => args[0], 'certificate' => args[1]) end request(options) end end end end end
Version data entries
28 entries across 26 versions & 4 rubygems