Class: Fog::Compute::OpenStack::Servers
- Inherits:
-
Fog::Collection
- Object
- Fog::Collection
- Fog::Compute::OpenStack::Servers
- Defined in:
- lib/fog/openstack/models/compute/servers.rb
Instance Method Summary collapse
- #all(filters_arg = filters) ⇒ Object
-
#bootstrap(new_attributes = {}) ⇒ Fog::Compute::OpenStack::Server
Creates a new server and populates ssh keys.
- #get(server_id) ⇒ Object
-
#initialize(attributes) ⇒ Servers
constructor
A new instance of Servers.
Constructor Details
#initialize(attributes) ⇒ Servers
Returns a new instance of Servers.
12 13 14 15 |
# File 'lib/fog/openstack/models/compute/servers.rb', line 12 def initialize(attributes) self.filters ||= {} super end |
Instance Method Details
#all(filters_arg = filters) ⇒ Object
17 18 19 20 21 |
# File 'lib/fog/openstack/models/compute/servers.rb', line 17 def all(filters_arg = filters) filters = filters_arg data = service.list_servers_detail(filters).body['servers'] load(data) end |
#bootstrap(new_attributes = {}) ⇒ Fog::Compute::OpenStack::Server
Creates a new server and populates ssh keys
36 37 38 39 40 41 |
# File 'lib/fog/openstack/models/compute/servers.rb', line 36 def bootstrap(new_attributes = {}) server = create(new_attributes) server.wait_for { ready? } server.setup(:password => server.password) server end |