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