Sha256: 45463081aeb02d4c0e9a33b996fec1c47f4446e5d20cce9d1fcf252c1036e725
Contents?: true
Size: 546 Bytes
Versions: 88
Compression:
Stored size: 546 Bytes
Contents
module Fog module Compute class Bluebox class Real # Get details of a location # # ==== Parameters # * location_id<~Integer> - Id of location to lookup # # ==== Returns # * response<~Excon::Response>: # * body<~Array>: # TODO def get_location(location_id) request( :expects => 200, :method => 'GET', :path => "api/locations/#{location_id}.json" ) end end end end end
Version data entries
88 entries across 88 versions & 16 rubygems