Sha256: b9dadb568163036317ca3ed99805ffe9fa14656388fbf801968eb8d10b9f9288
Contents?: true
Size: 564 Bytes
Versions: 4
Compression:
Stored size: 564 Bytes
Contents
module Fog module DNS class HuaweiCloud class V1 class Real def get_quota(project_id) request( :expects => 200, :method => 'GET', :path => "quotas/#{project_id}" ) end end class Mock def get_quota(_project_id) response = Excon::Response.new response.status = 200 response.body = data[:quota_updated] || data[:quota] response end end end end end end
Version data entries
4 entries across 4 versions & 1 rubygems