Sha256: 4a45372fc8b5dc1443e727342bdc96048a360e34b486dfffc2977a45657dfe42
Contents?: true
Size: 542 Bytes
Versions: 20
Compression:
Stored size: 542 Bytes
Contents
module Fog module Identity class OpenStack class Real def delete_user_role(tenant_id, user_id, role_id) request( :expects => 204, :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 = 204 response end end end end end
Version data entries
20 entries across 20 versions & 4 rubygems