Sha256: c004185effd4f60c7289e1e5fd2908d9c9d34bf0edfb78dfe4b8e40b707ab16e
Contents?: true
Size: 624 Bytes
Versions: 14
Compression:
Stored size: 624 Bytes
Contents
module Fog module Compute class Google class Mock def list_aggregated_machine_types(_opts = {}) # :no-coverage: Fog::Mock.not_implemented # :no-coverage: end end class Real def list_aggregated_machine_types(filter: nil, max_results: nil, page_token: nil, order_by: nil) @compute.list_aggregated_machine_types( @project, filter: filter, max_results: max_results, page_token: page_token, order_by: order_by ) end end end end end
Version data entries
14 entries across 14 versions & 1 rubygems