Method: Fog::Compute::Linode::Real#avail_linodeplans
- Defined in:
- lib/fog/linode/requests/compute/avail_linodeplans.rb
#avail_linodeplans(linodeplan_id = nil) ⇒ Object
Get available plans
Parameters
-
linodeplanId<~Integer>: id to limit results to
Returns
-
response<~Excon::Response>:
-
body<~Array>:
-
TODO: docs
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
# File 'lib/fog/linode/requests/compute/avail_linodeplans.rb', line 15 def avail_linodeplans(linodeplan_id = nil) = {} if linodeplan_id .merge!(:planId => linodeplan_id) end result = request( :expects => 200, :method => 'GET', :query => { :api_action => 'avail.linodeplans' }.merge!() ) #hack for plans not filtering by id like they should above, remove when they fix it. result.body["DATA"] = result.body["DATA"].select { |item| item['PLANID'] == linodeplan_id } if linodeplan_id result end |