Sha256: ec1085dc9809ee33e1f0f5a01316c6843042a52a5bcc430fb7aaf681782bd93d
Contents?: true
Size: 780 Bytes
Versions: 14
Compression:
Stored size: 780 Bytes
Contents
module Fog module Compute class Google class Mock def list_disks(_zone_name, _opts = {}) # :no-coverage: Fog::Mock.not_implemented # :no-coverage: end end class Real # List disk resources in the specified zone # https://cloud.google.com/compute/docs/reference/latest/disks/list # # @param zone_name [String] Zone to list disks from def list_disks(zone_name, filter: nil, max_results: nil, order_by: nil, page_token: nil) @compute.list_disks( @project, zone_name, 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