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