Sha256: 848fe445bd4ae05d747161cb9c121ef4dd5f77b7b09929522ee07108133e78b1
Contents?: true
Size: 490 Bytes
Versions: 20
Compression:
Stored size: 490 Bytes
Contents
module Fog module Identity class OpenStack class V2 class Real def validate_token(token_id, tenant_id=nil) request( :expects => [200, 203], :method => 'GET', :path => "tokens/#{token_id}"+(tenant_id ? "?belongsTo=#{tenant_id}" : '') ) end end class Mock def validate_token(token_id, tenant_id=nil) end end end end end end
Version data entries
20 entries across 20 versions & 3 rubygems