Sha256: bbd8be822e7812403403f8bcc245f4462db3b64ee46e6a977d49c1362fd4f7e4
Contents?: true
Size: 658 Bytes
Versions: 20
Compression:
Stored size: 658 Bytes
Contents
module Fog module Compute class Google class Mock def list_target_instances(_zone, _opts: {}) Fog::Mock.not_implemented end end class Real def list_target_instances(zone, filter: nil, max_results: nil, order_by: nil, page_token: nil) zone = zone.split("/")[-1] if zone.start_with? "http" @compute.list_target_instances( @project, zone, :filter => filter, :max_results => max_results, :order_by => order_by, :page_token => page_token ) end end end end end
Version data entries
20 entries across 20 versions & 1 rubygems