Sha256: e8aa40046354ae53753a578a867e14946324e9605a20e1a7eb99a4b128c3401c
Contents?: true
Size: 603 Bytes
Versions: 21
Compression:
Stored size: 603 Bytes
Contents
module Fog module Compute class Google class Mock def list_snapshots # :no-coverage: Fog::Mock.not_implemented # :no-coverage: 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
21 entries across 21 versions & 2 rubygems