Sha256: 4a4f9cc2481ccc2f19313eee92ab357f307a3c685935f7650f84c77ec51dcf3a
Contents?: true
Size: 648 Bytes
Versions: 7
Compression:
Stored size: 648 Bytes
Contents
module Fog module Compute class Google class Mock def list_aggregated_forwarding_rules(_opts = {}) # :no-coverage: Fog::Mock.not_implemented # :no-coverage: 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
7 entries across 7 versions & 2 rubygems