Sha256: b2c53b83c58dd130f72d24ab4d8e10869575b78db6532b5acb576ed42e7c0af0

Contents?: true

Size: 456 Bytes

Versions: 1

Compression:

Stored size: 456 Bytes

Contents

module Fog
  module Compute
    class Cloudstack

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