Sha256: febbe702311a4d0bfead911654fc1ba112cf2531396e34c5d7ba43f83b3fc4f0
Contents?: true
Size: 801 Bytes
Versions: 83
Compression:
Stored size: 801 Bytes
Contents
module Fog module Compute class IBM class Real # Returns the list of Images available to be provisioned on the IBM DeveloperCloud. # # ==== Parameters # No parameters # # ==== Returns # * response<~Excon::Response>: # * body<~Hash>: # * 'locations'<~Array>: list of locations def list_locations request( :method => 'GET', :expects => 200, :path => "/locations" ) end end class Mock def list_locations response = Excon::Response.new response.status = 200 response.body = { "locations" => self.data[:locations].values } response end end end end end
Version data entries
83 entries across 83 versions & 14 rubygems