# File lib/fog/identity/openstack/v2/requests/get_role.rb, line 16 def get_role(id) response = Excon::Response.new if data = self.data[:roles][id] response.status = 200 response.body = {'role' => data} response else raise Fog::Identity::OpenStack::NotFound end end