Sha256: 72cd9b4c4184ac57eecddd125201353b49246c0f6f7a2bce18cd6cc06900b44a
Contents?: true
Size: 761 Bytes
Versions: 20
Compression:
Stored size: 761 Bytes
Contents
module Fog module OpenStack class Compute class Real def remove_flavor_access(flavor_ref, tenant_id) request( :body => Fog::JSON.encode("removeTenantAccess" => { "tenant" => tenant_id.to_s }), :expects => [200, 203], :method => 'POST', :path => "flavors/#{flavor_ref}/action" ) end end class Mock def remove_flavor_access(_flavor_ref, _tenant_id) response = Excon::Response.new response.status = 200 response.body = { "flavor_access" => [] } response end end end end end
Version data entries
20 entries across 20 versions & 3 rubygems