Sha256: 283e342ee2f9acc8e8968ea22084125ea19f57d2fef2c7e48bde09c33b0560eb
Contents?: true
Size: 761 Bytes
Versions: 29
Compression:
Stored size: 761 Bytes
Contents
module Fog module Compute class OpenStack 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
29 entries across 27 versions & 3 rubygems