Sha256: b6cb020b770faf62dacac54b89180130b98befcb9cbb09f1b822f7331a7bd305

Contents?: true

Size: 476 Bytes

Versions: 1

Compression:

Stored size: 476 Bytes

Contents

module Fog
  module Compute
    class Cloudstack

      class Real
        # Updates a service offering.
        #
        # {CloudStack API Reference}[http://cloudstack.apache.org/docs/api/apidocs-4.3/root_admin/updateServiceOffering.html]
        def update_service_offering(id, options={})
          options.merge!(
            'command' => 'updateServiceOffering', 
            'id' => id  
          )
          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/update_service_offering.rb