2010-11-08 07:21:31 -05:00
|
|
|
module Fog
|
2011-06-16 19:28:54 -04:00
|
|
|
module Compute
|
|
|
|
class Brightbox
|
2010-11-08 07:21:31 -05:00
|
|
|
class Real
|
2012-11-15 09:30:09 -05:00
|
|
|
# Create a new server for the account based on the required disk image.
|
|
|
|
#
|
|
|
|
# Optionally can setup the type of server, zone to locate it, groups to join and custom metadata.
|
|
|
|
#
|
|
|
|
# @param [Hash] options
|
|
|
|
# @option options [String] :image
|
|
|
|
# @option options [String] :name Editable label
|
|
|
|
# @option options [String] :server_type
|
|
|
|
# @option options [String] :zone Zone in which to create new Server
|
|
|
|
# @option options [String] :user_data
|
|
|
|
# @option options [Array] :server_groups Array of server groups to add server to
|
|
|
|
#
|
|
|
|
# @return [Hash, nil] The JSON response parsed to a Hash or nil if no options passed
|
|
|
|
#
|
|
|
|
# @see https://api.gb1.brightbox.com/1.0/#server_create_server
|
|
|
|
#
|
2011-08-16 12:12:39 -04:00
|
|
|
def create_server(options)
|
2012-12-18 10:00:26 -05:00
|
|
|
wrapped_request("post", "/1.0/servers", [202], options)
|
2010-11-08 07:21:31 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2012-11-16 07:48:16 -05:00
|
|
|
end
|