Sha256: 2af800c3d199b56fe2ea14c338aa35a4a7d7cbc812b71abe5af4661cbbedde7f
Contents?: true
Size: 580 Bytes
Versions: 22
Compression:
Stored size: 580 Bytes
Contents
module Fog module OpenStack class Compute class Real def get_quota_defaults(tenant_id) request( :expects => 200, :method => 'GET', :path => "/os-quota-sets/#{tenant_id}/defaults" ) end end class Mock def get_quota_defaults(tenant_id) response = Excon::Response.new response.status = 200 response.body = { 'quota_set' => data[:quota].merge('id' => tenant_id) } response end end end end end
Version data entries
22 entries across 22 versions & 3 rubygems