Sha256: 8a1f162bd86f0f28823f792bcc439e1f8f8d98b7af1c8c36b9d0ba6e0c581e9d
Contents?: true
Size: 656 Bytes
Versions: 7
Compression:
Stored size: 656 Bytes
Contents
module Fog module Compute class Google class Mock def list_networks(_opts = {}) # :no-coverage: Fog::Mock.not_implemented # :no-coverage: end end class Real def list_networks(filter: nil, max_results: nil, order_by: nil, page_token: nil) @compute.list_networks(@project, :filter => filter, :max_results => max_results, :order_by => order_by, :page_token => page_token) end end end end end
Version data entries
7 entries across 7 versions & 2 rubygems