Sha256: 17ebab821b35665f44bf6a928988a39e48c06ef6f8fa4a7adc3055f17f0e0970
Contents?: true
Size: 624 Bytes
Versions: 7
Compression:
Stored size: 624 Bytes
Contents
module Fog module Compute class Google class Mock def list_instance_templates # :no-coverage: Fog::Mock.not_implemented # :no-coverage: 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
7 entries across 7 versions & 2 rubygems