class Fog::Compute::Ecloud::User

Public Instance Methods

api_keys() click to toggle source
# File lib/fog/compute/ecloud/models/user.rb, line 25
def api_keys
  @api_keys = Fog::Compute::Ecloud::ApiKeys.new(:service => service, :href => "#{service.base_path}/admin/apiKeys/users/#{id}")
end
id() click to toggle source
# File lib/fog/compute/ecloud/models/user.rb, line 29
def id
  href.scan(/\d+/)[0]
end
roles() click to toggle source
# File lib/fog/compute/ecloud/models/user.rb, line 21
def roles
  @roles = Fog::Compute::Ecloud::Roles.new(:service => service, :href => "#{service.base_path}/admin/roles/users/#{id}")
end