Sha256: a2ac2d095ccc747de3563face547effef97ef913d0aaa68b9704969a0c5b5fa3

Contents?: true

Size: 976 Bytes

Versions: 16

Compression:

Stored size: 976 Bytes

Contents

module Fog
  module Linode
    class Real

      # Creates a linode and assigns you full privileges
      #
      # ==== Parameters
      # * datacenter_id<~Integer>: id of datacenter to place new linode in
      # * payment_term<~Integer>: Subscription term in months, in [1, 12, 24]
      # * plan_id<~Integer>: id of plan to boot new linode with
      #
      # ==== Returns
      # * response<~Excon::Response>:
      #   * body<~Array>:
      # TODO: docs
      def linode_create(datacenter_id, payment_term, plan_id)
        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, payment_term, plan_id)
        Fog::Mock.not_implemented
      end

    end
  end
end

Version data entries

16 entries across 16 versions & 2 rubygems

Version Path
fog-0.2.30 lib/fog/linode/requests/linode_create.rb
fog-0.2.28 lib/fog/linode/requests/linode_create.rb
fog-0.2.27 lib/fog/linode/requests/linode_create.rb
fog-0.2.26 lib/fog/linode/requests/linode_create.rb
fog-0.2.25 lib/fog/linode/requests/linode_create.rb
fog-0.2.24 lib/fog/linode/requests/linode_create.rb
tecnh-fog-0.2.23.vpc lib/fog/linode/requests/linode_create.rb
fog-0.2.23 lib/fog/linode/requests/linode_create.rb
fog-0.2.22 lib/fog/linode/requests/linode_create.rb
fog-0.2.21 lib/fog/linode/requests/linode_create.rb
fog-0.2.20 lib/fog/linode/requests/linode_create.rb
fog-0.2.19 lib/fog/linode/requests/linode_create.rb
fog-0.2.18 lib/fog/linode/requests/linode_create.rb
fog-0.2.17 lib/fog/linode/requests/linode_create.rb
fog-0.2.16 lib/fog/linode/requests/linode_create.rb
fog-0.2.15 lib/fog/linode/requests/linode_create.rb