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