Sha256: 14fda04be96af59942710f193ab441100dc3948233673e47484154f822427f7a
Contents?: true
Size: 733 Bytes
Versions: 55
Compression:
Stored size: 733 Bytes
Contents
module Fog module Volume class OpenStack class Real def update_quota(tenant_id, options = {}) options['tenant_id'] = tenant_id request( :body => Fog::JSON.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
55 entries across 55 versions & 3 rubygems