Sha256: b10e1e66cecc36ab91ed5841bba298415853238d3c7083171e4d1d27f71c16f2
Contents?: true
Size: 1.26 KB
Versions: 43
Compression:
Stored size: 1.26 KB
Contents
module Fog module Compute class Linode class Real # Creates a linode and assigns you full privileges # # ==== Parameters # * datacenter_id<~Integer>: id of datacenter to place new linode in # * plan_id<~Integer>: id of plan to boot new linode with # * payment_term<~Integer>: Subscription term in months, in [1, 12, 24] # # ==== Returns # * response<~Excon::Response>: # * body<~Array>: # TODO: docs def linode_create(datacenter_id, plan_id, payment_term) request( :expects => 200, :method => 'GET', :query => { :api_action => 'linode.create', :datacenterId => datacenter_id, :paymentTerm => payment_term, :planId => plan_id } ) end end class Mock def linode_create(datacenter_id, plan_id, payment_term) response = Excon::Response.new response.status = 200 response.body = { "ERRORARRAY" => [], "ACTION" => "linode.create", "DATA" => { "LinodeID" => rand(1000..9999) } } response end end end end end
Version data entries
43 entries across 41 versions & 6 rubygems