Sha256: 52f1b4f7b26e5c9e5cb2c9c851c6a1506dab3cb42b2e27c152dca290abe6be22
Contents?: true
Size: 551 Bytes
Versions: 20
Compression:
Stored size: 551 Bytes
Contents
module Fog module Compute class Google class Mock def list_snapshots Fog::Mock.not_implemented end end class Real def list_snapshots(project = @project, filter: nil, max_results: nil, order_by: nil, page_token: nil) @compute.list_snapshots(project, :filter => filter, :max_results => max_results, :order_by => order_by, :page_token => page_token) end end end end end
Version data entries
20 entries across 20 versions & 1 rubygems