Fog::Collection
# File lib/fog/hp/models/compute_v2/servers.rb, line 17 def all(filters = filters) details = filters.delete(:details) self.filters = filters non_aliased_filters = Fog::HP.convert_aliased_attributes_to_original(self.model, filters) if details data = service.list_servers_detail(non_aliased_filters).body['servers'] else data = service.list_servers(non_aliased_filters).body['servers'] end load(data) end
Creates a new server and populates ssh keys service.servers.bootstrap :name => ‘my-server’,
:flavor_id => service.flavors.first.id, :image_id => service.images.find {|img| img.name =~ /Ubuntu/}.id, :public_key_path => '~/.ssh/my_public_key.pub', :private_key_path => '~/.ssh/my_private_key'
# File lib/fog/hp/models/compute_v2/servers.rb, line 35 def bootstrap(new_attributes = {}) server = create(new_attributes) server.wait_for { ready? && !public_ip_address.empty?} server.setup(:password => server.password) server end
Generated with the Darkfish Rdoc Generator 2.