Sha256: 5684c3c7169f64d16d7cd13be76d2b75698eaf3096f69c156b40b981286b3912
Contents?: true
Size: 495 Bytes
Versions: 20
Compression:
Stored size: 495 Bytes
Contents
module Fog module OpenStack class Identity 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