Sha256: d66d07902cc45f9d354332b457fd4424416c06755207df7d3127dda8f167b927
Contents?: true
Size: 791 Bytes
Versions: 70
Compression:
Stored size: 791 Bytes
Contents
module Fog module Compute class OpenStack class Real def add_flavor_access(flavor_ref, tenant_id) request( :body => Fog::JSON.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.to_s, "flavor_id" => flavor_ref.to_s }] } response end end end end end
Version data entries
70 entries across 70 versions & 6 rubygems