Sha256: e5477df2ed83aef1daeec1d2d73578a9a42517d173b3da9684481187f940e0ee
Contents?: true
Size: 605 Bytes
Versions: 4
Compression:
Stored size: 605 Bytes
Contents
module Fog module Compute class HuaweiCloud 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 = data[:snapshots].values response.body = {'snapshots' => snapshots} response end end end end end
Version data entries
4 entries across 4 versions & 1 rubygems