Sha256: 443a0ac31c3c9842e5a7c13369ec44a5446670987f123e88f23f51dc3b8cc8f6
Contents?: true
Size: 662 Bytes
Versions: 14
Compression:
Stored size: 662 Bytes
Contents
module Fog module Compute class Google class Mock def list_aggregated_target_instances(_options = {}) # :no-coverage: Fog::Mock.not_implemented # :no-coverage: 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
14 entries across 14 versions & 1 rubygems