Class: Fog::Compute::OpenStack::Servers
- Inherits:
-
Fog::Collection
- Object
- Array
- Fog::Collection
- Fog::Compute::OpenStack::Servers
- Defined in:
- lib/fog/openstack/models/compute/servers.rb
Instance Attribute Summary
Attributes inherited from Fog::Collection
Instance Method Summary collapse
- #all(filters = filters) ⇒ Object
- #bootstrap(new_attributes = {}) ⇒ Object
- #get(server_id) ⇒ Object
-
#initialize(attributes) ⇒ Servers
constructor
A new instance of Servers.
Methods inherited from Fog::Collection
#clear, #create, #destroy, #inspect, #load, model, #model, #new, #reload, #table, #to_json
Methods included from Attributes::ClassMethods
#_load, #aliases, #attribute, #attributes, #identity, #ignore_attributes, #ignored_attributes
Methods included from Attributes::InstanceMethods
#_dump, #attributes, #dup, #identity, #identity=, #merge_attributes, #new_record?, #requires, #requires_one
Constructor Details
#initialize(attributes) ⇒ Servers
Returns a new instance of Servers.
14 15 16 17 |
# File 'lib/fog/openstack/models/compute/servers.rb', line 14 def initialize(attributes) self.filters ||= {} super end |
Instance Method Details
#all(filters = filters) ⇒ Object
19 20 21 22 23 |
# File 'lib/fog/openstack/models/compute/servers.rb', line 19 def all(filters = filters) self.filters = filters data = connection.list_servers_detail(filters).body['servers'] load(data) end |
#bootstrap(new_attributes = {}) ⇒ Object
25 26 27 28 29 30 |
# File 'lib/fog/openstack/models/compute/servers.rb', line 25 def bootstrap(new_attributes = {}) server = create(new_attributes) server.wait_for { ready? } server.setup(:password => server.password) server end |