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