Sha256: f5edeef96ae2e0e822b556b5f5c1d7f29c15cfa5dace60b012e3dd43c89dc259
Contents?: true
Size: 545 Bytes
Versions: 18
Compression:
Stored size: 545 Bytes
Contents
module Fog module Identity class OpenStack class Real def delete_user_role(tenant_id, user_id, role_id) request( :expects => 200, :method => 'DELETE', :path => "/tenants/#{tenant_id}/users/#{user_id}/roles/OS-KSADM/#{role_id}" ) end end class Mock def delete_user_role(tenant_id, user_id, role_id) response = Excon::Response.new response.status = 200 response end end end end end
Version data entries
18 entries across 18 versions & 8 rubygems