Sha256: 57b1f22880520732c4dfd34e4a087438b9f0e19bfb0a480d7a242a3f4198770a
Contents?: true
Size: 659 Bytes
Versions: 22
Compression:
Stored size: 659 Bytes
Contents
module Fog module OpenStack class Network class Real def update_quota(tenant_id, options = {}) request( :body => Fog::JSON.encode('quota' => options), :expects => 200, :method => 'PUT', :path => "/quotas/#{tenant_id}" ) end end class Mock def update_quota(_tenant_id, options = {}) data[:quota_updated] = data[:quota].merge options response = Excon::Response.new response.status = 200 response.body = {'quota' => data[:quota_updated]} response end end end end end
Version data entries
22 entries across 22 versions & 3 rubygems