Sha256: 55561bcfede00a33cfeab3cee8688251faf6e5178977f2c4c3bdb97c3973e83c
Contents?: true
Size: 794 Bytes
Versions: 1
Compression:
Stored size: 794 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.3/root_admin/uploadCustomCertificate.html] def upload_custom_certificate(domainsuffix, certificate, options={}) options.merge!( 'command' => 'uploadCustomCertificate', 'domainsuffix' => domainsuffix, 'certificate' => certificate ) request(options) end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
fog-1.23.0 | lib/fog/cloudstack/requests/compute/upload_custom_certificate.rb |