Sha256: 66d4cb524c25324f45be9b4346483004e32e784ebb49d6cf900d3326c16c38fb
Contents?: true
Size: 618 Bytes
Versions: 5
Compression:
Stored size: 618 Bytes
Contents
module Fog module OracleCloud class Database class Real def list_instances response = request( :expects => 200, :method => 'GET', :path => "/paas/service/dbcs/api/v1.1/instances/#{@identity_domain}?outputLevel=verbose" ) response end end class Mock def list_instances response = Excon::Response.new instances = self.data[:instances].values response.body = { 'services' => instances } response end end end end end
Version data entries
5 entries across 5 versions & 1 rubygems