Sha256: 6d7c17d9d15a66e9fface6c46a0125f53da5d6dc5097c7e33c0ed2fcc5d5f726
Contents?: true
Size: 1.01 KB
Versions: 4
Compression:
Stored size: 1.01 KB
Contents
module Fog module Volume class HuaweiCloud module Real def get_quota_usage(tenant_id) request( :expects => 200, :method => 'GET', :path => "/os-quota-sets/#{tenant_id}?usage=True" ) end end module Mock def get_quota_usage(tenant_id) response = Excon::Response.new response.status = 200 response.body = { 'quota_set' => { 'gigabytes' => { 'reserved' => 0, 'limit' => -1, 'in_use' => 160 }, 'snapshots' => { 'reserved' => 0, 'limit' => 50, 'in_use' => 3 }, 'volumes' => { 'reserved' => 0, 'limit' => 50, 'in_use' => 5 }, 'id' => tenant_id } } response end end end end end
Version data entries
4 entries across 4 versions & 1 rubygems