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