Sha256: 23515aadc7d07ea308b14d91e6694841f8e712f46a695113a3bb83f87414bfc1
Contents?: true
Size: 497 Bytes
Versions: 4
Compression:
Stored size: 497 Bytes
Contents
module Fog module Identity class HuaweiCloud 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
4 entries across 4 versions & 1 rubygems