Sha256: c96a3e9659f7bd9e31eb2641a86e1a419c949b8d128a53ed01bb3f5afdfc3515

Contents?: true

Size: 822 Bytes

Versions: 44

Compression:

Stored size: 822 Bytes

Contents

module Fog
  module Linode
    class Compute
      class Real

        # List all linodes user has access or delete to
        #
        # ==== Parameters
        # * linodeId<~Integer>: Limit the list to the specified LinodeID
        #
        # ==== Returns
        # * response<~Excon::Response>:
        #   * body<~Array>:
        # TODO: docs
        def linode_list(linode_id=nil)
          options = {}
          if linode_id
            options.merge!(:linodeId => linode_id)
          end
          request(
            :expects  => 200,
            :method   => 'GET',
            :query    => { :api_action => 'linode.list' }.merge!(options)
          )
        end

      end

      class Mock

        def linode_list(options={})
          Fog::Mock.not_implemented
        end

      end
    end
  end
end

Version data entries

44 entries across 44 versions & 3 rubygems

Version Path
fog-0.3.3 lib/fog/linode/requests/compute/linode_list.rb
fog-0.3.2 lib/fog/linode/requests/compute/linode_list.rb
fog-0.3.1 lib/fog/linode/requests/compute/linode_list.rb
fog-0.3.0 lib/fog/linode/requests/compute/linode_list.rb