Sha256: de17640c3eb587819656208143752f4654effa9db7edb36f656c6258d7a7c867
Contents?: true
Size: 527 Bytes
Versions: 116
Compression:
Stored size: 527 Bytes
Contents
module Fog module Rackspace class Identity class Real def list_credentials(user_id) response = request( :expects => [200, 203], :method => 'GET', :path => "users/#{user_id}/OS-KSADM/credentials" ) unless response.body['credentials'].is_a?(Array) response.body['credentials'] = [response.body['credential']] response.body.delete('credential') end response end end end end end
Version data entries
116 entries across 114 versions & 16 rubygems