Sha256: 96dc5813c290d7c45251a26726f020fe5082f424933e96bd5ff48f65d4e818d3
Contents?: true
Size: 592 Bytes
Versions: 9
Compression:
Stored size: 592 Bytes
Contents
module Fog module Compute class Google class Mock def list_instance_group_managers(_zone, _opts = {}) Fog::Mock.not_implemented end end class Real def list_instance_group_managers(zone, filter: nil, max_results: nil, order_by: nil, page_token: nil) @compute.list_instance_group_managers( @project, zone, :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