Sha256: add2497345811d8fb2f9feab06f8ecadbe1ec9fd30cd0877180902a083881669
Contents?: true
Size: 644 Bytes
Versions: 14
Compression:
Stored size: 644 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
14 entries across 14 versions & 1 rubygems