# File lib/fog/identity/openstack/v2/requests/delete_tenant.rb, line 16 def delete_tenant(_attributes) response = Excon::Response.new response.status = [200, 204][rand(2)] response.body = { 'tenant' => { 'id' => '1', 'description' => 'Has access to everything', 'enabled' => true, 'name' => 'admin' } } response end