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

Version Path
fog-1.30.0 lib/fog/cloudstack/requests/compute/add_stratosphere_ssp.rb
fog-1.29.0 lib/fog/cloudstack/requests/compute/add_stratosphere_ssp.rb
fog-1.28.0 lib/fog/cloudstack/requests/compute/add_stratosphere_ssp.rb
fog-1.27.0 lib/fog/cloudstack/requests/compute/add_stratosphere_ssp.rb
fog-1.26.0 lib/fog/cloudstack/requests/compute/add_stratosphere_ssp.rb
fog-1.25.0 lib/fog/cloudstack/requests/compute/add_stratosphere_ssp.rb
nsidc-fog-1.24.1 lib/fog/cloudstack/requests/compute/add_stratosphere_ssp.rb
fog-1.24.0 lib/fog/cloudstack/requests/compute/add_stratosphere_ssp.rb