Sha256: f47dd0aab9422d7cdd4b1f6f01f3297231e00b6c9bf3422c704d7425d7bafe5f
Contents?: true
Size: 613 Bytes
Versions: 11
Compression:
Stored size: 613 Bytes
Contents
module Fog module Compute class OpenStack class Real def list_snapshots_detail(options = {}) request( :expects => 200, :method => 'GET', :path => 'os-snapshots/detail', :query => options ) end end class Mock def list_snapshots_detail(options = {}) response = Excon::Response.new response.status = 200 snapshots = self.data[:snapshots].values response.body = { 'snapshots' => snapshots } response end end end end end
Version data entries
11 entries across 11 versions & 1 rubygems