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