Sha256: 9c365efb2f996bce70ea0a86822e96f5509055fb26489960b89791b3b52cfef6
Contents?: true
Size: 648 Bytes
Versions: 9
Compression:
Stored size: 648 Bytes
Contents
module Fog module Compute class Google class Mock def list_aggregated_instance_group_managers(_opts = {}) Fog::Mock.not_implemented 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
9 entries across 9 versions & 1 rubygems