Sha256: 2b6ad5a740d667577dfe096d02186c145c0f645a4393feffd314fe526ec4cc20
Contents?: true
Size: 620 Bytes
Versions: 14
Compression:
Stored size: 620 Bytes
Contents
module Fog module Compute class Google class Mock def list_global_forwarding_rules(_opts = {}) # :no-coverage: Fog::Mock.not_implemented # :no-coverage: end end class Real def list_global_forwarding_rules(filter: nil, max_results: nil, order_by: nil, page_token: nil) @compute.list_global_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
14 entries across 14 versions & 1 rubygems