Sha256: 732f0a9fad3b0a4d00ea45f3f4ea99ce01619a72c23313d884fc17275fb28de1
Contents?: true
Size: 544 Bytes
Versions: 39
Compression:
Stored size: 544 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
39 entries across 37 versions & 5 rubygems