Sha256: b03cec37ee3673a4b63156ae74358d429e28fdf58948c9e2e643d77225f63933
Contents?: true
Size: 563 Bytes
Versions: 26
Compression:
Stored size: 563 Bytes
Contents
module Fog module Brightbox class Compute class Real def update_account(options = {}) return nil if options.empty? || options.nil? request( :expects => [200], :method => 'PUT', :path => "/1.0/account", :headers => {"Content-Type" => "application/json"}, :body => options.to_json ) end end class Mock def update_account(options = {}) Fog::Mock.not_implemented end end end end end
Version data entries
26 entries across 26 versions & 3 rubygems