Sha256: b74cfda6b6f9ea2af2a6d970d575b195b5dc90b450bee17145bea77b75468f39
Contents?: true
Size: 684 Bytes
Versions: 28
Compression:
Stored size: 684 Bytes
Contents
module Fog module Compute class Cloudstack class Real # Adds stratosphere ssp server # # {CloudStack API Reference}[http://cloudstack.apache.org/docs/api/apidocs-4.4/root_admin/addStratosphereSsp.html] def add_stratosphere_ssp(*args) options = {} if args[0].is_a? Hash options = args[0] options.merge!('command' => 'addStratosphereSsp') else options.merge!('command' => 'addStratosphereSsp', 'url' => args[0], 'zoneid' => args[1], 'name' => args[2]) end request(options) end end end end end
Version data entries
28 entries across 26 versions & 4 rubygems