Sha256: 33bd34f496f81dea50bfd8eeda5aa266a61d65e106a4ebc73f4e228d0f70b7c3
Contents?: true
Size: 669 Bytes
Versions: 39
Compression:
Stored size: 669 Bytes
Contents
module Fog module Identity class OpenStack class V3 class Real def list_projects(options = {}) user_id = options.delete('user_id') || options.delete(:user_id) path = if user_id "users/#{user_id}/projects" else "projects" end request( :expects => [200], :method => 'GET', :path => path, :query => options ) end end class Mock def list_projects(options = {}) end end end end end end
Version data entries
39 entries across 37 versions & 3 rubygems