Sha256: c5987302307f41fcf8b5c4c13ea0106a36b8bf4a6330233ebe16c02fdb7131e0
Contents?: true
Size: 644 Bytes
Versions: 7
Compression:
Stored size: 644 Bytes
Contents
module Fog module Compute class Google class Mock def list_instance_group_managers(_zone, _opts = {}) # :no-coverage: Fog::Mock.not_implemented # :no-coverage: 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
7 entries across 7 versions & 2 rubygems