Class: OpenNebula::UserPool
- Inherits:
-
Pool
- Object
- XMLElement
- XMLPool
- Pool
- OpenNebula::UserPool
- Defined in:
- lib/opennebula/user_pool.rb
Constant Summary collapse
- USER_POOL_METHODS =
Constants and Class attribute accessors
{ :info => "userpool.info" }
Constants inherited from Pool
Pool::INFO_ALL, Pool::INFO_GROUP, Pool::INFO_MINE, Pool::INFO_PRIMARY_GROUP, Pool::PAGINATED_POOLS
Instance Attribute Summary
Attributes inherited from Pool
Instance Method Summary collapse
-
#factory(element_xml) ⇒ Object
Factory method to create User objects.
-
#info ⇒ Object
(also: #info!)
Retrieves all the Users in the pool.
- #info_all ⇒ Object (also: #info_all!)
- #info_group ⇒ Object (also: #info_group!)
- #info_mine ⇒ Object (also: #info_mine!)
-
#initialize(client) ⇒ UserPool
constructor
client
a Client object that represents a XML-RPC connection. -
#users_with_password(driver, password) ⇒ Array
Returns a list of user IDs that have the given password.
Methods inherited from Pool
#each, #each_page, #each_page_delete, #each_with_xpath, #get_hash, #get_page, #info_paginated, #is_paginated?, #loop_page, #to_str
Methods inherited from XMLPool
Methods inherited from XMLElement
#[], #add_element, #attr, build_xml, #delete_element, #each, #each_xpath, #element_xml, #has_elements?, #initialize_xml, #name, #retrieve_elements, #retrieve_xmlelements, #set_content, #template_like_str, #template_str, #template_xml, #text, #to_hash, #to_xml, #xml_nil?
Constructor Details
#initialize(client) ⇒ UserPool
client
a Client object that represents a XML-RPC connection
35 36 37 |
# File 'lib/opennebula/user_pool.rb', line 35 def initialize(client) super('USER_POOL','USER',client) end |
Instance Method Details
#factory(element_xml) ⇒ Object
Factory method to create User objects
40 41 42 |
# File 'lib/opennebula/user_pool.rb', line 40 def factory(element_xml) OpenNebula::User.new(element_xml,@client) end |
#info ⇒ Object Also known as: info!
Retrieves all the Users in the pool.
49 50 51 |
# File 'lib/opennebula/user_pool.rb', line 49 def info() super(USER_POOL_METHODS[:info]) end |
#info_all ⇒ Object Also known as: info_all!
53 54 55 |
# File 'lib/opennebula/user_pool.rb', line 53 def info_all() return super(USER_POOL_METHODS[:info]) end |
#info_group ⇒ Object Also known as: info_group!
61 62 63 |
# File 'lib/opennebula/user_pool.rb', line 61 def info_group() return super(USER_POOL_METHODS[:info]) end |
#info_mine ⇒ Object Also known as: info_mine!
57 58 59 |
# File 'lib/opennebula/user_pool.rb', line 57 def info_mine() return super(USER_POOL_METHODS[:info]) end |
#users_with_password(driver, password) ⇒ Array
Returns a list of user IDs that have the given password. info() needs to be called before.
80 81 82 83 84 85 86 87 88 89 90 |
# File 'lib/opennebula/user_pool.rb', line 80 def users_with_password(driver, password) ids = [] each do |user| if user["PASSWORD"] == password ids << user["ID"] end end return ids end |