Sha256: 1c9744af8d9122b8e9100d01113d724e18d5f50966493f014350a81b5301929d
Contents?: true
Size: 585 Bytes
Versions: 28
Compression:
Stored size: 585 Bytes
Contents
module Fog module Compute class Cloudstack class Real # Updates a project # # {CloudStack API Reference}[http://cloudstack.apache.org/docs/api/apidocs-4.4/root_admin/updateProject.html] def update_project(*args) options = {} if args[0].is_a? Hash options = args[0] options.merge!('command' => 'updateProject') else options.merge!('command' => 'updateProject', 'id' => args[0]) end request(options) end end end end end
Version data entries
28 entries across 26 versions & 4 rubygems