Sha256: 3f49d82de9727bf7b6c0708d266a98f833b41943fcbd21a9d29e82cd89f4628c
Contents?: true
Size: 820 Bytes
Versions: 12
Compression:
Stored size: 820 Bytes
Contents
require 'fog/core/collection' require 'fog/rackspace/models/identity/user' module Fog module Rackspace class Identity class Users < Fog::Collection model Fog::Rackspace::Identity::User def all data = connection.list_users.body['users'] load(data) end def get(user_id) data = connection.get_user_by_id(user_id).body['user'] new(data) rescue Excon::Errors::NotFound nil rescue Excon::Errors::NotAuthorized nil end def get_by_name(user_name) data = connection.get_user_by_name(user_name).body['user'] new(data) rescue Excon::Errors::NotFound nil rescue Excon::Errors::NotAuthorized nil end end end end end
Version data entries
12 entries across 12 versions & 7 rubygems