Sha256: 6137964eefada6581f0f3ed33d814efcb84b7422fc4835a6616728223b71d636
Contents?: true
Size: 688 Bytes
Versions: 14
Compression:
Stored size: 688 Bytes
Contents
module Fog module Compute class Google class Mock def list_aggregated_instance_group_managers(_opts = {}) # :no-coverage: Fog::Mock.not_implemented # :no-coverage: end end class Real def list_aggregated_instance_group_managers(filter: nil, max_results: nil, order_by: nil, page_token: nil) @compute.list_aggregated_instance_group_managers( @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