Sha256: 5650ec4b776d7523f000985ce9bf9e1bbe2510d1cbf40334456945b3f1879368
Contents?: true
Size: 502 Bytes
Versions: 20
Compression:
Stored size: 502 Bytes
Contents
module Fog module Compute class Google class Mock def list_regions Fog::Mock.not_implemented end end class Real def list_regions(filter: nil, max_results: nil, order_by: nil, page_token: nil) @compute.list_regions( @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