class Fog::OpenStack::Compute::Servers
Public Class Methods
new(attributes)
click to toggle source
Calls superclass method
# File lib/fog/openstack/compute/models/servers.rb, line 12 def initialize(attributes) self.filters ||= {} super end
Public Instance Methods
all(filters_arg = filters)
click to toggle source
# File lib/fog/openstack/compute/models/servers.rb, line 17 def all(filters_arg = filters) filters = filters_arg data = service.list_servers_detail(filters) load_response(data, 'servers') end
bootstrap(new_attributes = {})
click to toggle source
Creates a new server and populates ssh keys @return [Fog::OpenStack::Compute::Server] @raise [Fog::OpenStack::Compute::NotFound] - HTTP 404 @raise [Fog::OpenStack::Compute::BadRequest] - HTTP 400 @raise [Fog::OpenStack::Compute::InternalServerError] - HTTP 500 @raise [Fog::OpenStack::Compute::ServiceError] @example
service.servers.bootstrap :name => 'bootstrap-server', :flavor_ref => service.flavors.first.id, :image_ref => service.images.find {|img| img.name =~ /Ubuntu/}.id, :public_key_path => '~/.ssh/fog_rsa.pub', :private_key_path => '~/.ssh/fog_rsa'
# File lib/fog/openstack/compute/models/servers.rb, line 42 def bootstrap(new_attributes = {}) server = create(new_attributes) server.wait_for { ready? } server.setup(:password => server.password) server end
get(server_id)
click to toggle source
# File lib/fog/openstack/compute/models/servers.rb, line 49 def get(server_id) if server = service.get_server_details(server_id).body['server'] new(server) end rescue Fog::OpenStack::Compute::NotFound nil end
summary(filters_arg = filters)
click to toggle source
# File lib/fog/openstack/compute/models/servers.rb, line 23 def summary(filters_arg = filters) filters = filters_arg data = service.list_servers(filters) load_response(data, 'servers') end