Sha256: ec8505dd3d865693f2f1d034415fd5f3b1c4e6cd5523fa8c7b41227bb010e882
Contents?: true
Size: 677 Bytes
Versions: 4
Compression:
Stored size: 677 Bytes
Contents
module Fog module Volume class HuaweiCloud module Real def update_quota(tenant_id, options = {}) request( :body => Fog::JSON.encode('quota_set' => options), :expects => 200, :method => 'PUT', :path => "/os-quota-sets/#{tenant_id}" ) end end module Mock def update_quota(_tenant_id, options = {}) data[:quota_updated] = data[:quota].merge options response = Excon::Response.new response.status = 200 response.body = {'quota_set' => data[:quota_updated]} response end end end end end
Version data entries
4 entries across 4 versions & 1 rubygems