Sha256: e6ca758ebd3f8c11622613eddecc5c3b0bcda9cf84f771ba0638568d6e091b82
Contents?: true
Size: 572 Bytes
Versions: 9
Compression:
Stored size: 572 Bytes
Contents
module Fog module Compute class Google class Mock def list_instance_templates Fog::Mock.not_implemented end end class Real def list_instance_templates(filter: nil, max_results: nil, order_by: nil, page_token: nil) @compute.list_instance_templates( @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