Sha256: b5d6a8b1b0ff0760856e9ddc28de3e9ae3e7d0f2ee1d23f4f137f7c3153f9d9b
Contents?: true
Size: 781 Bytes
Versions: 11
Compression:
Stored size: 781 Bytes
Contents
module Fog module Compute class OpenStack class Real def add_flavor_access(flavor_ref, tenant_id) request( :body => MultiJson.encode({ "addTenantAccess" => { "tenant" => tenant_id } }), :expects => [200, 203], :method => 'POST', :path => "flavors/#{flavor_ref}/action.json" ) end end class Mock def add_flavor_access(flavor_ref, tenant_id) response = Excon::Response.new response.status = 200 response.body = { "flavor_access" => [{ "tenant_id" => tenant_id, "flavor_id" => flavor_ref }] } response end end end end end
Version data entries
11 entries across 11 versions & 3 rubygems