Sha256: c8cf03a5500fdc7b7c72e901ba0946aefd70ca5c12295f1bd7c6270bf3e14342
Contents?: true
Size: 1.1 KB
Versions: 111
Compression:
Stored size: 1.1 KB
Contents
module Fog module Compute class GoGrid class Real # Create a new server # # ==== Parameters # * 'name'<~String> - name of the server, 20 or fewer characters # * 'image'<~String> - image to use, in grid_image_list # * 'ip'<~String> - initial public ip for this server # * 'options'<~Hash>: # * 'server.ram'<~String> - flavor to use, in common_lookup_list('server.ram') # * 'description'<~String> - description of this server # * 'isSandbox'<~String> - treat this server as image sandbox? in ['true', 'false'] # # ==== Returns # * response<~Excon::Response>: # * body<~Array>: # TODO: docs def grid_server_add(image, ip, name, server_ram, options={}) request( :path => 'grid/server/add', :query => { 'image' => image, 'ip' => ip, 'name' => name, 'server.ram' => server_ram }.merge!(options) ) end end end end end
Version data entries
111 entries across 111 versions & 19 rubygems