Sha256: e7d56482b36e85252a55c2d638ecc6418432bbd44cfc8f0d4aed3fc9bec92f9e
Contents?: true
Size: 576 Bytes
Versions: 20
Compression:
Stored size: 576 Bytes
Contents
module Fog module Compute class Google class Mock def list_images(_project = @project, _opts = {}) Fog::Mock.not_implemented end end class Real def list_images(project = @project, filter: nil, max_results: nil, order_by: nil, page_token: nil) @compute.list_images( 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