Sha256: b56ef58d1c8589e62421e5a06cbd2ae646e17a33043c4702b884582bdbdff2c4

Contents?: true

Size: 1.27 KB

Versions: 79

Compression:

Stored size: 1.27 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

79 entries across 79 versions & 12 rubygems

Version Path
fog-1.22.0 lib/fog/linode/requests/compute/linode_create.rb
fog-1.21.0 lib/fog/linode/requests/compute/linode_create.rb
fog-maestrodev-1.20.0.20140305101839 lib/fog/linode/requests/compute/linode_create.rb
fog-maestrodev-1.20.0.20140305101305 lib/fog/linode/requests/compute/linode_create.rb
fog-maestrodev-1.19.0.20140212012611 lib/fog/linode/requests/compute/linode_create.rb
fog-1.20.0 lib/fog/linode/requests/compute/linode_create.rb
fog-maestrodev-1.19.0.20140110004459 lib/fog/linode/requests/compute/linode_create.rb
fog-maestrodev-1.19.0.20140110003812 lib/fog/linode/requests/compute/linode_create.rb
fog-maestrodev-1.19.0.20140109202555 lib/fog/linode/requests/compute/linode_create.rb
fog-maestrodev-1.19.0.20140107192102 lib/fog/linode/requests/compute/linode_create.rb
fog-maestrodev-1.19.0.20140107142106 lib/fog/linode/requests/compute/linode_create.rb
fog-maestrodev-1.19.0.20131219203941 lib/fog/linode/requests/compute/linode_create.rb
fog-maestrodev-1.18.0.20131219193542 lib/fog/linode/requests/compute/linode_create.rb
fog-1.19.0 lib/fog/linode/requests/compute/linode_create.rb
fog-maestrodev-1.18.0.20131219033443 lib/fog/linode/requests/compute/linode_create.rb
fog-maestrodev-1.18.0.20131219032002 lib/fog/linode/requests/compute/linode_create.rb
fog-maestrodev-1.18.0.20131219030716 lib/fog/linode/requests/compute/linode_create.rb
fog-maestrodev-1.18.0.20131219022322 lib/fog/linode/requests/compute/linode_create.rb
fog-maestrodev-1.18.0.20131218202447 lib/fog/linode/requests/compute/linode_create.rb
fog-maestrodev-1.18.0.20131209091424 lib/fog/linode/requests/compute/linode_create.rb