Sha256: 0808ed585aee0d7e76e0ed175938c969b0c3143d3cdd4bf783558a3ce5557c03
Contents?: true
Size: 729 Bytes
Versions: 28
Compression:
Stored size: 729 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
28 entries across 28 versions & 4 rubygems