Sha256: d9668693d54c2e3070f314b0308721394e02090872274e4cc8381e482295186d
Contents?: true
Size: 734 Bytes
Versions: 51
Compression:
Stored size: 734 Bytes
Contents
module Fog module Compute class OpenStack class Real def update_quota(tenant_id, options = {}) options['tenant_id'] = tenant_id request( :body => MultiJson.encode({ 'quota_set' => options }), :expects => 200, :method => 'PUT', :path => "/os-quota-sets/#{tenant_id}" ) end end class Mock def update_quota(tenant_id, options = {}) self.data[:quota_updated] = self.data[:quota].merge options response = Excon::Response.new response.status = 200 response.body = { 'quota_set' => self.data[:quota_updated] } response end end end end end
Version data entries
51 entries across 51 versions & 12 rubygems